Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 1, 2025

This PR contains the following updates:

Package Change Age Confidence
express (source) 5.1.0 -> 5.2.0 age confidence

GitHub Vulnerability Alerts

CVE-2024-51999

Impact

when using the extended query parser in express ('query parser': 'extended'), the request.query object inherits all object prototype properties, but these properties can be overwritten by query string parameter keys that match the property names

Important

the extended query parser is the default in express 4; this was changed in express 5 which by default uses the simple query parser

Patches

the issue has been patched to ensure request.query is a plain object so request.query no longer has object prototype properties. this brings the default behavior of extended query parsing in line with express's default simple query parser

Workaround

this only impacts users using extended query parsing ('query parser': 'extended'), which is the default in express 4, but not express 5. all users are encouraged to upgrade to the patched versions, but can otherwise work around this issue:

provide qs directly and specify plainObjects: true

app.set('query parser',
  function (str) {
    return qs.parse(str, {
      plainObjects: true
  });
});

Release Notes

expressjs/express (express)

v5.2.0

Compare Source

========================

  • Security fix for CVE-2024-51999 (GHSA-pj86-cfqh-vqx6)
  • deps: body-parser@^2.2.1
  • A deprecation warning was added when using res.redirect with undefined arguments, Express now emits a warning to help detect calls that pass undefined as the status or URL and make them easier to fix.

Configuration

📅 Schedule: Branch creation - "" in timezone Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link

github-actions bot commented Dec 1, 2025

This PR will trigger a patch release when merged.

@renovate renovate bot force-pushed the renovate-npm-express-vulnerability branch from e24a7bb to 7427099 Compare December 1, 2025 21:15
@renovate renovate bot force-pushed the renovate-npm-express-vulnerability branch from 7427099 to f59522c Compare December 1, 2025 21:22
@renovate renovate bot merged commit fc4ec53 into main Dec 2, 2025
9 checks passed
@renovate renovate bot deleted the renovate-npm-express-vulnerability branch December 2, 2025 03:46
adobe-bot pushed a commit that referenced this pull request Dec 2, 2025
## [16.16.9](v16.16.8...v16.16.9) (2025-12-02)

### Bug Fixes

* **deps:** update dependency express to v5.2.0 [security] ([#2646](#2646)) ([fc4ec53](fc4ec53))
@adobe-bot
Copy link
Collaborator

🎉 This PR is included in version 16.16.9 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants