Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
pekko -> 1.1.1
netty -> 4.1.100
grpc -> 1.60.2
guava -> 33.3.0
protobuf -> 3.24.4
  • Loading branch information
remyhaemmerle-da committed Sep 26, 2024
1 parent 810514d commit 7c8be97
Show file tree
Hide file tree
Showing 3 changed files with 1,278 additions and 1,251 deletions.
24 changes: 13 additions & 11 deletions sdk/bazel-java-deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,17 @@ version_specific = {
# This effectively means all io.grpc:*, io.netty:*, and `com.google.protobuf:protobuf-java
# need to be updated with careful consideration.

netty_tcnative_version = "2.0.61.Final"
netty_version = "4.1.108.Final"
grpc_version = "1.60.0"
protobuf_version = "3.24.0"
pekko_version = "1.0.1"
pekko_http_version = "1.0.0"
# Version of GRPC and netty should follow the "known to work version combinations" as
# described in https://github.com/grpc/grpc-java/blob/master/SECURITY.md#netty
netty_tcnative_version = "2.0.66.Final"
netty_version = "4.1.100.Final"
grpc_version = "1.65.1"
protobuf_version = "3.24.4"
pekko_version = "1.1.1"
pekko_http_version = "1.0.1"

#gatling_version = "3.5.1"
guava_version = "31.1-jre"
guava_version = "33.3.0-jre"

# observability libs
# cannot update to 4.2.x because of https://github.com/dropwizard/metrics/issues/2920
Expand Down Expand Up @@ -248,10 +250,10 @@ def install_java_deps():
"org.scalatestplus:testng-7-5_{}:3.2.11.0".format(scala_major_version),
"org.scalaz:scalaz-core_{}:7.2.33".format(scala_major_version),
"org.scalaz:scalaz-scalacheck-binding_{}:7.2.33-scalacheck-1.15".format(scala_major_version),
"org.slf4j:jul-to-slf4j:2.0.6",
"org.slf4j:jul-to-slf4j:2.0.6",
"org.slf4j:slf4j-api:2.0.6",
"org.slf4j:slf4j-simple:2.0.6",
"org.slf4j:jul-to-slf4j:2.0.16",
"org.slf4j:jul-to-slf4j:2.0.16",
"org.slf4j:slf4j-api:2.0.16",
"org.slf4j:slf4j-simple:2.0.16",
"org.testcontainers:jdbc:1.15.1",
"org.testcontainers:postgresql:1.15.1",
"org.testcontainers:testcontainers:1.15.1",
Expand Down
6 changes: 3 additions & 3 deletions sdk/deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -267,10 +267,10 @@ def daml_deps():
if "com_google_protobuf" not in native.existing_rules():
http_archive(
name = "com_google_protobuf",
sha256 = "bd58f4cff519e8ea3a584d5cf5e37df923088eed5807d2e4f2928080feca4a60",
strip_prefix = "protobuf-3.24.0",
sha256 = "a1fa6ffa97c09d1efe0344e4352a6dbc51cebaafbdf20bcb6405147a0158c406",
strip_prefix = "protobuf-3.24.4",
urls = [
"https://github.com/protocolbuffers/protobuf/archive/refs/tags/v3.24.0.tar.gz",
"https://github.com/protocolbuffers/protobuf/archive/refs/tags/v3.24.4.tar.gz",
],
)

Expand Down
Loading

0 comments on commit 7c8be97

Please sign in to comment.