deps(backend)(deps): bump the crypto-ecosystem group across 1 directory with 2 updates - #181
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Conversation
…ry with 2 updates Bumps the crypto-ecosystem group with 2 updates in the /backend directory: [aes-gcm](https://github.com/RustCrypto/AEADs) and [zeroize](https://github.com/RustCrypto/utils). Updates `aes-gcm` from 0.10.3 to 0.11.0 - [Commits](RustCrypto/AEADs@aes-gcm-v0.10.3...aes-gcm-v0.11.0) Updates `zeroize` from 1.8.2 to 1.9.0 - [Commits](RustCrypto/utils@zeroize-v1.8.2...zeroize-v1.9.0) --- updated-dependencies: - dependency-name: aes-gcm dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: crypto-ecosystem - dependency-name: zeroize dependency-version: 1.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: crypto-ecosystem ... Signed-off-by: dependabot[bot] <support@github.com>
Owner
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
pacphi
added a commit
that referenced
this pull request
Jul 31, 2026
…#202) Brings 26 open Dependabot PRs into a single branch: manifest bumps applied at latest-compatible-within-major, lockfiles regenerated once. Backend (Rust): - quinn-proto 0.11.14 -> 0.11.16 (#201, also patches GHSA-4w2j-m93h-cj5j) - uuid 1.23.2 -> 1.23.4 (#185) - pdf-extract 0.10.0 -> 0.12.0 (#184) - axum-ecosystem group: tower-http 0.6.11 -> 0.7.0, axum-test 20.1.0 -> 21.0.0 (#183) - anyhow 1.0.102 -> 1.0.103 (#182) - crypto-ecosystem group: aes-gcm 0.10.3 -> 0.11.0, zeroize 1.8.2 -> 1.9.0 (#181) - redis 1.2.2 -> 1.3.0 (#180) - mail-parser 0.11.3 -> 0.11.4 (#178) - llama-cpp-4 0.3.1 -> 0.3.2 (#177) - fastembed 5.16.0 -> 5.17.2 (#167) - regex 1.12.3 -> 1.12.4 (#164) Docker/CI toolchain: - rust:1.96-slim -> 1.97-slim base image (#198) - actions/checkout 6 -> 7 (#175) - actions/cache 5 -> 6 (#179) - actions/setup-node 6 -> 7 (#199) - DavidAnson/markdownlint-cli2-action 23 -> 24 (#196) Frontend (pnpm monorepo): - testing group: @testing-library/jest-dom 6.9.1 -> 7.0.0 (major), msw 2.14.6 -> 2.15.0, vitest 4.1.8 -> 4.1.10 (#200) - tailwindcss 4.3.0 -> 4.3.2 (#195); @tailwindcss/postcss 4.3.0 -> 4.3.2 (#192) - nanoid 5.1.11 -> 5.1.16 (#194) - recharts 3.8.1 -> 3.9.1 (#193) - lucide-react 1.17.0 -> 1.22.0 (#191) - eslint group: eslint 10.4.1 -> 10.6.0, typescript-eslint 8.61.0 -> 8.62.1 (#190) - storybook group: @storybook/react + storybook 10.4.3 -> 10.4.6 (#189) - radix-ui group, 10 packages (#187) - tanstack group: react-query, react-router, react-virtual (#186) Rust toolchain propagation (PR #198 bumped the Docker base image only; following the precedent set in #148, the pin is aligned everywhere it's declared): rust-toolchain.toml channel and Cargo.toml MSRV -> 1.97, docker-compose RUST_VERSION build-arg, and README/setup/deployment/ maintainer-guide + the two docs/plan snippets. CHANGELOG.md's historical mention of actions/checkout@v6 is left untouched (immutable record). Upgrade-caused fix: - aes-gcm 0.11's `aead`/`hybrid-array` rewrite deprecated `Nonce::from_slice`; migrated the 4 call sites (src/email/oauth.rs, src/vectors/encryption.rs) to `Nonce::try_from(&[u8]).map_err(...)?` plus `&nonce` at the encrypt/decrypt call sites per the new borrowed Aead signature. Round-trip encryption tests (security_audit.rs) pass. Security audit (cargo audit / pnpm audit --prod / Dependabot alerts): - RUSTSEC-2026-0193 + RUSTSEC-2026-0213 (ammonia mXSS/XSS bypass via MathML/SVG): ammonia 4.1.2 -> 4.1.4. Real finding — ammonia sanitizes untrusted email HTML directly. - RUSTSEC-2026-0204 (crossbeam-epoch invalid-pointer Display impl): 0.9.18 -> 0.9.20 (transitive). - RUSTSEC-2026-0186 (memmap2 unsound pointer offset): 0.9.10 -> 0.9.11. - RUSTSEC-2026-0192 (ttf-parser unmaintained, no CVE): no newer release exists (confirmed via `cargo info`); documented in backend/audit-ignore matching the existing deferred-advisory pattern. - GHSA-4w2j-m93h-cj5j (quinn-proto memory exhaustion): already resolved by the #201 bump above. - Frontend pnpm-workspace.yaml overrides widened/added for advisories disclosed since the last lockfile touch: brace-expansion (both the 1.x and 4.x/5.x lines) to 1.1.16/5.0.8, tar to 7.5.21, undici to 7.28.0, postcss to 8.5.18. Verified clean via `pnpm audit --prod` (the repo's own audit gate). One remaining high finding (brace-expansion 1.1.16 via eslint-plugin-react -> minimatch@3.1.5, GHSA-mh99-v99m-4gvg) is devDependency-only tooling processing our own trusted lint glob patterns — unreachable in production, out of scope for `pnpm audit --prod`, and has no compatible fix within minimatch 3.1.5's pinned major (forcing brace-expansion 5.x there would be a cross-major override risking broken lint globbing). Left deferred. Verification: - backend (rust-toolchain 1.97.0): cargo fmt --check, clippy --workspace --all-targets -D warnings clean, cargo test --workspace (2022 passed, 0 failed), cargo bench --no-run compiles. - frontend: pnpm install --frozen-lockfile reproduces the lockfile, tsc --noEmit clean, prettier --check clean, eslint clean, vitest (271 tests passed), turbo build succeeds. Co-authored-by: claude-flow <ruv@ruv.net>
Owner
Contributor
Author
|
This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests. To ignore these dependencies, configure ignore rules in dependabot.yml |
dependabot
Bot
deleted the
dependabot/cargo/backend/crypto-ecosystem-6b8d311711
branch
July 31, 2026 09:26
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.
Bumps the crypto-ecosystem group with 2 updates in the /backend directory: aes-gcm and zeroize.
Updates
aes-gcmfrom 0.10.3 to 0.11.0Commits
a10b56faes-gcm v0.11.0 (#852)f042e9caead-stream v0.6.0 (#851)b29735aAdopt Trusted Publishing (#854)a1fe43fxaes-256-gcm: enable and fix workspace level lints (#850)8cf876feax: remove toplevel lint attributes (#849)4661ddfocb3: enable and fix workspace-level lints (#848)c821431eax: enable and fix workspace-level lints (#847)d3684bbdeoxys: enable and fix workspace-level lints (#846)5e016e2chacha20poly1305: enable and fix workspace-level lints (#845)b3524d3ccm: enable and fix workspace-level lints (#844)Updates
zeroizefrom 1.8.2 to 1.9.0Commits
0b71573zeroize v1.9.0 (#1494)3e3f18czeroize: always enable AVX-512 support (#1493)1ea42bbzeroize_derive v1.5.0 (#1492)8d785d1zeroize: rustdoc improvements (#1491)d844f36zeroize: incorporate README.md into rustdoc (#1490)c65c09dctutils: usereasoninstead of comment inforbidattribute (#1489)cbd0963Release block-buffer v0.12.1 (#1488)9aa541dblock-buffer: fix exception safety (#1487)5c7e4f9cmov v0.5.4 (#1485)87cadbccmov: fix clippy (#1484)You can trigger a rebase of this PR by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions