Bump dependencies to clear all open Dependabot alerts#43
Merged
Conversation
Consolidates the open piecemeal Dependabot PRs into a single audited update that resolves every current security alert. Backend (requirements.txt): - cryptography 46.0.7 -> 48.0.1 (vulnerable bundled OpenSSL) - python-multipart 0.0.27 -> 0.0.31 (querystring/multipart DoS & parameter smuggling) Frontend (package.json / package-lock.json): - vite ^7.3.2 -> ^7.3.5 (server.fs.deny bypass, NTLM hash disclosure) - overrides force patched transitive deps: form-data >=4.0.6, js-yaml ^4.2.0, @babel/core >=7.29.6, esbuild >=0.28.1 - regenerated lockfile also lifts ws and brace-expansion to patched versions; npm audit reports 0 vulnerabilities Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Deploying milestone-planner with
|
| Latest commit: |
906f216
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://b3ddc729.milestone-planner.pages.dev |
| Branch Preview URL: | https://security-dependency-updates.milestone-planner.pages.dev |
The previous lockfile was regenerated on alpine/musl, which trimmed the optional native deps to a single platform and dropped @rollup/rollup-linux-x64-gnu — breaking npm ci on the glibc CI runner. Regenerated in place from the complete lockfile so all 51 platform binaries are retained. Also pinned ws (>=8.21.0) and brace-expansion (^1.1.13 / ^2.0.3) via overrides to clear newer transitive advisories surfaced by npm audit. npm ci + build + tests pass; npm audit reports 0 vulnerabilities. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Why
Three open Dependabot-related PRs (#40, #41, #42) addressed the security alerts piecemeal and inconsistently — one even proposed removing a build dependency. They've been closed in favour of this single, audited update that brings the repo to zero open Dependabot alerts in one reviewable change, with the version bump and CHANGELOG entry the project's CI requires.
What changed
Backend —
requirements.txtcryptography46.0.7 → 48.0.1 — fixes the vulnerable OpenSSL bundled in the wheels (alert Bump react-router from 6.30.3 to 6.30.4 in /frontend in the npm_and_yarn group across 1 directory #39, high).python-multipart0.0.27 → 0.0.31 — fixes querystring/multipart DoS and parameter-smuggling (alerts Add multi-connection support and live activity feed #29–32).Frontend —
package.json/package-lock.jsonvite^7.3.2→^7.3.5—server.fs.denybypass + NTLM hash disclosure in bundled dev-server tooling (alerts Bump python-multipart from 0.0.26 to 0.0.27 in the pip group across 1 directory #36 high, Bump authlib from 1.6.11 to 1.6.12 in the pip group across 1 directory #37 medium).overridesblock forces patched transitive deps:form-data >=4.0.6(Bump vitest from 4.0.18 to 4.1.0 in /frontend in the npm_and_yarn group across 1 directory #38 high),js-yaml ^4.2.0(Expand screenshot coverage + Playwright capture pipeline (1.0.2) #35 medium),@babel/core >=7.29.6(Reconcile docs with code, add screenshots, ship 1.0.1 Docker fix #34 low),esbuild >=0.28.1(Add job title autocomplete, weekend filtering, and shift tags display #27 low).ws→ 8.21.0 andbrace-expansion→ patched (newer transitive advisories surfaced on a clean install).Verification
npm audit→ 0 vulnerabilities.npm run build(tsc + vite) succeeds.pip install --dry-run -r requirements.txtresolves with no conflicts (fastapi 0.109.2 / python-jose 3.4.0 / starlette 0.36.3 all satisfied).Closes the work tracked by the previously open Dependabot PRs (#40, #41) and supersedes #42.