Bumps body-parser to 1.20.6 and updates ancestor dependency express. These dependencies need to be updated together.
Updates body-parser from 1.18.3 to 1.20.6
Release notes
Sourced from body-parser's releases.
1.20.6
Important: Security
What's Changed
Full Changelog: expressjs/body-parser@1.20.5...1.20.6
v1.20.5
What's Changed
The reason for this release is a fix to the extended urlencoded parser returning objects instead of arrays for large array inputs (> 100) on qs@6.14.2+. (expressjs/body-parser#716)
New Contributors
Special thanks to triager @krzysdz for keeping this on our radar and effectively triaging the specific issue!
Full Changelog: expressjs/body-parser@1.20.4...1.20.5
1.20.4
What's Changed
Full Changelog: expressjs/body-parser@1.20.3...1.20.4
1.20.3
What's Changed
Important
- deps: qs@6.13.0
- add
depth option to customize the depth level in the parser
- IMPORTANT: The default
depth level for parsing URL-encoded data is now 32 (previously was Infinity). Documentation
... (truncated)
Changelog
Sourced from body-parser's changelog.
1.20.6 / 2026年07月09日
- Security fix for GHSA-v422-hmwv-36x6
- fix: improve
limit option validation (#698)
- Invalid
limit values (e.g. unparseable strings or NaN) now throw instead of being silently ignored, which previously disabled size limit enforcement
null and undefined fall back to the default 100kb limit
1.20.5 / 2026年04月24日
- refactor(json): simplify strict mode error string construction
- fix: extended urlencoded parsing of arrays with >100 elements (#716)
- deps: qs@~6.15.1
1.20.4 / 2025年12月01日
- deps: qs@~6.14.0
- deps: use tilde notation for dependencies
- deps: http-errors@~2.0.1
- deps: raw-body@~2.5.3
1.20.3 / 2024年09月10日
- deps: qs@6.13.0
- add
depth option to customize the depth level in the parser
- IMPORTANT: The default
depth level for parsing URL-encoded data is now 32 (previously was Infinity)
1.20.2 / 2023年02月21日
- Fix strict json error message on Node.js 19+
- deps: content-type@~1.0.5
- perf: skip value escaping when unnecessary
- deps: raw-body@2.5.2
1.20.1 / 2022年10月06日
- deps: qs@6.11.0
- perf: remove unnecessary object clone
1.20.0 / 2022年04月02日
- Fix error message for json parse whitespace in
strict
- Fix internal error when inflated body exceeds limit
- Prevent loss of async hooks context
- Prevent hanging when request already read
... (truncated)
Commits
Maintainer changes
This version was pushed to npm by ulisesgascon, a new releaser for body-parser since your current version.
Updates express from 4.16.4 to 4.22.2
Release notes
Sourced from express's releases.
v4.22.2
What's Changed
- fix: restore >20 array parsing for
req.query repeated keys (8d09bfe6)
- This also unifies array-cap behavior across notations. Indexed notation (
a[0]=...) was historically capped at qs's default arrayLimit of 20 even in older qs versions; after this change it also allows up to 1000 items.
- deps: qs@~6.15.1
- deps: body-parser@~1.20.5
New Contributors
Full Changelog: expressjs/express@v4.22.1...v4.22.2
v4.22.1
What's Changed
[!IMPORTANT]
The prior release (4.22.0) included an erroneous breaking change related to the extended query parser. There is no actual security vulnerability associated with this behavior (CVE-2024-51999 has been rejected). The change has been fully reverted in this release.
Full Changelog: expressjs/express@4.22.0...v4.22.1
4.22.0
Important: Security
What's Changed
Full Changelog: expressjs/express@4.21.2...4.22.0
4.21.2
What's Changed
... (truncated)
Changelog
Sourced from express's changelog.
4.22.2 / 2026年05月01日1
- fix: restore >20 array parsing for
req.query repeated keys (8d09bfe6)
- This also unifies array-cap behavior across notations. Indexed notation (
a[0]=...) was historically capped at qs's default arrayLimit of 20 even in older qs versions; after this change it also allows up to 1000 items.
- deps: qs@~6.15.1
- deps: body-parser@~1.20.5
4.22.1 / 2025年12月01日
- Revert security fix for CVE-2024-51999 (GHSA-pj86-cfqh-vqx6)
- The prior release (4.22.0) included an erroneous breaking change related to the extended query parser. There is no actual security vulnerability associated with this behavior (CVE-2024-51999 has been rejected). The change has been fully reverted in this release.
4.22.0 / 2025年12月01日
4.21.2 / 2024年11月06日
- deps: path-to-regexp@0.1.12
- Fix backtracking protection
- deps: path-to-regexp@0.1.11
- Throws an error on invalid path values
4.21.1 / 2024年10月08日
4.21.0 / 2024年09月11日
- Deprecate
res.location("back") and res.redirect("back") magic string
- deps: serve-static@1.16.2
- deps: finalhandler@1.3.1
- deps: qs@6.13.0
4.20.0 / 2024年09月10日
- deps: serve-static@0.16.0
- Remove link renderization in html while redirecting
- deps: send@0.19.0
- Remove link renderization in html while redirecting
- deps: body-parser@0.6.0
... (truncated)
Commits
Maintainer changes
This version was pushed to npm by jonchurch, a new releaser for express since your current version.
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 rebase will rebase this PR
@dependabot recreate will recreate this PR, overwriting any edits that have been made to it
@dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
@dependabot ignore this major version will 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 version will 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 dependency will 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.
Bumps body-parser to 1.20.6 and updates ancestor dependency express. These dependencies need to be updated together.
Updates
body-parserfrom 1.18.3 to 1.20.6Release notes
Sourced from body-parser's releases.
... (truncated)
Changelog
Sourced from body-parser's changelog.
... (truncated)
Commits
5cc4fb81.20.6 (#746)3492672fix: improve limit option validation (#741)0defdberelease(patch): 1.20.5cd0e7a0deps(qs): bump qs to 6.15.16f24d7efix: correct off-by-one error in parameterCount (#716)b849bd5deps: qs@~6.14.1 (#690)2c55e2frefactor(json): simplify strict mode error string construction (#692)7db202c1.20.4 (#672)d8f8adbci: add CodeQL (SAST) (#670)6d133c1chore: remove SECURITY.md (#669)Maintainer changes
This version was pushed to npm by ulisesgascon, a new releaser for body-parser since your current version.
Updates
expressfrom 4.16.4 to 4.22.2Release notes
Sourced from express's releases.
... (truncated)
Changelog
Sourced from express's changelog.
... (truncated)
Commits
df0abc94.22.2836d3664.xupdate qs to 6.15.1, body-parser 1.20.5 (#7224)8d09bfefix: restore array parsing for req.query repeated keys (#7181)d39e8addeps: body-parser@~1.20.4 (#7021)efe85d9deps: qs@^6.14.1 (#6972)f62378e📝 add note to history12fae144.22.15ddf311Revert "sec: security patch for CVE-2024-51999"49744ab4.22.0 (#6921)6e97452sec: security patch for CVE-2024-51999Maintainer changes
This version was pushed to npm by jonchurch, a new releaser for express since your current version.
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.