deps(backend)(deps): bump llama-cpp-4 from 0.3.1 to 0.3.2 in /backend - #177
Closed
dependabot[bot] wants to merge 1 commit into
Closed
deps(backend)(deps): bump llama-cpp-4 from 0.3.1 to 0.3.2 in /backend#177dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Bumps [llama-cpp-4](https://github.com/eugenehp/llama-cpp-rs) from 0.3.1 to 0.3.2. - [Release notes](https://github.com/eugenehp/llama-cpp-rs/releases) - [Changelog](https://github.com/eugenehp/llama-cpp-rs/blob/main/CHANGELOG.md) - [Commits](eugenehp/llama-cpp-rs@v0.3.1...v0.3.2) --- updated-dependencies: - dependency-name: llama-cpp-4 dependency-version: 0.3.2 dependency-type: direct:production update-type: version-update:semver-patch ... 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
|
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
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 llama-cpp-4 from 0.3.1 to 0.3.2.
Release notes
Sourced from llama-cpp-4's releases.
Changelog
Sourced from llama-cpp-4's changelog.
Commits
515a9df0.3.2You 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 this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)