Skip to content

build(deps): bump base64 from 0.22.1 to 0.23.1 - #62

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/base64-0.23.1
Open

build(deps): bump base64 from 0.22.1 to 0.23.1#62
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/base64-0.23.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown

Bumps base64 from 0.22.1 to 0.23.1.

Changelog

Sourced from base64's changelog.

0.23.1

  • Make the tests build again on non-SIMD architectures

0.23.0

  • Added more consts for preconfigured configs and engines
  • Make DecodeError::InvalidLastSymbol more clear by including the decoded value
  • Added SIMD-accelerated engines behind the default-on simd-unsafe feature: Simd picks the best instruction set at runtime (AVX2 on x86_64, NEON on aarch64) and falls back to the scalar GeneralPurpose engine, while Avx2 and Neon target one instruction set with no runtime detection and work in no_std. The engines support the standard and URL-safe alphabets.
  • Update MSRV to 1.71.0
  • Add support for custom padding symbols
Commits
  • 069bf70 v0.23.1
  • 6ab1fb0 Merge pull request #310 from musicinmybrain/test-on-non-simd-arches
  • 7cffce6 Fix testing on architectures without unsafe SIMD support
  • e34f9a0 Merge pull request #308 from atouchet/com
  • e9240c9 Remove outdated comment
  • 9e9220a v0.23.0
  • 870326e Merge pull request #306 from marshallpierce/mp/trailing-bits-docs
  • fbec5f1 Document no trailing trailing bits
  • 0a23549 Merge pull request #305 from marshallpierce/mp/edition-2021
  • f10b7e2 Update deps & edition
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 1, 2026
@dependabot
dependabot Bot requested review from araujof and terylt as code owners September 1, 2026 15:58
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 1, 2026
@araujof

araujof commented Sep 3, 2026

Copy link
Copy Markdown
Member

Holding this open rather than merging or closing it.

base64 is pinned to 0.22 on purpose, so our code and jsonwebtoken share one copy. The reason is written down in builtins/plugins/identity-jwt/Cargo.toml: "Pinned to 0.22 to match what jsonwebtoken pulls — Cargo dedups to a single version."

Merging now would split that. jsonwebtoken 11.0.0 (the latest) still depends on base64 0.22, so the production graph would go from one copy to two: 0.22 for jsonwebtoken and pem, 0.23 for our three plugins. Not a correctness problem, since no base64 types cross an API boundary and we only decode locally, but it undoes the dedup the pin exists for. The 0.23 already in Cargo.lock today is dev-only, via bollard -> testcontainers.

This becomes a clean merge as soon as jsonwebtoken releases on base64 0.23. Leaving it open as the reminder to do it then.

@praxis-bot praxis-bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

praxis-bot review — base64 0.22.1 → 0.23.1

No findings.

Checked:

  • All three consumers (delegator-oauth, elicitation-ciba, identity-jwt) use only stable API surface: Engine trait import, general_purpose::STANDARD / URL_SAFE_NO_PAD with .encode() / .decode(). All remain in 0.23.
  • DecodeError::InvalidLastSymbol gained a field, but no consumer pattern-matches on it (all use let Ok(..) = .. else).
  • MSRV 1.96 exceeds base64 0.23’s requirement of 1.71.
  • CI: 7/7 checks pass.
  • The default-on simd-unsafe feature adds SIMD acceleration inside the dependency; it does not affect deny(unsafe_code) in the policy crates themselves.

Clean bump. No action required.

Bumps [base64](https://github.com/marshallpierce/rust-base64) from 0.22.1 to 0.23.1.
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.22.1...v0.23.1)

---
updated-dependencies:
- dependency-name: base64
  dependency-version: 0.23.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/cargo/base64-0.23.1 branch from 185beea to 6a471b6 Compare September 3, 2026 20:04
@dependabot
dependabot Bot requested a review from a team September 3, 2026 20:04
@shaneutt
shaneutt requested a review from maleck13 September 3, 2026 20:25

@maleck13 maleck13 left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@praxis-bot praxis-bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR Review

Summary: Rebased since last review. No functional diff change. One stale comment found.

Severity Count
Critical 0
Large 0
Medium 1

# of the middle JWT segment). Pinned to 0.22 to match what
# jsonwebtoken pulls — Cargo dedups to a single version.
base64 = "0.22"
base64 = "0.23"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Medium] This comment still says "Pinned to 0.22 to match what jsonwebtoken pulls" but the version is now 0.23. The comment should be updated to reflect the new version, or rephrased to drop the specific version reference since base64 and jsonwebtoken may diverge independently.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants