fix(deps): update nest monorepo to v12 - #1864
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/major-nest-monorepo
branch
from
August 27, 2026 23:48
048df01 to
b897fcc
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
11.2.3→12.0.1^11.0.0→^11.0.0 || ^12.0.011.2.3→12.0.1^11.0.0→^11.0.0 || ^12.0.011.2.3→12.0.111.2.3→12.0.111.2.3→12.0.1Release Notes
nestjs/nest (@nestjs/common)
v12.0.1Compare Source
v12.0.0Compare Source
nestjs/nest (@nestjs/core)
v12.0.1Compare Source
v12.0.0Compare Source
nestjs/nest (@nestjs/microservices)
v12.0.1Compare Source
v12.0.0Compare Source
NestJS v12.0.0
NestJS 12 is centered around ESM-ready packages, first-class Standard Schema support for validation and serialization, a rebuilt CLI, and native observability through the new
@nestjs/observeSDK.Existing CommonJS applications keep working — migrating your own code to ESM is entirely optional.
📖 Full migration guide
Upgrading
Upgrade the CLI first, since the upgrade command ships with it:
Then, from the root of your project:
nest upgrademoves every@nestjs/*package to its v12-compatible major at once and applies the mechanical parts of the migration for you —nest-cli.jsonwebpack options, the GraphQLplayground→graphiqlrename and subscriptions transport swap, the NATS package replacement,@nestjs/configvalidation options, Jest and Joi bumps — then prints a report of everything it changed and everything you still need to review by hand. Run it with--dry-runfirst to see that report without touching your files.It deliberately does not migrate your project to ESM, Vitest, or oxlint. Those are the defaults for newly generated projects; existing projects adopt them on their own schedule.
Node.js: v12 requires Node.js v20.19+ or v22.12+. Both
require(esm)and the ESM packages depend on it; the upgrade command refuses to run on older releases (including the 21.x line). The latest active LTS is recommended.Highlights
ESM packages
All core Nest packages now ship as ESM. Thanks to
require(esm)in modern Node.js, most existing CommonJS applications continue to work without a rewrite. Review custom bootstrapping scripts, build tooling, and test runners if they assume CommonJS-only packages.nest newnow asks whether to scaffold a CommonJS or an ESM project.Standard Schema validation
Route parameter decorators —
@Body(),@Query(),@Param(),@RawBody()— accept a newschemaoption, designed for Standard Schema compatible libraries such as Zod, Valibot, and ArkType:The decorator only attaches metadata; register the new
StandardSchemaValidationPipeto validate against it:The same schemas feed OpenAPI generation. The decorator-based
class-validatorworkflow remains fully supported, with no plan to remove it.Standard Schema serialization
StandardSchemaSerializerInterceptorvalidates and transforms outgoing responses with the same ecosystem:Pick per use case:
ValidationPipe/ClassSerializerInterceptorfor class-based DTOs, the Standard Schema variants when your schemas already exist.Native observability —
@nestjs/observeThe official NestJS Observe SDK plugs into Nest's own request lifecycle through the
instrumentapplication option, rather than patching the HTTP server like a generic APM agent. Requests, jobs, errors, and traces are reported in terms of your controllers, providers, resolvers, and queue consumers:Auto-instrumentation covers HTTP, GraphQL, gRPC, and microservice transports, plus queue consumers and cron runs — no manual span wiring and no collector to run. Opt-in and new; nothing to migrate.
nest newandnest upgradecan wire it up for you (--observe). See the Observability chapter.Config module on Standard Schema
@nestjs/configmoves from Joi-specific validation to Standard Schema.validationSchemanow accepts any compatible schema:Existing Joi schemas still work with two caveats: upgrade to Joi v18+ (the first release implementing Standard Schema), and move library-specific settings under
validationOptions.libraryOptions.Route conflict diagnostics
Routes are registered in declaration order, so on order-sensitive adapters
@Get(':id')can silently shadow a@Get('me')declared after it. Two opt-in options surface this:Both default to the previous behavior, so nothing changes unless you set them.
Machine-readable error codes
HttpExceptionOptionsaccepts anerrorCodethat is serialized into the response body, so clients branch on a stable identifier instead of parsing message strings:Structured logging params
ConsoleLoggernow treats plain objects passed after the message as structured params of the same log entry instead of separate records:In JSON mode they nest under
params, or spread into the root withflattenParams. On by default; setstructuredParams: falseto restore the old behavior.CLI (
@nestjs/cliv12)The CLI was rebuilt in nestjs/nest-cli#3280: the entire source migrated to ESM, tests moved from Jest to Vitest, e2e tests were added for every command, and command classes were refactored to take typed context objects instead of untyped inputs and option arrays.
New commands
nest upgrade(aliasupdate) — upgrades a v11 project to v12 and applies the migration steps described above.nest deploy— deploys your application to the cloud via Mau, installing@nestjs/mauon first use and forwarding every argument straight through.Defaults and tooling
--webpack/--webpackPathflags (and theirwebpack/webpackConfigPathcounterparts innest-cli.json) are deprecated in favor of--builder rspack.decoratorschematic generates decorators using the preferredReflector.createDecorator()form. Theangularschematic has been removed.New options
nest build/nest start:--rspackPath [path],--emit-declarations(SWC),--no-type-check,--silentnest build:--parallel [concurrency], for building monorepo projects in parallel with--allnest-cli.json:includeLibraryAssets, for copying library assets into an application buildBreaking changes
require(esm)keeps CommonJS apps working. Review custom bootstrapping, bundler, and test-runner config.natspackage is replaced by@nats-io/transport-nodenpm uninstall nats && npm install @nats-io/transport-node; update direct imports. Packets are now serialized as JSON strings and custom deserializers receive the full NATS message — read payloads withmsg.json().subscriptions-transport-wssupport removedgraphql-ws; the protocols are wire-incompatible, so clients must be updated. ReviewonConnectcallbacks.playgroundwithgraphiql; pass an options object to customize.@nestjs/configvalidates through Standard SchemavalidationOptions.libraryOptions.ArgumentMetadatais now genericConsoleLoggerstructured params on by defaultstructuredParams: falseto restore the previous output.--builder rspack.angularschematic removedMost of these are handled automatically by
nest upgrade.Also in this release
ValidationPipeerror format — a new option controls the shape of validation error responses.GrpcExceptionFilterand status-specific exceptions map errors to proper gRPC status codes instead ofUNKNOWN.@MessagePattern()and@EventPattern()accept aRegExpon the Kafka transport.REQUESTtoken.handleDisconnectcan receive the reason for the disconnection.Thanks
Thank you to everyone who contributed code, issues, reproductions, and reviews to this release. 💛
If NestJS helps you build your products, consider supporting the project.
nestjs/nest (@nestjs/platform-express)
v12.0.1Compare Source
v12.0.0Compare Source
nestjs/nest (@nestjs/testing)
v12.0.1Compare Source
v12.0.0Compare Source
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.