Skip to content

chore(deps): bump path-to-regexp, @liaoliaots/nestjs-redis, @nestjs/core, @nestjs/platform-express, @nestjs/schedule, @nestjs/swagger and @nestjs/testing#10

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

chore(deps): bump path-to-regexp, @liaoliaots/nestjs-redis, @nestjs/core, @nestjs/platform-express, @nestjs/schedule, @nestjs/swagger and @nestjs/testing#10
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/multi-615fe1bf9a

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Feb 15, 2025

Bumps path-to-regexp to 8.2.0 and updates ancestor dependencies path-to-regexp, @liaoliaots/nestjs-redis, @nestjs/core, @nestjs/platform-express, @nestjs/schedule, @nestjs/swagger and @nestjs/testing. These dependencies need to be updated together.

Updates path-to-regexp from 0.1.7 to 8.2.0

Release notes

Sourced from path-to-regexp's releases.

8.2.0

Fixed

  • Allowing path-to-regexp to run on older browsers by targeting ES2015
    • Target ES2015 5969033
      • Also saved 0.22kb (10%!) by removing the private class field down level
    • Remove s flag from regexp 51dbd45

pillarjs/path-to-regexp@v8.1.0...v8.2.0

v8.1.0

Added

  • Adds pathToRegexp method back for generating a regex
  • Adds stringify method for converting TokenData into a path string

pillarjs/path-to-regexp@v8.0.0...v8.1.0

Simpler API

Heads up! This is a fairly large change (again) and I need to apologize in advance. If I foresaw what this version would have ended up being I would not have released version 7. A longer blog post and explanation will be incoming this week, but the pivot has been due to work on Express.js v5 and this will the finalized syntax used in Express moving forward.

Edit: The post is out - https://blakeembrey.com/posts/2024-09-web-redos/

Added

  • Adds key names to wildcards using *name syntax, aligns with : behavior but using an asterisk instead

Changed

  • Removes group suffixes of ?, +, and * - only optional exists moving forward (use wildcards for +, {*foo} for *)
  • Parameter names follow JS identifier rules and allow unicode characters

Added

  • Parameter names can now be quoted, e.g. :"foo-bar"
  • Match accepts an array of values, so the signature is now string | TokenData | Array<string | TokenData>

Removed

  • Removes loose mode
  • Removes regular expression overrides of parameters

pillarjs/path-to-regexp@v7.1.0...v8.0.0

Support array inputs (again)

Added

  • Support array inputs for match and pathToRegexp 3fdd88f

pillarjs/path-to-regexp@v7.1.0...v7.2.0

... (truncated)

Changelog

Sourced from path-to-regexp's changelog.

Moved to GitHub Releases

3.0.0 / 2019-01-13

  • Always use prefix character as delimiter token, allowing any character to be a delimiter (e.g. /:att1-:att2-:att3-:att4-:att5)
  • Remove partial support, prefer escaping the prefix delimiter explicitly (e.g. \\/(apple-)?icon-:res(\\d+).png)

2.4.0 / 2018-08-26

  • Support start option to disable anchoring from beginning of the string

2.3.0 / 2018-08-20

  • Use delimiter when processing repeated matching groups (e.g. foo/bar has no prefix, but has a delimiter)

2.2.1 / 2018-04-24

  • Allow empty string with end: false to match both relative and absolute paths

2.2.0 / 2018-03-06

  • Pass token as second argument to encode option (e.g. encode(value, token))

2.1.0 / 2017-10-20

  • Handle non-ending paths where the final character is a delimiter
    • E.g. /foo/ before required either /foo/ or /foo// to match in non-ending mode

2.0.0 / 2017-08-23

  • New option! Ability to set endsWith to match paths like /test?query=string up to the query string
  • New option! Set delimiters for specific characters to be treated as parameter prefixes (e.g. /:test)
  • Remove isarray dependency
  • Explicitly handle trailing delimiters instead of trimming them (e.g. /test/ is now treated as /test/ instead of /test when matching)
  • Remove overloaded keys argument that accepted options
  • Remove keys list attached to the RegExp output
  • Remove asterisk functionality (it's a real pain to properly encode)
  • Change tokensToFunction (e.g. compile) to accept an encode function for pretty encoding (e.g. pass your own implementation)

1.7.0 / 2016-11-08

  • Allow a delimiter option to be passed in with tokensToRegExp which will be used for "non-ending" token match situations

1.6.0 / 2016-10-03

  • Populate RegExp.keys when using the tokensToRegExp method (making it consistent with the main export)
  • Allow a delimiter option to be passed in with parse
  • Updated TypeScript definition with Keys and Options updated

1.5.3 / 2016-06-15

... (truncated)

Commits

Updates @liaoliaots/nestjs-redis from 9.0.5 to 10.0.0

Release notes

Sourced from @​liaoliaots/nestjs-redis's releases.

v10.0.0

BREAKING CHANGE:

  • This lib require Node.js >= 16.13.0 (first LTS version), NestJS ^10, ioredis ^ 5
  • In some cases InjectRedis and InjectCluster won't handle dependencies correctly(for example: a module import RedisModule and re-export it will cause "Cannot resolve dependency" error) thus leading to errors and there is no better solution so InjectRedis and InjectCluster was removed and please use RedisService & ClusterService instead which is the most stable solution.
  • RedisService & ClusterService has two instance methods:
    • getOrThrow: Retrieves a redis|cluster connection by namespace. However, if the query does not find a connection, it returns ClientNotFoundError: No Connection found error.
    • getOrNil: Retrieves a redis|cluster connection by namespace, if the query does not find a connection, it returns null;

Bug Fixes

Others

  • add exports, type field for modern Node.js
  • bump tslib dependency to 2.7.0

v10.0.0-alpha.3 - Pre Release

  • new TypeScript build options, "module": "Node16", "moduleResolution": "Node16"
  • add exports type field in package.json for modern Node.js
  • this lib requires Node.js>=16.13.0 (the first lts version) or higher
  • publish test

v10.0.0-alpha.2 - Incoming Changes

  • This lib support both node-redis and ioredis, the minimum required version is node-redis^4.1.0, ioredis^5.0.0.
  • In some cases InjectRedis and InjectCluster won't handle dependencies correctly(for example: a module import RedisModule and re-export it will cause "Cannot resolve dependency" error) thus leading to errors and there is no better solution so InjectRedis and InjectCluster will be removed and please use RedisManager&ClusterManager instead which is the most stable solution.
Commits

Updates @nestjs/core from 9.2.1 to 11.0.9

Release notes

Sourced from @​nestjs/core's releases.

v11.0.9 (2025-02-10)

Bug fixes

Committers: 2

v11.0.8 (2025-02-06)

Bug fixes

Committers: 4

v11.0.7 (2025-01-31)

Bug fixes

Committers: 1

v11.0.6 (2025-01-27)

Bug fixes

Committers: 1

v11.0.5 (2025-01-23)

Bug fixes

Committers: 1

... (truncated)

Commits
  • 3c276c9 chore(@​nestjs) publish v11.0.9 release
  • 1414e2c fix: skip root module if undefined
  • fececd2 Update packages/core/scanner.ts
  • 8dca14e test: early return when imports undefined
  • 2bdec35 style: disable no-this-alias for tree-node
  • 1832c9e test: early return when imports undefined
  • 5703250 chore: rename method name
  • 059e817 fix: stop on cycles
  • 3179609 refactor: dont track node depth
  • c743c74 perf(core): use topology tree for calculating distance
  • Additional commits viewable in compare view

Updates @nestjs/platform-express from 9.2.1 to 11.0.9

Release notes

Sourced from @​nestjs/platform-express's releases.

v11.0.9 (2025-02-10)

Bug fixes

Committers: 2

v11.0.8 (2025-02-06)

Bug fixes

Committers: 4

v11.0.7 (2025-01-31)

Bug fixes

Committers: 1

v11.0.6 (2025-01-27)

Bug fixes

Committers: 1

v11.0.5 (2025-01-23)

Bug fixes

Committers: 1

... (truncated)

Commits

Updates @nestjs/schedule from 2.1.0 to 5.0.1

Release notes

Sourced from @​nestjs/schedule's releases.

Release 5.0.1

What's Changed

New Contributors

Full Changelog: nestjs/schedule@5.0.0...5.0.1

Release 5.0.0

Breaking changes

  • requires Node >= v20

Changelog

  • fix(deps): update dependency cron to v3.5.0 (ae6c43c)
  • chore(deps): update nest monorepo to v11 (41d8cdb)
  • chore(deps): Use crypto.randomUUID() instead of uuid module (58f795d)

Release 4.1.2

  • Merge pull request #1834 from micalevisk/fix-issue-1833 (25a0ca9)
  • refactor: drop deprecated nodejs utility api (088674f)
  • chore(deps): update dependency prettier to v3.4.2 (#1832) (42600c0)
  • chore(deps): update nest monorepo to v10.4.13 (#1831) (58b28ba)
  • chore(deps): update typescript-eslint monorepo to v8.17.0 (#1830) (36bda2d)
  • chore(deps): update dependency eslint to v9.16.0 (#1829) (97be309)
  • chore(deps): update nest monorepo to v10.4.12 (#1828) (3bef9ec)
  • chore(deps): update dependency @​types/node to v22.10.1 (#1827) (ac01b10)
  • chore(deps): update nest monorepo to v10.4.11 (#1826) (40f132a)
  • chore(deps): update dependency prettier to v3.4.1 (#1825) (ed162b9)
  • chore(deps): update dependency prettier to v3.4.0 (#1824) (5ebb711)
  • chore(deps): update dependency @​types/node to v22.10.0 (#1823) (c6f82ac)
  • chore(deps): update dependency @​types/node to v22.9.4 (#1822) (7f0d064)
  • chore(deps): update typescript-eslint monorepo to v8.16.0 (#1821) (83a35b4)
  • chore(deps): update nest monorepo to v10.4.9 (#1820) (f9e64d8)
  • Merge pull request #1801 from nestjs/renovate/cron-3.x (cb158cc)
  • fix(deps): update dependency cron to v3.2.1 (f88e263)
  • Merge pull request #1808 from nestjs/renovate/uuid-11.x (35f6eb4)
  • chore(deps): update dependency @​types/node to v22.9.3 (#1819) (a0b8782)
  • chore(deps): update dependency @​types/node to v22.9.2 (#1818) (4b48c1e)
  • chore(deps): update dependency typescript to v5.7.2 (#1817) (d708b47)
  • chore(deps): update dependency @​types/node to v22.9.1 (#1816) (227763c)
  • chore(deps): update commitlint monorepo to v19.6.0 (#1815) (dd6748b)
  • chore(deps): update typescript-eslint monorepo to v8.15.0 (#1814) (da02653)
  • chore(deps): update dependency husky to v9.1.7 (#1813) (19fb64a)
  • chore(deps): update dependency eslint to v9.15.0 (#1812) (e004d24)
  • chore(deps): update nest monorepo to v10.4.8 (#1811) (142ab3a)
  • chore(deps): update typescript-eslint monorepo to v8.14.0 (#1809) (c20f9cd)
  • fix(deps): update dependency uuid to v11.0.3 (680c6f9)

... (truncated)

Commits
  • 6fe1f54 chore(): release v5.0.1
  • f59682a Merge pull request #1870 from thomaschaaf/master
  • 9d53b7b Merge pull request #1871 from nestjs/renovate/node-22.x
  • fa58ebe Update tests/e2e/cron-jobs.spec.ts
  • bb3bf7d chore(deps): update dependency @​types/node to v22.10.9
  • 47d9987 tests: fix waitForCompletion test
  • 66e468c feat: add waitForCompletion for cronjobs to disable concurrent running cronjobs
  • b00adcf Merge pull request #1868 from nestjs/renovate/nest-monorepo
  • 858e2f1 chore(deps): update nest monorepo to v11.0.4
  • 2e9b483 chore(deps): update dependency typescript-eslint to v8.21.0 (#1867)
  • Additional commits viewable in compare view

Updates @nestjs/swagger from 6.1.4 to 11.0.3

Release notes

Sourced from @​nestjs/swagger's releases.

Release 11.0.3

11.0.3 (2025-01-23)

Bug fixes

Committers: 1

Release 11.0.2

Changelog

Release 11.0.1

11.0.1 (2025-01-17)

Dependencies

Release 11.0.0

11.0.0 (2025-01-16)

Breaking changes

This version is only compatible with @nestjs/{core,common,platform-express,platform-fastify,...} >= v11

Enhancements

Dependencies

Committers: 2

Release 8.1.1

Unreleased (2025-01-10)

Bug fixes

  • #3232 fix: missing ApiProperty enum undefined handling (@​nxht)
  • #3223 fix: swagger crashed while using any Param/Query/Body decorator in a monorepo with pnpm (@​winuxx)

Dependencies

... (truncated)

Commits
  • 5966b65 chore(): release v11.0.3
  • 7e6f5bf Merge pull request #3264 from degradingsky746/fix/class-validator-isuuid-casing
  • 3b8ead5 fix: incorrect IsUuid class-validator decorator not generating pattern uuid
  • 5fdc39c chore(deps): update nest monorepo to v11.0.4 (#3263)
  • 945180c chore(deps): update dependency typescript-eslint to v8.21.0 (#3260)
  • cce6ee5 chore(deps): update nest monorepo to v11.0.3 (#3257)
  • 87c914c chore: upgrade to eslint v9
  • ba3f0bf Merge pull request #3256 from nestjs/renovate/nest-monorepo
  • 522a375 chore(deps): update nest monorepo to v11.0.2
  • e5f4794 chore(): release v11.0.2
  • Additional commits viewable in compare view

Updates @nestjs/testing from 9.2.1 to 11.0.9

Release notes

Sourced from @​nestjs/testing's releases.

v11.0.9 (2025-02-10)

Bug fixes

Committers: 2

v11.0.8 (2025-02-06)

Bug fixes

Committers: 4

v11.0.7 (2025-01-31)

Bug fixes

Committers: 1

v11.0.6 (2025-01-27)

Bug fixes

Committers: 1

v11.0.5 (2025-01-23)

Bug fixes

Committers: 1

... (truncated)

Commits

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 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.

…ore, @nestjs/platform-express, @nestjs/schedule, @nestjs/swagger and @nestjs/testing

Bumps [path-to-regexp](https://github.com/pillarjs/path-to-regexp) to 8.2.0 and updates ancestor dependencies [path-to-regexp](https://github.com/pillarjs/path-to-regexp), [@liaoliaots/nestjs-redis](https://github.com/liaoliaots/nestjs-redis), [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core), [@nestjs/platform-express](https://github.com/nestjs/nest/tree/HEAD/packages/platform-express), [@nestjs/schedule](https://github.com/nestjs/schedule), [@nestjs/swagger](https://github.com/nestjs/swagger) and [@nestjs/testing](https://github.com/nestjs/nest/tree/HEAD/packages/testing). These dependencies need to be updated together.


Updates `path-to-regexp` from 0.1.7 to 8.2.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@v0.1.7...v8.2.0)

Updates `@liaoliaots/nestjs-redis` from 9.0.5 to 10.0.0
- [Release notes](https://github.com/liaoliaots/nestjs-redis/releases)
- [Commits](liaoliaots/nestjs-redis@v9.0.5...v10.0.0)

Updates `@nestjs/core` from 9.2.1 to 11.0.9
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.0.9/packages/core)

Updates `@nestjs/platform-express` from 9.2.1 to 11.0.9
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.0.9/packages/platform-express)

Updates `@nestjs/schedule` from 2.1.0 to 5.0.1
- [Release notes](https://github.com/nestjs/schedule/releases)
- [Changelog](https://github.com/nestjs/schedule/blob/master/.release-it.json)
- [Commits](nestjs/schedule@2.1.0...5.0.1)

Updates `@nestjs/swagger` from 6.1.4 to 11.0.3
- [Release notes](https://github.com/nestjs/swagger/releases)
- [Changelog](https://github.com/nestjs/swagger/blob/master/.release-it.json)
- [Commits](nestjs/swagger@6.1.4...11.0.3)

Updates `@nestjs/testing` from 9.2.1 to 11.0.9
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.0.9/packages/testing)

---
updated-dependencies:
- dependency-name: path-to-regexp
  dependency-type: indirect
- dependency-name: "@liaoliaots/nestjs-redis"
  dependency-type: direct:production
- dependency-name: "@nestjs/core"
  dependency-type: direct:production
- dependency-name: "@nestjs/platform-express"
  dependency-type: direct:production
- dependency-name: "@nestjs/schedule"
  dependency-type: direct:production
- dependency-name: "@nestjs/swagger"
  dependency-type: direct:production
- dependency-name: "@nestjs/testing"
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Feb 15, 2025
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants