fix(deps): update protobuf dependency to version >=7.36.0 - #323
Merged
Conversation
ArthurTonial
marked this pull request as ready for review
September 9, 2026 18:59
NicoleMGomes
requested changes
Sep 9, 2026
NicoleMGomes
previously approved these changes
Sep 10, 2026
Contributor
betinacosta
approved these changes
Sep 10, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.

Description
Bumps
protobuffrom>=6.33.5,<7to>=7.36.0to fix CVE-2026-0994 (BDSA-2025-123809).The vulnerability allows a remote attacker to trigger a stack overflow via uncontrolled recursion in the
ParseDictfunction. The partial fix in 6.33.5 / 6.33.6 only patched_ConvertAnyMessage(), leaving_ConvertStructMessage(),_ConvertListOrTupleValueMessage(), and_ConvertGenericMessage()exploitable. The complete fix is available only in 7.36.0+.uv.lockupdated accordingly; resolved version is7.36.1.Related Issue
Type of Change
How to Test
uv syncto install updated dependenciesuv run pytest tests/ --ignore=tests/integration— all unit tests should passuv run python -c "import google.protobuf; print(google.protobuf.__version__)"— should print7.36.1Checklist
Before submitting your PR, please review and check the following:
Breaking Changes
N/A — no breaking changes observed in tests.
Additional Notes
MessageToDictinsrc/sap_cloud_sdk/core/auditlog_ng/client.py:237, which converts outbound audit log events — not user-supplied input. Risk is low, but upgrading is the correct response.a2a-sdkwas also bumped from1.1.2→1.0.2as a side effect of dependency resolution; verify this is acceptable.