[improve][build] Upgrade networking and infrastructure client libraries - #26358
Open
lhotari wants to merge 2 commits into
Open
[improve][build] Upgrade networking and infrastructure client libraries#26358lhotari wants to merge 2 commits into
lhotari wants to merge 2 commits into
Conversation
- Vert.x 4.5.28 -> 4.5.32 - Curator 5.7.1 -> 5.9.0 - Thrift 0.23.0 -> 0.24.0 - jclouds 2.6.0 -> 2.7.0 - Kubernetes client 26.0.0 -> 27.0.0 - AWS SDK 1.12.788 -> 1.12.797 Vert.x stays on the 4.5.x line, which is what BookKeeper's vertx-http-server builds against; 4.5.32 is its latest patch release. Curator 5.9.0 targets ZooKeeper 3.9.x, matching the 3.9.5 already in use. Thrift is a transitive dependency of distributedlog-core. jclouds 2.7.0 is a compatibility and bug-fix release; the Jakarta migration already happened in 2.6.0, and jclouds is fully isolated inside the jclouds-shaded module. The Kubernetes client 27.0.0 upgrade also lifts unpinned transitives that ship in the server distribution, so their LICENSE entries are updated to match: api-common 2.53.0 to 2.64.0 and google-auth-library-credentials / -oauth2-http 1.43.0 to 1.48.0. async-http-client and netty-reactive-streams were originally part of this change and have been split out into a separate pull request: they reproducibly broke four integration and system test jobs, and isolating them keeps the rest of the networking updates reviewable and mergeable on their own. Assisted-by: Claude Code (Opus 5)
lhotari
force-pushed
the
lh-improve-networking-clients
branch
from
August 18, 2026 07:42
aa20fca to
4bd5e26
Compare
…ng-clients # Conflicts: # distribution/server/src/assemble/LICENSE.bin.txt # gradle/libs.versions.toml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
The networking and infrastructure client libraries are behind. These are grouped together because
they are all external service or transport clients with similar risk profiles.
Modifications
gradle/libs.versions.toml:Plus the corresponding jar names in the server and shell distribution
LICENSE.bin.txtfiles.Notes on the individual bumps:
vertx-http-serverbuilds against;4.5.32 is its latest patch release. Vert.x 5.x is not taken here.
distributedlog-core; 0.24.0 keeps a Java 8 baseline.2.6.0, and jclouds is fully isolated inside the
jclouds-shadedmodule, so the blast radius iscontained.
changes in that client (the options-object API shape, dropping Java 8) landed back at 20.0.0, well
behind the 26.0.0 already in use.
The Kubernetes client upgrade also lifts unpinned transitives that ship in the server distribution,
so their LICENSE entries are updated to match:
api-common2.53.0 → 2.64.0 andgoogle-auth-library-credentials/-oauth2-http1.43.0 → 1.48.0. These were caught bycheckBinaryLicense.Verifying this change
This change is a trivial rework / code cleanup without any test coverage.
Verified locally with
./gradlew sanityCheckand./gradlew checkBinaryLicense.Does this pull request potentially affect one of the following parts: