chore: update nestjs (major) #528
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
10.4.18
->11.1.3
^10.0.0
->^10.0.0 || ^11.0.0
^8.0.0 || ^9.0.0 || ^10.0.0
->^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0
3.3.0
->4.0.2
^3.0.0
->^3.0.0 || ^4.0.0
10.4.18
->11.1.3
^10.0.0
->^10.0.0 || ^11.0.0
^8.0.0 || ^9.0.0 || ^10.0.0
->^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0
10.4.18
->11.1.3
10.2.3
->11.0.5
10.4.18
->11.1.3
Release Notes
nestjs/nest (@nestjs/common)
v11.1.3
Compare Source
v11.1.3 (2025-06-06)
Bug fixes
core
Enhancements
common
common
,core
Dependencies
platform-express
Committers: 3
v11.1.2
Compare Source
v11.1.2 (2025-05-26)
Bug fixes
microservices
Dependencies
common
platform-express
Committers: 2
v11.1.1
Compare Source
v11.1.1 (2025-05-14)
Bug fixes
core
microservices
core
,platform-fastify
getHeader
andappendHeader
methods fromAbstractHttpAdapter
(@micalevisk)platform-express
Enhancements
microservices
Dependencies
platform-fastify
platform-ws
common
Committers: 7
v11.1.0
Compare Source
v11.1.0 (2025-04-23)
Enhancements
microservices
Committers: 1
v11.0.21
Compare Source
v11.0.21 (2025-04-23)
Enhancements
common
Dependencies
platform-fastify
Committers: 1
v11.0.20
Compare Source
What's Changed
eval
by @Borewit in https://github.com/nestjs/nest/pull/14974New 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)
file-type
to validate file mimetypes by @Chathula in https://github.com/nestjs/nest/pull/14881v11.0.15
Compare Source
v11.0.15 (2025-04-10)
Bug fixes
platform-fastify
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
Dependencies
platform-express
platform-fastify
Committers: 2
v11.0.12
Compare Source
v11.0.12 (2025-03-19)
Bug fixes
core
Enhancements
core
v11.0.11
Compare Source
v11.0.11 (2025-02-28)
Enhancements
platform-fastify
Dependencies
platform-fastify
platform-ws
Committers: 1
v11.0.10
Compare Source
v11.0.10 (2025-02-17)
Bug fixes
microservices
platform-express
v11.0.9
Compare Source
v11.0.9 (2025-02-10)
Bug fixes
core
common
Committers: 2
v11.0.8
Compare Source
v11.0.8 (2025-02-06)
Bug fixes
common
platform-express
Committers: 4
v11.0.7
Compare Source
v11.0.7 (2025-01-31)
Bug fixes
core
Committers: 1
v11.0.6
Compare Source
v11.0.6 (2025-01-27)
Bug fixes
core
Committers: 1
v11.0.5
Compare Source
v11.0.5 (2025-01-23)
Bug fixes
core
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 👈 👈 👈
Features
common
,core
,microservices
common
,core
common
,core
,microservices
,platform-express
,platform-fastify
,platform-socket.io
,platform-ws
,testing
,websockets
Enhancements
common
@Inject()
(@micalevisk)microservices
websockets
common
,core
,microservices
,websockets
common
,core
,platform-fastify
platform-express
platform-ws
platform-fastify
common
,core
Bug fixes
core
Reflector
types (@AlexRMU)platform-fastify
microservices
common
exports
of modules (@micalevisk)Other packages in the ecosystem
config
(breaking changes)cli
cache-manager
(breaking changes)cqrs
Dependencies
platform-fastify
Committers: 22
nestjs/config (@nestjs/config)
v4.0.2
Compare Source
f53f14e
)v4.0.1
Compare Source
79d82d6
)99d8bca
)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:process.env
objectPreviously, 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 theprocess.env
object, has been deprecated. Instead, use thevalidatePredefined
option (set tofalse
to disable validation of predefined environment variables). Predefined environment variables refer toprocess.env
variables that were set before the module was imported. For example, if you start your application withPORT=3000 node main.js
, thePORT
variable is considered predefined. However, variables loaded by theConfigModule
from a.env
file are not classified as predefined.A new
skipProcessEnv
option has also been introduced. This option allows you to prevent theConfigService#get
method from accessing theprocess.env
object entirely, which can be helpful when you want to restrict the service from reading environment variables directly.Changelog
c2eaf04
)1c20713
)c53c63c
)nestjs/schematics (@nestjs/schematics)
v11.0.5
Compare Source
180391a
)bee9e31
)v11.0.4
Compare Source
0398c6a
)5257ea1
)115da29
)v11.0.3
Compare Source
What's Changed
Full Changelog: nestjs/schematics@11.0.2...11.0.3
v11.0.2
Compare Source
92f2f9a
)v11.0.1
Compare Source
a532fd8
)83f92d0
)v11.0.0
Compare Source
Release 11.0.0 (2025-01-17)
Changelog
797a384
)a4cb235
)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.
This PR has been generated by Renovate Bot.