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

update deps #20015

Open
wants to merge 2 commits into
base: main-2.x
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
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"
Comment on lines +50 to +53
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have troubles to compile 3.25.x so I keep 3.24.x. I am not sure spending time to make 3.5 work on main-2.x is worthwhile.
grpc 1.66.x does not seem to work with proto 3.24.x.

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
Loading