From 4926499ee0250626185779559267f40cfabacb9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Oct 2025 09:02:28 +0000 Subject: [PATCH 1/2] Bump protobufVersion from 4.32.1 to 4.33.0 Bumps `protobufVersion` from 4.32.1 to 4.33.0. Updates `com.google.protobuf:protobuf-javalite` from 4.32.1 to 4.33.0 Updates `com.google.protobuf:protoc` from 4.32.1 to 4.33.0 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-javalite dependency-version: 4.33.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.google.protobuf:protoc dependency-version: 4.33.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- extractor/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extractor/build.gradle b/extractor/build.gradle index 722ccb6f2a..04e9232cb4 100644 --- a/extractor/build.gradle +++ b/extractor/build.gradle @@ -28,7 +28,7 @@ checkstyleTest { ext { rhinoVersion = '1.8.0' - protobufVersion = '4.32.1' + protobufVersion = '4.33.0' } dependencies { From 90a01ce9407ad3ea8943aa851c3f073f91b0b739 Mon Sep 17 00:00:00 2001 From: TobiGr Date: Mon, 27 Oct 2025 16:58:57 +0100 Subject: [PATCH 2/2] [CI] Set environment var to throw exception when compiling unsafe gencode This sets an environment variable to let the build fail when compiling with potentially unsafe protobuf code. Generated code prior to protobuf version 3.22 might throw an error now. This is necesarry because the unsafe code was blocked by newer protobuf versions, but is now allowed back to compile with protobuf version 4.33.0. Ref: https://github.com/protocolbuffers/protobuf/releases/tag/v33.0 --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae2d144a8b..1194676c3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,8 @@ jobs: ./gradlew check \ -Dorg.gradle.welcome=never \ --stacktrace \ - -Ddownloader=$downloader_type + -Ddownloader=$downloader_type \ + -Dcom.google.protobuf.error_on_unsafe_pre22_gencode - name: Upload test reports when failure occurs uses: actions/upload-artifact@v5