chore: bump qs and express in /api - #94
Merged
Merged
Conversation
danny-avila
force-pushed
the
dependabot/npm_and_yarn/api/multi-fe93483a4d
branch
from
September 3, 2026 00:31
6f14f3c to
d9b27b8
Compare
Redo of the Dependabot bump, which only updated `api/package.json` and
`api/package-lock.json`:
- `api/bun.lock` is the lockfile CI and `api/Dockerfile` actually
install from (`bun ci` / `bun install --frozen-lockfile`), and it was
left on express 4, so every api job failed with "lockfile had
changes, but lockfile is frozen".
- The `path-to-regexp: 0.1.13` override pinned express 4's router
dependency. Express 5 routes through `router@2`, which needs
path-to-regexp ^8, so the override had to go rather than be carried
forward.
- qs stayed on 6.15.3: it already satisfied express 5's `qs@^6.14.0`,
so resolution never moved it to the 6.16.0 the bump was for.
Both lockfiles are regenerated and agree on express 5.2.1, qs 6.16.0,
path-to-regexp 8.4.2 and router 2.2.0.
The api's express surface is v5-clean: all route paths are literal (no
wildcards or optional params for path-to-regexp 8 to reject), `req.query`
is never read (so the query-parser default change is inert), and the only
`req.body` reads are behind a JSON parser, an `application/json` guard, or
already undefined-tolerant. `@types/express` was already ^5.0.0, so the
types now match the runtime instead of being a version ahead of it.
danny-avila
force-pushed
the
dependabot/npm_and_yarn/api/multi-fe93483a4d
branch
from
September 3, 2026 00:38
d9b27b8 to
38bbbf3
Compare
danny-avila
approved these changes
Sep 3, 2026
danny-avila
left a comment
Collaborator
There was a problem hiding this comment.
Validated the Express 5 compatibility path, both lockfiles, the API test suite, production build, and npm audit. The resolved graph contains qs 6.16.0 and reports no production vulnerabilities.
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 qs to 6.16.0 and updates ancestor dependency express. These dependencies need to be updated together.
Updates
qsfrom 6.15.3 to 6.16.0Changelog
Sourced from qs's changelog.
Commits
bb9379ev6.16.062fd254[Fix] stringify: serialize Date values when a filter is provided8859c37[Fix]parse: enforcearrayLimiton comma groups under[]=when `throwOn...8079adc[Tests]parse: remove a test that pinned[]=comma groups escaping `array...d56f48c[Fix]parse: flatten a collection appended to an overflowed arraye83d321[Fix]utils:isBuffer: do not invoke a non-callableconstructor.isBuffer7e87a07[Dev Deps] update@ljharb/eslint-config,eslint9a76af2[Dev Deps] updateeslint,evalmd3a890d4[Dev Deps] updateeslint,evalmdb433a9b[Fix]stringify: do not letallowEmptyArraysskip cycle detection (or dro...Updates
expressfrom 4.22.2 to 5.2.1Release notes
Sourced from express's releases.
... (truncated)
Changelog
Sourced from express's changelog.
... (truncated)
Commits
dbac7415.2.1697547cRevert "sec: security patch for CVE-2024-51999"4007ad1Release: 5.2.0 (#6920)2f64f68sec: security patch for CVE-2024-51999ed0ba3fbuild(deps): bump actions/checkout from 5.0.0 to 6.0.0 (#6928)8eace46build(deps): bump github/codeql-action from 4.31.2 to 4.31.6 (#6929)30bae81build(deps): bump coverallsapp/github-action from 2.3.6 to 2.3.7 (#6930)758d435deps: body-parser@^2.2.1 (#6922)77bcd52docs: update emeritus triagers (#6890)f33caf1Nominate to@efekrsklfor triage team (#6888)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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)You can disable automated security fix PRs for this repo from the Security Alerts page.