From 1132761b9842b0345790827df1e56947581cb26d Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Tue, 26 Aug 2025 14:11:16 -0400 Subject: [PATCH 1/5] 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 33de90880..521af10eb 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -64,6 +64,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ + -Dprotobuf.version=4.32.0 \ -Penable-integration-tests \ -DtrimStackTrace=false \ -Dclirr.skip=true \ @@ -74,7 +75,8 @@ integration) ;; graalvm) # Run Unit and Integration Tests with Native Image - mvn test -Pnative -Penable-integration-tests + mvn test -Pnative -Penable-integration-tests \ + -Dprotobuf.version=4.32.0 RETURN_CODE=$? ;; samples) From e708afff8f4abcdebb1475198f7d2a4ce5a879c0 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Wed, 24 Sep 2025 11:38:25 -0400 Subject: [PATCH 2/5] 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 521af10eb..0bb417026 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -64,7 +64,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 \ @@ -76,7 +76,7 @@ integration) graalvm) # Run Unit and Integration Tests with Native Image mvn test -Pnative -Penable-integration-tests \ - -Dprotobuf.version=4.32.0 + -Dprotobuf.version=4.32.1 RETURN_CODE=$? ;; samples) From 0a16e33bfc402a32c8bd9a75f8d0b12ce26d0f9d Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Tue, 21 Oct 2025 16:36:04 -0400 Subject: [PATCH 3/5] 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 0bb417026..ca51f4736 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -64,7 +64,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 \ @@ -76,7 +76,7 @@ integration) graalvm) # Run Unit and Integration Tests with Native Image mvn test -Pnative -Penable-integration-tests \ - -Dprotobuf.version=4.32.1 + -Dprotobuf.version=4.33.0 RETURN_CODE=$? ;; samples) From a64f07a9bf7ae72f42d139eddf3ab85f78877a8b Mon Sep 17 00:00:00 2001 From: Joe Wang Date: Mon, 26 Jan 2026 10:08:22 -0500 Subject: [PATCH 4/5] update protobuf version --- .kokoro/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index ca51f4736..3025d60a7 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -64,7 +64,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ - -Dprotobuf.version=4.33.0 \ + -Dprotobuf.version=4.33.2 \ -Penable-integration-tests \ -DtrimStackTrace=false \ -Dclirr.skip=true \ From 4681c7048bb43068c76837b5250dfea15cb6a1e6 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Thu, 12 Feb 2026 18:15:04 -0500 Subject: [PATCH 5/5] chore: update protobuf-java version to latest --- .kokoro/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 3025d60a7..3c14dfd55 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -64,7 +64,7 @@ javadoc) integration) mvn -B ${INTEGRATION_TEST_ARGS} \ -ntp \ - -Dprotobuf.version=4.33.2 \ + -Dprotobuf.version=4.33.5 \ -Penable-integration-tests \ -DtrimStackTrace=false \ -Dclirr.skip=true \ @@ -76,7 +76,7 @@ integration) graalvm) # Run Unit and Integration Tests with Native Image mvn test -Pnative -Penable-integration-tests \ - -Dprotobuf.version=4.33.0 + -Dprotobuf.version=4.33.5 RETURN_CODE=$? ;; samples)