Skip to content

Bump @nestjs/core from 10.4.22 to 12.0.1 in /services/orchestrator - #48

Merged
BlockException merged 1 commit into
mainfrom
dependabot/npm_and_yarn/services/orchestrator/nestjs/core-11.1.29
Sep 3, 2026
Merged

Bump @nestjs/core from 10.4.22 to 12.0.1 in /services/orchestrator#48
BlockException merged 1 commit into
mainfrom
dependabot/npm_and_yarn/services/orchestrator/nestjs/core-11.1.29

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps @nestjs/core from 10.4.22 to 12.0.1.

Release notes

Sourced from @​nestjs/core's releases.

v12.0.0

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/observe SDK.

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:

npm i -g @nestjs/cli@latest

Then, from the root of your project:

nest upgrade

nest upgrade moves every @nestjs/* package to its v12-compatible major at once and applies the mechanical parts of the migration for you — nest-cli.json webpack options, the GraphQL playgroundgraphiql rename and subscriptions transport swap, the NATS package replacement, @nestjs/config validation 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-run first 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 new now asks whether to scaffold a CommonJS or an ESM project.

Standard Schema validation

Route parameter decorators — @Body(), @Query(), @Param(), @RawBody() — accept a new schema option, designed for Standard Schema compatible libraries such as Zod, Valibot, and ArkType:

@Post()
create(@Body({ schema: createUserSchema }) body: CreateUserDto) {
  return this.usersService.create(body);
}
</tr></table> 

... (truncated)

Commits
  • 4c751c5 chore(release): publish v12.0.1 release
  • 3c25112 chore: update peer deps
  • 6494a6c chore(release): publish v12.0.0 release
  • c9d59f2 chore: expose missing internals
  • 45485b5 fix(core): circular durable providers issue #17562
  • f94e9eb fix(core): preserve middleware arity and harden instance decorator
  • 1dcbc25 fix(core): instrument midldeware issue #17554
  • f5bf4dd docs(core): update Mercure SSE header comment to current path
  • edb0034 Merge branch 'master' into v12.0.0
  • 4535f43 chore(release): publish v11.2.1 release
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 17, 2026
@BlockException

Copy link
Copy Markdown
Owner

@copilot, behebe bitte die Mergekonflikte in diesem Pull Request.

@BlockException
BlockException requested a lite review from Copilot September 3, 2026 22:56
Bumps [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) from 10.4.22 to 12.0.1.
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v12.0.1/packages/core)

---
updated-dependencies:
- dependency-name: "@nestjs/core"
  dependency-version: 11.1.29
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump @nestjs/core from 10.4.22 to 11.1.29 in /services/orchestrator Bump @nestjs/core from 10.4.22 to 12.0.1 in /services/orchestrator Sep 3, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/services/orchestrator/nestjs/core-11.1.29 branch from 0544ada to 1677e63 Compare September 3, 2026 22:56
@BlockException
BlockException merged commit 5c006f7 into main Sep 3, 2026
1 check passed
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/services/orchestrator/nestjs/core-11.1.29 branch September 3, 2026 22:56

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟡 Changes recommended

The service’s NestJS dependencies are now on incompatible majors (core v12 alongside other @nestjs/* v10/v11), creating peer dependency conflicts that are likely to break installs and/or runtime behavior.

Once you've addressed the issues Copilot identified, you can request another Copilot review.

Pull request overview

This PR attempts to upgrade the Orchestrator service’s NestJS core runtime by bumping @nestjs/core from the 10.x line to ^12.0.1.

Changes:

  • Bump @nestjs/core dependency to ^12.0.1 in the Orchestrator service.
  • Update the Orchestrator package-lock.json to reflect @nestjs/core@12.0.1 (including its updated transitive dependencies and peer requirements).
File summaries
File Description
services/orchestrator/package.json Updates direct dependency on @nestjs/core to v12.
services/orchestrator/package-lock.json Updates resolved @nestjs/core package metadata and dependency tree to v12.
Review details

Files not reviewed (1)

  • services/orchestrator/package-lock.json: Generated file
  • Files reviewed: 1/2 changed files
  • Comments generated: 2
  • Review effort level: Lite

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Comment on lines 1302 to +1306
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/microservices": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/websockets": "^10.0.0",
"@nestjs/common": "^12.0.0",
"@nestjs/microservices": "^12.0.0",
"@nestjs/platform-express": "^12.0.0",
"@nestjs/websockets": "^12.0.0",
Comment on lines 13 to 17
"dependencies": {
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@nestjs/core": "^12.0.1",
"@nestjs/cqrs": "^11.0.3",
"@nestjs/platform-express": "^11.1.28",
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.

2 participants