Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #431

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/cpp/ArmoniK.Api.Tests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Start with the latest Alpine base image for the build stage
FROM alpine:3.18.6 AS builder
FROM alpine:3.21.0 AS builder

# Install all the necessary dependencies required for the build process
# These include tools and libraries for building and compiling the source code
Expand Down
2 changes: 1 addition & 1 deletion packages/cpp/tools/BuildEnv.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:23.04
FROM ubuntu:lunar-20231128

RUN apt-get update && DEBIAN_FRONTEND="noninteractive" TZ="Europe/London" apt-get install -y \
ssh \
Expand Down
2 changes: 1 addition & 1 deletion packages/cpp/tools/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the latest version of Ubuntu 20.04 as the base image
FROM ubuntu:23.04
FROM ubuntu:lunar-20231128

# Install dependencies
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" TZ="Europe/London" apt-get install -y \
Expand Down
26 changes: 13 additions & 13 deletions packages/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,34 +49,34 @@
<protobuf-maven-plugin.version>0.6.1</protobuf-maven-plugin.version>
<os-maven-plugin.version>1.7.1</os-maven-plugin.version>
<proto.path>../../Protos/V1</proto.path>
<sl4j.version>2.0.12</sl4j.version>
<logback.version>1.5.5</logback.version>
<sl4j.version>2.0.16</sl4j.version>
<logback.version>1.5.14</logback.version>
</properties>

<dependencies>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty</artifactId>
<version>1.62.2</version>
<version>1.69.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/io.projectreactor/reactor-core -->
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.6.5</version>
<version>3.7.1</version>
</dependency>


<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>1.62.2</version>
<version>1.69.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>1.62.2</version>
<version>1.69.0</version>
</dependency>
<dependency>
<groupId>org.xolstice.maven.plugins</groupId>
Expand Down Expand Up @@ -106,7 +106,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.2</version>
<version>5.11.4</version>
<scope>test</scope>
</dependency>

Expand All @@ -116,15 +116,15 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.11.0</version>
<version>5.14.2</version>
<scope>test</scope>
</dependency>


<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>5.11.0</version>
<version>5.14.2</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -167,7 +167,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.17.1</version>
<version>2.18.0</version>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
Expand All @@ -183,7 +183,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -197,7 +197,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadoc</id>
Expand All @@ -214,7 +214,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down
58 changes: 29 additions & 29 deletions packages/rust/armonik/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions packages/rust/armonik/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,30 @@ version = "3.21.0-beta-0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tonic = "0.12"
prost = "0.13"
prost-types = "0.13"
futures = "0.3"
async-trait = "0.1"
snafu = "0.8"
tracing = "0.1"
hyper = { version = "1.5", features = ["client", "http1", "http2"] }
hyper-rustls = { version = "0.27", features = ["http1", "http2"] }
rustls = { version = "0.23", features = ["ring"] }
tonic = "0.12.3"
prost = "0.13.4"
prost-types = "0.13.4"
futures = "0.3.31"
async-trait = "0.1.83"
snafu = "0.8.5"
tracing = "0.1.41"
hyper = { version = "1.5.2", features = ["client", "http1", "http2"] }
hyper-rustls = { version = "0.27.4", features = ["http1", "http2"] }
rustls = { version = "0.23.20", features = ["ring"] }

[dev-dependencies]
eyre = "0.6"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
hyper-util = { version = "0.1", features = ["client", "http1"] }
http-body-util = "0.1"
serde_json = "1.0"
serial_test = "3.1"
tokio = { version = "1.41", features = [
eyre = "0.6.12"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
hyper-util = { version = "0.1.10", features = ["client", "http1"] }
http-body-util = "0.1.2"
serde_json = "1.0.133"
serial_test = "3.2.0"
tokio = { version = "1.42.0", features = [
"rt-multi-thread",
"macros",
"sync",
"time",
] }

[build-dependencies]
tonic-build = "0.12"
tonic-build = "0.12.3"
Loading