ci: restore sdk-platform-java jobs#12813
Open
diegomarquezp wants to merge 6 commits intogoogleapis:mainfrom
Open
ci: restore sdk-platform-java jobs#12813diegomarquezp wants to merge 6 commits intogoogleapis:mainfrom
diegomarquezp wants to merge 6 commits intogoogleapis:mainfrom
Conversation
lqiu96
reviewed
Apr 15, 2026
Comment on lines
+40
to
+41
| maven.com_google_auth_google_auth_library_oauth2_http=com.google.auth:google-auth-library-oauth2-http:1.46.0 | ||
| maven.com_google_auth_google_auth_library_credentials=com.google.auth:google-auth-library-credentials:1.46.0 |
Member
There was a problem hiding this comment.
Do we need to do this for all future auth versions? Can this be automated?
lqiu96
approved these changes
Apr 15, 2026
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.
This pull request resolves an API compatibility issue in the
sdk-platform-javastandalone Bazel build by updating the dependency pointers forgoogle-auth-library.Problem
Bazel integration tests for
sdk-platform-javawere failing due to a mismatch between local source code usage and external dependency signatures:This occurred because
gax-javalocally relies oncreateWithGdchAudience(String), which was introduced in newer versions ofgoogle-auth-library, but the inner Bazeldependencies.propertiesfile was still downloading1.42.1.Solution
google-auth-library-oauth2-httpandgoogle-auth-library-credentialsversions from1.42.1to1.46.0insidesdk-platform-java/gax-java/dependencies.properties.