Bump the everything group across 1 directory with 7 updates Bumps the everything group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.2` | `7.0.0` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.2.0` | `6.3.0` | | [github/codeql-action/init](https://github.com/github/codeql-action) | `4.36.0` | `4.36.2` | | [github/codeql-action/autobuild](https://github.com/github/codeql-action) | `4.36.0` | `4.36.2` | | [github/codeql-action/analyze](https://github.com/github/codeql-action) | `4.36.0` | `4.36.2` | | [actions/cache](https://github.com/actions/cache) | `5.0.5` | `6.1.0` | | [github/codeql-action/upload-sarif](https://github.com/github/codeql-action) | `4.36.0` | `4.36.2` | Updates `actions/checkout` from 6.0.2 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0) Updates `actions/setup-python` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/a309ff8b426b58ec0e2a45f0f869d46889d02405...ece7cb06caefa5fff74198d8649806c4678c61a1) Updates `github/codeql-action/init` from 4.36.0 to 4.36.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/7211b7c8077ea37d8641b6271f6a365a22a5fbfa...8aad20d150bbac5944a9f9d289da16a4b0d87c1e) Updates `github/codeql-action/autobuild` from 4.36.0 to 4.36.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/7211b7c8077ea37d8641b6271f6a365a22a5fbfa...8aad20d150bbac5944a9f9d289da16a4b0d87c1e) Updates `github/codeql-action/analyze` from 4.36.0 to 4.36.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/7211b7c8077ea37d8641b6271f6a365a22a5fbfa...8aad20d150bbac5944a9f9d289da16a4b0d87c1e) Updates `actions/cache` from 5.0.5 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/27d5ce7f107fe9357f9df03efb73ab90386fccae...55cc8345863c7cc4c66a329aec7e433d2d1c52a9) Updates `github/codeql-action/upload-sarif` from 4.36.0 to 4.36.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/7211b7c8077ea37d8641b6271f6a365a22a5fbfa...8aad20d150bbac5944a9f9d289da16a4b0d87c1e) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: everything - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: everything - dependency-name: github/codeql-action/init dependency-version: 4.36.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: everything - dependency-name: github/codeql-action/autobuild dependency-version: 4.36.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: everything - dependency-name: github/codeql-action/analyze dependency-version: 4.36.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: everything - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: everything - dependency-name: github/codeql-action/upload-sarif dependency-version: 4.36.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: everything ... Signed-off-by: dependabot[bot] <support@github.com>
Recent Commits to brotli:master
-
Bump the everything group across 1 directory with 7 updates
-
Merge pull request #1494 from aleister1102:fix/decoder-jni-push-bound…
Merge pull request #1494 from aleister1102:fix/decoder-jni-push-bounds-check PiperOrigin-RevId: 932949831
-
fix(java): validate decoder push length in Wrapper only
fix(java): validate decoder push length in Wrapper only Per review feedback, keep the input length upper-bound check in DecoderJNI.Wrapper.push() and remove the redundant native guard.
-
fix(java): reject decoder push length exceeding input buffer capacity
fix(java): reject decoder push length exceeding input buffer capacity DecoderJNI.Wrapper.push(int length) validated only length < 0. nativePush() stored input_length without an upper bound, and DecoderHandle did not retain the input buffer's allocation size, so new DecoderJNI.Wrapper(1).push(32) made BrotliDecoderDecompressStream read past the one-byte input allocation (heap out-of-bounds read). Add an upper-bound check in Wrapper.push(), and as defense in depth store the allocation size in DecoderHandle and reject oversized input_length in nativePush(). Add DecoderJNITest covering rejection and a valid round trip.
-
Merge pull request #1395 from mmorel-35:bcr
Merge pull request #1395 from mmorel-35:bcr PiperOrigin-RevId: 925175633
-
Merge branch 'master' into bcr
Merge branch 'master' into bcr
-
Merge pull request #1406 from mannewalis:fix/emscripten-detection
Merge pull request #1406 from mannewalis:fix/emscripten-detection PiperOrigin-RevId: 924674243
-
Merge branch 'master' into bcr
Merge branch 'master' into bcr
-
Merge pull request #1487 from google:dependabot/github_actions/step-s…
Merge pull request #1487 from google:dependabot/github_actions/step-security/harden-runner-2.19.4 PiperOrigin-RevId: 924665869
-
Merge branch 'master' into dependabot/github_actions/step-security/ha…
Merge branch 'master' into dependabot/github_actions/step-security/harden-runner-2.19.4
-
Merge branch 'master' into fix/emscripten-detection
Merge branch 'master' into fix/emscripten-detection
-
Merge pull request #1490 from google:eustas-patch-1
Merge pull request #1490 from google:eustas-patch-1 PiperOrigin-RevId: 924650836
-
Merge branch 'master' into eustas-patch-1
Merge branch 'master' into eustas-patch-1
-
Fix Bazel build
Fix Bazel build PiperOrigin-RevId: 924648497
-
Bump step-security/harden-runner from 2.17.0 to 2.19.4
Bump step-security/harden-runner from 2.17.0 to 2.19.4 Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.17.0 to 2.19.4. - [Release notes](https://github.com/step-security/harden-runner/releases) - [Commits](https://github.com/step-security/harden-runner/compare/f808768d1510423e83855289c910610ca9b43176...9af89fc71515a100421586dfdb3dc9c984fbf411) --- updated-dependencies: - dependency-name: step-security/harden-runner dependency-version: 2.19.4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
-
Merge pull request #1486 from google:dependabot/github_actions/github…
Merge pull request #1486 from google:dependabot/github_actions/github/codeql-action-4.36.0 PiperOrigin-RevId: 924639598
-
Configure Dependabot to group updates
Configure Dependabot to group updates Add grouping for Dependabot updates to combine into a single PR.
-
Bump github/codeql-action from 4.35.1 to 4.36.0
Bump github/codeql-action from 4.35.1 to 4.36.0 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.35.1 to 4.36.0. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/c10b8064de6f491fea524254123dbe5e09572f13...7211b7c8077ea37d8641b6271f6a365a22a5fbfa) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.36.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
-
Merge pull request #1466 from google:dependabot/github_actions/action…
Merge pull request #1466 from google:dependabot/github_actions/actions/setup-node-6.4.0 PiperOrigin-RevId: 924598585
-
Merge branch 'master' into dependabot/github_actions/actions/setup-no…
Merge branch 'master' into dependabot/github_actions/actions/setup-node-6.4.0