Skip to content

Bump @nestjs/cqrs from 11.0.3 to 12.0.0 in /services/orchestrator - #60

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/services/orchestrator/nestjs/cqrs-12.0.0
Open

Bump @nestjs/cqrs from 11.0.3 to 12.0.0 in /services/orchestrator#60
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/services/orchestrator/nestjs/cqrs-12.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps @nestjs/cqrs from 11.0.3 to 12.0.0.

Release notes

Sourced from @​nestjs/cqrs's releases.

Release 12.0.0

What's Changed

@nestjs/cqrs is now a native ES module, and the major version is aligned with the Nest 12 release line (11.0.3 goes straight to 12.0.0).

ESM migration

The package is published as pure ESM ("type": "module", compiled with NodeNext) behind a proper exports map. The legacy root index.js / index.d.ts / index.ts shims are gone, and deep imports into build internals are no longer resolvable — import from the package root.

// ✅
import { CommandBus, EventBus, AggregateRoot } from '@nestjs/cqrs';
// ❌ no longer resolvable
import { CommandBus } from '@​nestjs/cqrs/dist/command-bus';

./package.json is exported as well, for tooling that reads the manifest.

require(esm) — CommonJS still works

You do not need to convert your app to ESM. Thanks to Node's require(esm) support, CommonJS consumers can keep requiring the package exactly as before:

const { CommandBus } = require('@nestjs/cqrs'); // still works

The . export declares import, require, and default conditions, all pointing at the same ESM build, so CJS resolution no longer fails with ERR_PACKAGE_PATH_NOT_EXPORTED.

Breaking changes

  • Node.js ^20.19.0 || >=22.12.0 is now required (engines). These are the versions where require(esm) is unflagged — older Node cannot load ESM from CommonJS at all.
  • Nest 12 is now the required peer. @nestjs/common and @nestjs/core peer ranges are ^12.0.0; support for Nest 10 and 11 has been dropped.
  • Deep imports removed. Anything reaching into @nestjs/cqrs/dist/* must import from the package root instead.
  • Root shims removed. index.js / index.d.ts at the package root no longer exist; resolution goes through the exports map.

There are no changes to the public API — command/query/event buses, handlers, sagas, AggregateRoot, decorators, and operators all behave exactly as they did in v11.

Commits
  • 9b614ae chore(): release v12.0.0
  • 7e99bda chore: upgrade to v12
  • 1de147a chore(deps): update dependency oxlint to v1.80.0 (#2349)
  • 77ccfd2 chore(deps): update nest monorepo to v11.2.3 (#2348)
  • 1b25f34 chore(deps): update dependency vite to v8.2.2 (#2347)
  • a372a0f chore(deps): update dependency oxlint to v1.79.0 (#2346)
  • 4b5af3b chore(deps): update dependency vitest to v4.1.11 (#2345)
  • c1238f2 Merge pull request #2323 from nestjs/renovate/typescript-7.x
  • 2bb511e chore(deps): update dependency typescript to v7
  • d5afbdd Merge pull request #2284 from nestjs/renovate/cimg-node-24.x
  • Additional commits viewable in compare view

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@nestjs/cqrs](https://github.com/nestjs/cqrs) from 11.0.3 to 12.0.0.
- [Release notes](https://github.com/nestjs/cqrs/releases)
- [Commits](nestjs/cqrs@11.0.3...12.0.0)

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

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 Sep 7, 2026
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