From 2c03e5b1cc5972b58fe9023488cc39d355b7a1bf Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Tue, 26 Aug 2025 14:10:27 -0400 Subject: [PATCH 1/3] chore: Test with Protobuf-Java v4.32 [no need to review] --- .kokoro/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 3fa75a47d7..a5c8788e53 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -69,6 +69,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ + -Dprotobuf.version=4.32.0 \ -Penable-integration-tests \ -DtrimStackTrace=false \ -Dclirr.skip=true \ @@ -82,7 +83,8 @@ integration) ;; graalvm) # Run Unit and Integration Tests with Native Image - mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test -Dfmt.skip=true + mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test -Dfmt.skip=true \ + -Dprotobuf.version=4.32.0 RETURN_CODE=$? ;; samples) From e10397a26638a31ad9bb8c2dd24ff01cbb43eeec Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Wed, 24 Sep 2025 11:37:37 -0400 Subject: [PATCH 2/3] chore: Update to Protobuf 4.32.1 --- .kokoro/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index a5c8788e53..2b36a6e598 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -69,7 +69,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ - -Dprotobuf.version=4.32.0 \ + -Dprotobuf.version=4.32.1 \ -Penable-integration-tests \ -DtrimStackTrace=false \ -Dclirr.skip=true \ @@ -84,7 +84,7 @@ integration) graalvm) # Run Unit and Integration Tests with Native Image mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test -Dfmt.skip=true \ - -Dprotobuf.version=4.32.0 + -Dprotobuf.version=4.32.1 RETURN_CODE=$? ;; samples) From 5c4edc4e5f7229328db273fcf305252189d03183 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Tue, 21 Oct 2025 16:36:00 -0400 Subject: [PATCH 3/3] Update protobuf.version to 4.33.0 --- .kokoro/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 2b36a6e598..c40ae4ebcd 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -69,7 +69,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ - -Dprotobuf.version=4.32.1 \ + -Dprotobuf.version=4.33.0 \ -Penable-integration-tests \ -DtrimStackTrace=false \ -Dclirr.skip=true \ @@ -84,7 +84,7 @@ integration) graalvm) # Run Unit and Integration Tests with Native Image mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test -Dfmt.skip=true \ - -Dprotobuf.version=4.32.1 + -Dprotobuf.version=4.33.0 RETURN_CODE=$? ;; samples)