Skip to content

chore: update nestjs (major) #528

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open

Conversation

tsang-bot[bot]
Copy link
Contributor

@tsang-bot tsang-bot bot commented Jan 17, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nestjs/common (source) 10.4.18 -> 11.1.3 age adoption passing confidence
@nestjs/common (source) ^10.0.0 -> ^10.0.0 || ^11.0.0 age adoption passing confidence
@nestjs/common (source) ^8.0.0 || ^9.0.0 || ^10.0.0 -> ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 age adoption passing confidence
@nestjs/config 3.3.0 -> 4.0.2 age adoption passing confidence
@nestjs/config ^3.0.0 -> ^3.0.0 || ^4.0.0 age adoption passing confidence
@nestjs/core (source) 10.4.18 -> 11.1.3 age adoption passing confidence
@nestjs/core (source) ^10.0.0 -> ^10.0.0 || ^11.0.0 age adoption passing confidence
@nestjs/core (source) ^8.0.0 || ^9.0.0 || ^10.0.0 -> ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 age adoption passing confidence
@nestjs/platform-express (source) 10.4.18 -> 11.1.3 age adoption passing confidence
@nestjs/schematics 10.2.3 -> 11.0.5 age adoption passing confidence
@nestjs/testing (source) 10.4.18 -> 11.1.3 age adoption passing confidence

Release Notes

nestjs/nest (@​nestjs/common)

v11.1.3

Compare Source

v11.1.3 (2025-06-06)
Bug fixes
Enhancements
Dependencies
Committers: 3

v11.1.2

Compare Source

v11.1.2 (2025-05-26)
Bug fixes
Dependencies
Committers: 2

v11.1.1

Compare Source

v11.1.1 (2025-05-14)
Bug fixes
Enhancements
Dependencies
Committers: 7

v11.1.0

Compare Source

v11.1.0 (2025-04-23)
Enhancements
Committers: 1

v11.0.21

Compare Source

v11.0.21 (2025-04-23)
Enhancements
Dependencies
Committers: 1

v11.0.20

Compare Source

What's Changed
New Contributors

Full Changelog: nestjs/nest@v11.0.19...v11.0.20

v11.0.19

Compare Source

v11.0.18

Compare Source

What's Changed

Full Changelog: nestjs/nest@v11.0.17...v11.0.18

v11.0.17

Compare Source

v11.0.16

Compare Source

v11.0.16 (2025-04-11)

v11.0.15

Compare Source

v11.0.15 (2025-04-10)
Bug fixes
Committers: 1

v11.0.14

Compare Source

v11.0.14 (2025-04-09)
Bug fixes
  • platform-fastify
Committers: 1

v11.0.13

Compare Source

v11.0.13 (2025-04-03)
Bug fixes
  • platform-fastify
  • microservices
    • #​14869 fix(microservices): do not re-create client connection once get client by service name (@​mingo023)
Dependencies
Committers: 2

v11.0.12

Compare Source

v11.0.12 (2025-03-19)
Bug fixes
Enhancements

v11.0.11

Compare Source

v11.0.11 (2025-02-28)
Enhancements
  • platform-fastify
Dependencies
Committers: 1

v11.0.10

Compare Source

v11.0.10 (2025-02-17)
Bug fixes

v11.0.9

Compare Source

v11.0.9 (2025-02-10)
Bug fixes
Committers: 2

v11.0.8

Compare Source

v11.0.8 (2025-02-06)
Bug fixes
Committers: 4

v11.0.7

Compare Source

v11.0.7 (2025-01-31)
Bug fixes
Committers: 1

v11.0.6

Compare Source

v11.0.6 (2025-01-27)
Bug fixes
Committers: 1

v11.0.5

Compare Source

v11.0.5 (2025-01-23)
Bug fixes
Committers: 1

v11.0.4

Compare Source

v11.0.3

Compare Source

v11.0.2

Compare Source

v11.0.1

Compare Source

v11.0.0

Compare Source

v11.0.0 (2025-01-16)

Article: https://trilon.io/blog/announcing-nestjs-11-whats-new
Migration guide: https://docs.nestjs.com/migration-guide 👈 👈 👈

⚠️ Node v16 and v18 are no longer supported (>= v20 is required).

Features
  • common, core, microservices
  • common, core
  • common, core, microservices, platform-express, platform-fastify, platform-socket.io, platform-ws, testing, websockets
    • #​14238 chore(deps): upgrade to express v5, fastify v5, add legacy route path converter to minimize breaking changes (@​kamilmysliwiec)
Enhancements
Bug fixes
Other packages in the ecosystem
Dependencies
Committers: 22
nestjs/config (@​nestjs/config)

v4.0.2

Compare Source

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

v4.0.1

Compare Source

v4.0.0

Compare Source

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)
nestjs/schematics (@​nestjs/schematics)

v11.0.5

Compare Source

  • chore: update eslint language options (app schematic) (180391a)
  • chore(deps): update typescript-eslint monorepo to v8.29.1 (#​2042) (bee9e31)

v11.0.4

Compare Source

v11.0.3

Compare Source

What's Changed

Full Changelog: nestjs/schematics@11.0.2...11.0.3

v11.0.2

Compare Source

  • fix(deps): update angular-cli monorepo to v19.2.0 (92f2f9a)

v11.0.1

Compare Source

  • fix(deps): update angular-cli monorepo to v19.1.7 (a532fd8)
  • chore: update typescript compiler target (83f92d0)

v11.0.0

Compare Source

Release 11.0.0 (2025-01-17)
Changelog
  • feat: sort library and sub-app names to reduce git merge conflicts (797a384)
  • feat: enable strict null checks and consistent casing (a4cb235)
  • chore: upgrade to eslint v9 (7b205f5)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Renovate Bot.

@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch from 428473b to 1ef22fb Compare January 18, 2025 02:10
@tsang-bot tsang-bot bot changed the title chore: update nestjs to v11 (major) chore: update nestjs (major) Jan 18, 2025
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch 7 times, most recently from 3b91225 to 75339e6 Compare January 23, 2025 13:24
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch 5 times, most recently from 35c9292 to c7d314e Compare February 1, 2025 02:18
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch 5 times, most recently from c837332 to ff03af2 Compare February 7, 2025 02:16
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch 4 times, most recently from e4c3041 to e073e79 Compare February 14, 2025 13:24
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch 4 times, most recently from 684cbd9 to 6174178 Compare February 24, 2025 13:26
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch from 6174178 to e693c19 Compare February 26, 2025 02:20
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch 7 times, most recently from 9ef4ed7 to 8ce1f13 Compare May 5, 2025 13:30
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch 6 times, most recently from b5dc7bd to a3dcd10 Compare May 12, 2025 13:34
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch 6 times, most recently from 98eb988 to 54ec677 Compare May 20, 2025 13:36
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch 5 times, most recently from a27b455 to 961d41a Compare May 27, 2025 13:33
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch 3 times, most recently from 6d62250 to 79e54b3 Compare June 3, 2025 13:34
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch from 79e54b3 to 1156c9e Compare June 6, 2025 13:32
@tsang-bot tsang-bot bot force-pushed the renovate/major-nestjs branch from 1156c9e to 723759a Compare June 7, 2025 13:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants