Skip to content

Bump the nestjs group with 8 updates#96

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/nestjs-ff2a339844
Open

Bump the nestjs group with 8 updates#96
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/nestjs-ff2a339844

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Oct 21, 2025

Bumps the nestjs group with 8 updates:

Package From To
@nestjs/common 10.4.15 11.1.6
@nestjs/config 3.3.0 4.0.2
@nestjs/core 10.4.15 11.1.6
@nestjs/passport 10.0.3 11.0.5
@nestjs/platform-express 10.4.15 11.1.6
@nestjs/platform-fastify 10.4.15 11.1.6
@nestjs/schedule 4.1.2 6.0.1
@nestjs/testing 10.4.15 11.1.6

Updates @nestjs/common from 10.4.15 to 11.1.6

Release notes

Sourced from @​nestjs/common's releases.

v11.1.6 (2025-08-07)

Bug fixes

Dependencies

Committers: 6

v11.1.5 (2025-07-18)

Dependencies

v11.1.4 (2025-07-16)

Bug fixes

  • platform-fastify
    • #15385 fix(testing): auto-init fastify adapter for middleware registration (@​mag123c)
  • core, testing
  • core
  • microservices

Enhancements

... (truncated)

Commits

Updates @nestjs/config from 3.3.0 to 4.0.2

Release notes

Sourced from @​nestjs/config's releases.

Release 4.0.2

  • fix(common): update KeyOf type to support symbol keys (f53f14e)

Release 4.0.1

  • fix: validate predefined condition #1970 (79d82d6)
  • feat: allow to use symbol as a token (99d8bca)

Release 4.0.0

Breaking changes

The order in which configuration variables are read by the ConfigService#get method has been updated. The new order is:

  • Internal configuration (config namespaces and custom config files)
  • Validated environment variables (if validation is enabled and a schema is provided)
  • The process.env object

Previously, validated environment variables and the process.env object were read first, preventing them from being overridden by internal configuration. With this update, internal configuration will now always take precedence over environment variables.

Additionally, the ignoreEnvVars configuration option, which previously allowed disabling validation of the process.env object, has been deprecated. Instead, use the validatePredefined option (set to false to disable validation of predefined environment variables). Predefined environment variables refer to process.env variables that were set before the module was imported. For example, if you start your application with PORT=3000 node main.js, the PORT variable is considered predefined. However, variables loaded by the ConfigModule from a .env file are not classified as predefined.

A new skipProcessEnv option has also been introduced. This option allows you to prevent the ConfigService#get method from accessing the process.env object entirely, which can be helpful when you want to restrict the service from reading environment variables directly.

Changelog

  • chore: update config attributes to more self descriptive names (c2eaf04)
  • chore(deps): update nest monorepo to v11 (1c20713)
  • feat: order of reading variables, add skip predefined (c53c63c)
Commits
  • a7c3ac1 chore(): release v4.0.2
  • 51957cb Merge pull request #1997 from akeldamas/fix-keyof-type-for-symbols
  • f53f14e fix(common): update KeyOf type to support symbol keys
  • c830cb2 chore(deps): update dependency eslint-plugin-prettier to v5.2.5 (#1995)
  • e8fadb5 chore(deps): update dependency typescript-eslint to v8.28.0 (#1994)
  • 6f73e18 chore(deps): update dependency ts-jest to v29.3.0 (#1993)
  • 555ce6f chore(deps): update dependency @​types/node to v22.13.13 (#1992)
  • 53dcb1b chore(deps): update dependency eslint-plugin-prettier to v5.2.4 (#1991)
  • 3b0aa25 chore(deps): update eslint monorepo to v9.23.0 (#1990)
  • f0ec83b chore(deps): update dependency @​eslint/eslintrc to v3.3.1 (#1989)
  • Additional commits viewable in compare view

Updates @nestjs/core from 10.4.15 to 11.1.6

Release notes

Sourced from @​nestjs/core's releases.

v11.1.6 (2025-08-07)

Bug fixes

Dependencies

Committers: 6

v11.1.5 (2025-07-18)

Dependencies

v11.1.4 (2025-07-16)

Bug fixes

  • platform-fastify
    • #15385 fix(testing): auto-init fastify adapter for middleware registration (@​mag123c)
  • core, testing
  • core
  • microservices

Enhancements

... (truncated)

Commits
  • 35c3ded chore(@​nestjs) publish v11.1.6 release
  • 60b2ed4 Merge pull request #15504 from hajekjiri/bug/fix-undefined-injection
  • ab93e4b fix(core): fix race condition in class dependency resolution
  • f14a976 style(core): change inquirer id to const
  • 93f54ed fix(core): attach root inquirer for nested transient providers
  • cd009a7 refactor(core): fix the typo 'controler' to 'controller'
  • 9bb0560 chore(@​nestjs) publish v11.1.5 release
  • 1f101ac chore(@​nestjs) publish v11.1.4 release
  • f704dcb Merge pull request #15405 from hajekjiri/bug/fix-race-condition-in-dependency...
  • a453b63 fix(core): fix race condition in class dependency resolution
  • Additional commits viewable in compare view

Updates @nestjs/passport from 10.0.3 to 11.0.5

Release notes

Sourced from @​nestjs/passport's releases.

Release 11.0.5

  • fix: exclude last argument only if its of type function (cb) (1a7123a)

Release 11.0.4

  • fix: remove redundant exclude unknown type (7a7ea87)
  • fix: strategy ctor overload type extractor generic. Solves #1857 (99a3245)

Release 11.0.3

  • fix: use all ctor params type to include overloads #1857 (84c8838)

11.0.0

v11.0.0

Commits
  • 1432808 chore(): release v11.0.5
  • d3775ac Merge pull request #1866 from nestjs/fix/without-callback-fix
  • 28a0835 Merge pull request #1867 from nestjs/renovate/lint-staged-15.x
  • 53ba5d6 chore(deps): update dependency lint-staged to v15.4.2
  • 223c1cb Merge pull request #1863 from nestjs/renovate/node-22.x
  • bda4914 Merge pull request #1864 from nestjs/renovate/nest-monorepo
  • 1a7123a fix: exclude last argument only if its of type function (cb)
  • 6fa6d91 chore(deps): update nest monorepo to v11.0.5
  • 8b3f7e3 chore(deps): update dependency @​types/node to v22.10.9
  • 3c877f8 chore(deps): update nest monorepo to v11.0.4 (#1862)
  • Additional commits viewable in compare view

Updates @nestjs/platform-express from 10.4.15 to 11.1.6

Release notes

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

v11.1.6 (2025-08-07)

Bug fixes

Dependencies

Committers: 6

v11.1.5 (2025-07-18)

Dependencies

v11.1.4 (2025-07-16)

Bug fixes

  • platform-fastify
    • #15385 fix(testing): auto-init fastify adapter for middleware registration (@​mag123c)
  • core, testing
  • core
  • microservices

Enhancements

... (truncated)

Commits

Updates @nestjs/platform-fastify from 10.4.15 to 11.1.6

Release notes

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

v11.1.6 (2025-08-07)

Bug fixes

Dependencies

Committers: 6

v11.1.5 (2025-07-18)

Dependencies

v11.1.4 (2025-07-16)

Bug fixes

  • platform-fastify
    • #15385 fix(testing): auto-init fastify adapter for middleware registration (@​mag123c)
  • core, testing
  • core
  • microservices

Enhancements

... (truncated)

Commits
  • 35c3ded chore(@​nestjs) publish v11.1.6 release
  • ff643d1 chore(deps): bump @​fastify/cors from 11.0.1 to 11.1.0
  • 9bb0560 chore(@​nestjs) publish v11.1.5 release
  • 1f101ac chore(@​nestjs) publish v11.1.4 release
  • b34d428 Merge pull request #15385 from mag123c/fix/fastify-adapter-middleware-init
  • 07291c2 feat(platform-fastify): implement lazy middleware registration
  • b7ca2bd Merge pull request #14789 from piotrfrankowski/pf/feat/add-fastify-schema-dec...
  • d602f74 fix(platform-fastify): improve middleware registration error message
  • adc7e15 feat: enhance introspection capabilities
  • c26e928 chore(deps): bump fastify from 5.3.3 to 5.4.0
  • Additional commits viewable in compare view

Updates @nestjs/schedule from 4.1.2 to 6.0.1

Release notes

Sourced from @​nestjs/schedule's releases.

6.0.1

What's Changed

New Contributors

Full Changelog: nestjs/schedule@6.0.0...6.0.1

Release 6.0.0

What's Changed

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

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)
Commits
  • dc6b79f chore(deps): update dependency ts-jest to v29.4.3 (#2088)
  • 1156f8d Merge pull request #1966 from nestjs/renovate/cimg-node-22.x
  • 0273e3f Merge pull request #2001 from nestjs/renovate/cron-4.x
  • 3e197c8 Merge pull request #2053 from spotlight21c/clear-before-shutdown
  • 3596d17 Merge pull request #2085 from arjunatlightspeed/add-threshold-option
  • 614ceff chore(deps): update dependency @​types/node to v22.18.6 (#2087)
  • c6f4361 chore(deps): update dependency @​types/node to v22.18.5 (#2086)
  • af9dfb1 chore(deps): update dependency typescript-eslint to v8.44.0 (#2084)
  • 0493755 chore(deps): update dependency ts-jest to v29.4.2 (#2083)
  • 961c4d5 Add threshold option to CronOptions
  • Additional commits viewable in compare view

Updates @nestjs/testing from 10.4.15 to 11.1.6

Release notes

Sourced from @​nestjs/testing's releases.

v11.1.6 (2025-08-07)

Bug fixes

Dependencies

Committers: 6

v11.1.5 (2025-07-18)

Dependencies

v11.1.4 (2025-07-16)

Bug fixes

  • platform-fastify
    • #15385 fix(testing): auto-init fastify adapter for middleware registration (@​mag123c)
  • core, testing
  • core
  • microservices

Enhancements

... (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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the nestjs group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@nestjs/common](https://github.com/nestjs/nest/tree/HEAD/packages/common) | `10.4.15` | `11.1.6` |
| [@nestjs/config](https://github.com/nestjs/config) | `3.3.0` | `4.0.2` |
| [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) | `10.4.15` | `11.1.6` |
| [@nestjs/passport](https://github.com/nestjs/passport) | `10.0.3` | `11.0.5` |
| [@nestjs/platform-express](https://github.com/nestjs/nest/tree/HEAD/packages/platform-express) | `10.4.15` | `11.1.6` |
| [@nestjs/platform-fastify](https://github.com/nestjs/nest/tree/HEAD/packages/platform-fastify) | `10.4.15` | `11.1.6` |
| [@nestjs/schedule](https://github.com/nestjs/schedule) | `4.1.2` | `6.0.1` |
| [@nestjs/testing](https://github.com/nestjs/nest/tree/HEAD/packages/testing) | `10.4.15` | `11.1.6` |


Updates `@nestjs/common` from 10.4.15 to 11.1.6
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.6/packages/common)

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

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

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

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

Updates `@nestjs/platform-fastify` from 10.4.15 to 11.1.6
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.6/packages/platform-fastify)

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

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

---
updated-dependencies:
- dependency-name: "@nestjs/common"
  dependency-version: 11.1.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/config"
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/core"
  dependency-version: 11.1.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/passport"
  dependency-version: 11.0.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/platform-express"
  dependency-version: 11.1.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/platform-fastify"
  dependency-version: 11.1.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/schedule"
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/testing"
  dependency-version: 11.1.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 21, 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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants