Skip to content

Commit

Permalink
Support NestJS 11 (#1216)
Browse files Browse the repository at this point in the history
Support NestJS v11:

- add NestJS 11 in package's peerDependencies
- bump @Angular-devkit to v19: required with `@nestjs/schematics` see
https://github.com/nestjs/schematics/releases/tag/11.0.0

Fixes #1215
  • Loading branch information
jmcdo29 authored Jan 27, 2025
2 parents 4265ca9 + ce3d4f4 commit bc3c7f4
Show file tree
Hide file tree
Showing 6 changed files with 504 additions and 459 deletions.
7 changes: 7 additions & 0 deletions .changeset/mighty-mangos-smell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'nest-commander-schematics': minor
'nest-commander-testing': minor
'nest-commander': minor
---

Support NestJS v11
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
"homepage": "https://jmcdo29.github.io/nest-commander",
"devDependencies": {
"@algolia/client-search": "^5.0.0",
"@angular-devkit/core": "17.3.8",
"@angular-devkit/schematics": "17.3.8",
"@angular-devkit/schematics-cli": "14.0.5",
"@angular-devkit/core": "19.1.3",
"@angular-devkit/schematics": "19.1.3",
"@angular-devkit/schematics-cli": "19.1.3",
"@astrojs/preact": "^4.0.0",
"@astrojs/react": "^4.0.0",
"@astrojs/sitemap": "^3.0.0",
Expand All @@ -47,13 +47,13 @@
"@commitlint/config-conventional": "19.6.0",
"@docsearch/css": "^3.3.0",
"@docsearch/react": "^3.3.0",
"@golevelup/nestjs-discovery": "4.0.2",
"@golevelup/nestjs-discovery": "4.0.3",
"@mdx-js/react": "3.1.0",
"@nestjs/cli": "10.4.5",
"@nestjs/common": "10.4.4",
"@nestjs/cli": "11.0.2",
"@nestjs/common": "11.0.6",
"@nestjs/core": "10.4.4",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "10.4.4",
"@nestjs/schematics": "11.0.0",
"@nestjs/testing": "11.0.6",
"@nx/js": "20.2.1",
"@nx/node": "20.2.1",
"@nx/workspace": "20.2.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/nest-commander-schematics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
"directory": "packages/nest-commander-schematics"
},
"dependencies": {
"@angular-devkit/core": "17.3.8",
"@angular-devkit/schematics": "17.3.8",
"@angular-devkit/core": "19.0.1",
"@angular-devkit/schematics": "19.0.1",
"rxjs": "7.8.1",
"@nestjs/schematics": "10.1.4",
"@nestjs/schematics": "11.0.0",
"typescript": "5.7.2"
}
}
6 changes: 3 additions & 3 deletions packages/nest-commander-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
},
"homepage": "https://nest-commander.jaymcdoniel.dev/docs/testing/installation",
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/testing": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/testing": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"nest-commander": "^2.5.0 || ^3.0.0"
}
}
6 changes: 3 additions & 3 deletions packages/nest-commander/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
"homepage": "https://nest-commander.jaymcdoniel.dev",
"dependencies": {
"@fig/complete-commander": "^3.0.0",
"@golevelup/nestjs-discovery": "4.0.2",
"@golevelup/nestjs-discovery": "4.0.3",
"commander": "11.1.0",
"cosmiconfig": "8.3.6",
"inquirer": "8.2.6"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@types/inquirer": "^8.1.3"
}
}
Loading

0 comments on commit bc3c7f4

Please sign in to comment.