-
Notifications
You must be signed in to change notification settings - Fork 67
feat: Upgrade protobuf runtime and gen code to 4.33. #4000
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
Changes from 4 commits
1824a96
52fc24b
46b2cee
0fe2fa2
f2562e5
0731847
3a8ef8e
d68bcd2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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" | ||
|
|
||
| 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> | ||
|
|
||
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.