Skip to content

Bump path-to-regexp, express and router - #478

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/multi-1287b5e6a0
Open

Bump path-to-regexp, express and router#478
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/multi-1287b5e6a0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Nov 13, 2025

Copy link
Copy Markdown

Bumps path-to-regexp to 1.9.0 and updates ancestor dependencies path-to-regexp, express and router. These dependencies need to be updated together.

Updates path-to-regexp from 1.8.0 to 1.9.0

Release notes

Sourced from path-to-regexp's releases.

Fix backtracking in 1.x

Fixed

  • Add backtrack protection to 1.x release (#320) 925ac8e
  • Fix re.exec(&[#39](https://github.com/pillarjs/path-to-regexp/issues/39);/test/route&[#39](https://github.com/pillarjs/path-to-regexp/issues/39);) result (#267) 32a14b0

pillarjs/path-to-regexp@v1.8.0...v1.9.0

Commits

Updates express from 4.17.1 to 4.21.2

Release notes

Sourced from express's releases.

4.21.2

What's Changed

Full Changelog: expressjs/express@4.21.1...4.21.2

4.21.1

What's Changed

Full Changelog: expressjs/express@4.21.0...4.21.1

4.21.0

What's Changed

New Contributors

Full Changelog: expressjs/express@4.20.0...4.21.0

4.20.0

What's Changed

Important

  • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • Remove link renderization in html while using res.redirect

Other Changes

... (truncated)

Changelog

Sourced from express's changelog.

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
    • includes send@0.19.0
  • 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
    • 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)
  • Remove link renderization in html while using res.redirect
  • deps: path-to-regexp@0.1.10
    • Adds support for named matching groups in the routes using a regex
    • Adds backtracking protection to parameters without regexes defined
  • deps: encodeurl@~2.0.0
    • Removes encoding of \, |, and ^ to align better with URL spec
  • Deprecate passing options.maxAge and options.expires to res.clearCookie
    • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie

4.19.2 / 2024-03-25

  • Improved fix for open redirect allow list bypass

4.19.1 / 2024-03-20

  • Allow passing non-strings to res.location with new encoding handling checks

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by jonchurch, a new releaser for express since your current version.


Updates router from 1.3.5 to 2.2.0

Release notes

Sourced from router's releases.

v2.2.0

What's Changed

New Contributors

Full Changelog: pillarjs/router@v2.1.0...v2.2.0

v2.1.0

What's Changed

New Contributors

Full Changelog: pillarjs/router@v2.0.0...v2.1.0

2.0.0-beta.1

This incorporates all changes after 1.3.3 up to 1.3.5.

  • Internalize private router.process_params method
  • Remove debug dependency
  • deps: array-flatten@3.0.0
  • deps: parseurl@~1.3.3

... (truncated)

Changelog

Sourced from router's changelog.

2.2.0 / 2025-03-26

  • Remove setImmediate support check
  • Restore debug dependency

2.1.0 / 2025-02-10

  • Updated engines field to Node@18 or higher
  • Remove Object.setPrototypeOf polyfill
  • Use Array.flat instead of array-flatten package
  • Replace methods dependency with standard library
  • deps: parseurl@^1.3.3
  • deps: is-promise@^4.0.0
  • Replace utils-merge dependency with Object.assign
  • deps: Remove unused dep after

2.0.0 / 2024-09-09

  • Drop support for node <18
  • deps: path-to-regexp@^8.0.0
    • Drop support for partial capture group router.route('/user(s?)/:user/:op') but still have optional non-capture /user{s}/:user/:op
    • :name? becomes {:name}
    • :name* becomes *name.
    • The splat change also changes splat from strings to an array of strings
    • Optional splats become {*name}
    • :name+ becomes *name and thus equivalent to *name so I dropped those tests
    • Strings as regular expressions are fully removed, need to be converted to native regular expressions

2.0.0-beta.2 / 2024-03-20

This incorporates all changes after 1.3.5 up to 1.3.8.

  • Add support for returned, rejected Promises to router.param

2.0.0-beta.1 / 2020-03-29

This incorporates all changes after 1.3.3 up to 1.3.5.

  • Internalize private router.process_params method
  • Remove debug dependency
  • deps: array-flatten@3.0.0
  • deps: parseurl@~1.3.3
  • deps: path-to-regexp@3.2.0
    • Add new ?, *, and + parameter modifiers.
    • Matching group expressions are only RegExp syntax.

... (truncated)

Commits
  • e6d6b60 2.2.0 (#157)
  • 2226ece feat: deprecate non-native Promises (#154)
  • 79beed1 chore: upgrade finalhandler to 2.1.0 (#153)
  • 276d40d fix: 'continue' is unnecessary as the last statement in while loop inside nex...
  • 21debd9 fix: remove devDependency safe-buffer (#140)
  • c10d69e fix: remove promise support check from tests (#141)
  • 337c45b fix: remove setImmediate support check (#144)
  • 08b6a32 fix(deps): remove unused devDependency after
  • a2623fa fix(ci): upgrade scorecard workflow pinned action versions (#150)
  • 79a8add fix: restore 'debug' logs
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by ulisesgascon, a new releaser for router since your current version.


You 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 13, 2025
Bumps [path-to-regexp](https://github.com/pillarjs/path-to-regexp) to 1.9.0 and updates ancestor dependencies [path-to-regexp](https://github.com/pillarjs/path-to-regexp), [express](https://github.com/expressjs/express) and [router](https://github.com/pillarjs/router). These dependencies need to be updated together.


Updates `path-to-regexp` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/pillarjs/path-to-regexp/releases)
- [Changelog](https://github.com/pillarjs/path-to-regexp/blob/master/History.md)
- [Commits](pillarjs/path-to-regexp@v1.8.0...v1.9.0)

Updates `express` from 4.17.1 to 4.21.2
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/4.21.2/History.md)
- [Commits](expressjs/express@4.17.1...4.21.2)

Updates `router` from 1.3.5 to 2.2.0
- [Release notes](https://github.com/pillarjs/router/releases)
- [Changelog](https://github.com/pillarjs/router/blob/master/HISTORY.md)
- [Commits](pillarjs/router@v1.3.5...v2.2.0)

---
updated-dependencies:
- dependency-name: path-to-regexp
  dependency-version: 1.9.0
  dependency-type: indirect
- dependency-name: express
  dependency-version: 4.21.2
  dependency-type: direct:production
- dependency-name: router
  dependency-version: 2.2.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/multi-1287b5e6a0 branch from df18b32 to 67b5209 Compare December 1, 2025 14:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants