This repository was archived by the owner on May 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
feat: Upgrade protobuf runtime and gen code to 4.33. #4000
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
1824a96
deps: upgrade protobuf to 4.33.0
blakeli0 52fc24b
chore: generate libraries at Mon Dec 1 21:12:58 UTC 2025
cloud-java-bot 46b2cee
chore: add configuration for protobuf-4.x-rc branch (#3997)
diegomarquezp 0fe2fa2
chore: skip clirr checks
blakeli0 f2562e5
chore: skip clirr check in showcase
blakeli0 0731847
chore: Remove hardcoded clirr.skip=false in showcase-clirr check (#4001)
blakeli0 3a8ef8e
Merge branch 'main' into protobuf-4.x-test-upgrade
blakeli0 d68bcd2
Merge branch 'protobuf-4.x-rc' into protobuf-4.x-test-upgrade
blakeli0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,7 +38,7 @@ RUN cp "/root/.m2/repository/com/google/api/gapic-generator-java/${DOCKER_GAPIC_ | |
| FROM us-docker.pkg.dev/artifact-foundry-prod/docker-3p-trusted/python@sha256:afc139a0a640942491ec481ad8dda10f2c5b753f5c969393b12480155fe15a63 as final | ||
|
|
||
| ARG OWLBOT_CLI_COMMITTISH=3a68a9c0de318784b3aefadcc502a6521b3f1bc5 | ||
| ARG PROTOC_VERSION=25.8 | ||
| ARG PROTOC_VERSION=33.0 | ||
|
Contributor
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. |
||
| ARG GRPC_VERSION=1.76.1 | ||
| ENV HOME=/home | ||
| ENV OS_ARCHITECTURE="linux-x86_64" | ||
|
|
||
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,14 +32,16 @@ | |
| <google.http-client.version>2.0.2</google.http-client.version> | ||
| <gson.version>2.12.1</gson.version> | ||
| <guava.version>33.5.0-jre</guava.version> | ||
| <protobuf.version>3.25.8</protobuf.version> | ||
| <protobuf.version>4.33.0</protobuf.version> | ||
| <opentelemetry.version>1.52.0</opentelemetry.version> | ||
| <errorprone.version>2.42.0</errorprone.version> | ||
| <j2objc-annotations.version>3.1</j2objc-annotations.version> | ||
| <threetenbp.version>1.7.0</threetenbp.version> | ||
| <junit.version>5.11.4</junit.version> | ||
| <mockito.version>4.11.0</mockito.version> | ||
| <slf4j.version>2.0.16</slf4j.version> | ||
| <!-- skipping clirr check for protobuf 4.x upgrade --> | ||
| <clirr.skip>true</clirr.skip> | ||
|
Comment on lines
+43
to
+44
Contributor
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. While skipping the |
||
| </properties> | ||
|
|
||
| <developers> | ||
|
|
||
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
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
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
Oops, something went wrong.
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.
The
PROTOC_VERSIONis being updated to33.0. This seems inconsistent with the protobuf version4.33.0being set ingapic-generator-java-pom-parent/pom.xml. Please verify if this is the correct version for theprotoccompiler corresponding to the4.33.0Java runtime.