chore(deps): bump base64 from 0.22.1 to 0.23.1 in the rust-major-dependencies group across 1 directory - #114
Conversation
29911c1 to
0478ff1
Compare
| http-body-util = "0.1.3" | ||
| hyper-util = { version = "0.1.20", features = ["tokio", "server", "http1", "http2", "client", "client-legacy"] } | ||
| base64 = "0.22.1" | ||
| base64 = "0.23.0" |
There was a problem hiding this comment.
Verify base64 0.23.0 API and MSRV compatibility
warn · confidence 0.70 · kind: uncertainty
base64 0.22 to 0.23 is a breaking bump for a 0.x crate: the deprecated top-level encode/decode free functions were removed in favor of the Engine trait, and the MSRV rose to 1.71.0. If any source file calls base64::encode(...) or base64::decode(...) directly, it will fail to compile; if the project declares an MSRV below 1.71.0, downstream builds on older toolchains will break. Run cargo build and cargo +1.71.0 check (or whichever MSRV the project targets) and grep for base64::encode / base64::decode usage to confirm no removed APIs are referenced.
|
Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting |
| http-body-util = "0.1.3" | ||
| hyper-util = { version = "0.1.20", features = ["tokio", "server", "http1", "http2", "client", "client-legacy"] } | ||
| base64 = "0.22.1" | ||
| base64 = "0.23.0" |
There was a problem hiding this comment.
base64 0.22 to 0.23 is a breaking semver bump with no source changes
warn · confidence 0.70 · kind: uncertainty
base64 0.23.0 is a breaking 0.x release that reworked the engine API; code using the 0.22 engine pattern (e.g. base64::engine::general_purpose::STANDARD) may not compile without migration. This diff updates only Cargo.toml and Cargo.lock with no accompanying source changes. Run cargo check (or cargo build) to confirm every base64 call site compiles against the 0.23 API, and update any that do not.
0478ff1 to
6ac454f
Compare
| http-body-util = "0.1.3" | ||
| hyper-util = { version = "0.1.20", features = ["tokio", "server", "http1", "http2", "client", "client-legacy"] } | ||
| base64 = "0.22.1" | ||
| base64 = "0.23.0" |
There was a problem hiding this comment.
base64 major bump may break calling code
info · confidence 0.70 · kind: uncertainty
base64 is bumped from 0.22.1 to 0.23.0, a breaking semver change in the 0.x series. The 0.23 release raises MSRV to 1.71.0 and reworks engine APIs. This diff contains no source code updates to accommodate those changes. If any crate code calls base64 directly (e.g. via engine::general_purpose::STANDARD), it may fail to compile. Verify the project builds with cargo build and that the repo's MSRV is at least 1.71.0 before merging.
6ac454f to
09e95ac
Compare
| http-body-util = "0.1.3" | ||
| hyper-util = { version = "0.1.20", features = ["tokio", "server", "http1", "http2", "client", "client-legacy"] } | ||
| base64 = "0.22.1" | ||
| base64 = "0.23.1" |
There was a problem hiding this comment.
base64 0.22 to 0.23 is a breaking bump with no source changes
info · confidence 0.72 · kind: uncertainty
base64 0.23.0 is a breaking release for a 0.x crate; the bundled changelog notes an MSRV bump to 1.71.0 and API restructuring. This diff updates only Cargo.toml and Cargo.lock with no accompanying source changes to call sites. If guard uses the 0.22 Engine or prelude API, compilation will fail; if the project's rust-version is below 1.71.0, downstream builds on older toolchains will break. Run cargo build and confirm the project MSRV is >= 1.71.0 before merging.
Bumps the rust-major-dependencies group with 1 update in the / directory: [base64](https://github.com/marshallpierce/rust-base64). Updates `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.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-major-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
09e95ac to
f59554c
Compare
Bumps the rust-major-dependencies group with 1 update in the / directory: base64.
Updates
base64from 0.22.1 to 0.23.1Changelog
Sourced from base64's changelog.
Commits
069bf70v0.23.16ab1fb0Merge pull request #310 from musicinmybrain/test-on-non-simd-arches7cffce6Fix testing on architectures without unsafe SIMD supporte34f9a0Merge pull request #308 from atouchet/come9240c9Remove outdated comment9e9220av0.23.0870326eMerge pull request #306 from marshallpierce/mp/trailing-bits-docsfbec5f1Document no trailing trailing bits0a23549Merge pull request #305 from marshallpierce/mp/edition-2021f10b7e2Update deps & edition