-
Notifications
You must be signed in to change notification settings - Fork 53
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
build(deps): bump grpc version to 1.58.0 and protobuf to 3.24.0 #1989
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
3edbe8c
build(deps): bump grpc version to 1.58.0
mpeddada1 dda9e62
upudate protobuf to 3.24.0
mpeddada1 1cb8aa5
remove temporary j2objc exclusion
mpeddada1 977b725
upgrade errorprone version to 2.20.0
mpeddada1 347b80e
update errorprone version to 2.20.0 in dependencies.properties for co…
mpeddada1 a1abf46
update errorprone version in api-common and gapic-generator
mpeddada1 7b7d626
add gax-inprocess
mpeddada1 49d7be2
regenerate showcase
mpeddada1 e33a50f
Merge branch 'main' of github.com:googleapis/sdk-platform-java into g…
mpeddada1 339391c
Merge branch 'main' of github.com:googleapis/sdk-platform-java into g…
mpeddada1 1857d25
Merge remote-tracking branch 'origin/main' into grpc-1.58.0
diegomarquezp f4c0029
regenerate showcase classes
mpeddada1 66f589f
Merge branch 'grpc-1.58.0' of github.com:googleapis/sdk-platform-java…
mpeddada1 8017b80
update integration test golden files
mpeddada1 b8a15f6
test ga run from sha
mpeddada1 6740d5e
revert change to ga settings
mpeddada1 309093c
replace tag with latest
mpeddada1 56b4b77
upgrade tag
mpeddada1 0f27b20
remove tag
mpeddada1 322c838
empty commit for builds
mpeddada1 fcc497f
version with SHA
mpeddada1 45794d5
use commit with other grpc exclusions
mpeddada1 646d460
use up-to-date sha
mpeddada1 b8c7b4d
empty commit for build
mpeddada1 e693e01
modify script to test against monorepo HEAD
mpeddada1 af0aa38
remove unused variable assignment
mpeddada1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,9 +38,14 @@ echo "Install complete. java-shared-dependencies = $SHARED_DEPS_VERSION" | |
|
||
pushd java-shared-dependencies/target | ||
for repo in ${REPOS_UNDER_TEST//,/ }; do # Split on comma | ||
# Perform testing on last release, not HEAD | ||
last_release=$(find_last_release_version "$repo") | ||
git clone "https://github.com/googleapis/$repo.git" --depth=1 --branch "v$last_release" | ||
# Perform testing on HEAD for google-cloud-java | ||
if [ $repo == "google-cloud-java" ]; then | ||
git clone "https://github.com/googleapis/$repo.git" --depth=1 | ||
else | ||
# Perform testing on last release, not HEAD | ||
last_release=$(find_last_release_version "$repo") | ||
git clone "https://github.com/googleapis/$repo.git" --depth=1 --branch "v$last_release" | ||
fi | ||
Comment on lines
+41
to
+48
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The downstream checks for java-kms were failing with a compilation error due to a removal of a method in grpc-stub:1.58.0. Needed to make this update to verify the changes in the monorepo: googleapis/google-cloud-java#9854. |
||
update_all_poms_dependency "$repo" google-cloud-shared-dependencies "$SHARED_DEPS_VERSION" | ||
pushd "$repo" | ||
JOB_TYPE="test" ./.kokoro/build.sh | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To test with changes included in googleapis/java-cloud-bom#6191