From b666546fb2d20544948654eae504f05ce8e49ff2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 27 Jan 2025 20:11:44 +0000 Subject: [PATCH] Version Packages --- .changeset/mighty-mangos-smell.md | 7 ---- .../nest-commander-schematics/CHANGELOG.md | 6 +++ .../nest-commander-schematics/package.json | 2 +- packages/nest-commander-testing/CHANGELOG.md | 37 ++++++++++++------- packages/nest-commander-testing/package.json | 2 +- packages/nest-commander/CHANGELOG.md | 6 +++ packages/nest-commander/package.json | 2 +- 7 files changed, 38 insertions(+), 24 deletions(-) delete mode 100644 .changeset/mighty-mangos-smell.md diff --git a/.changeset/mighty-mangos-smell.md b/.changeset/mighty-mangos-smell.md deleted file mode 100644 index fa87857f..00000000 --- a/.changeset/mighty-mangos-smell.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'nest-commander-schematics': minor -'nest-commander-testing': minor -'nest-commander': minor ---- - -Support NestJS v11 diff --git a/packages/nest-commander-schematics/CHANGELOG.md b/packages/nest-commander-schematics/CHANGELOG.md index 67d0dad6..918aea2f 100644 --- a/packages/nest-commander-schematics/CHANGELOG.md +++ b/packages/nest-commander-schematics/CHANGELOG.md @@ -1,5 +1,11 @@ # nest-commander-schematics +## 3.1.0 + +### Minor Changes + +- ce3d4f4: Support NestJS v11 + ## 3.0.2 ### Patch Changes diff --git a/packages/nest-commander-schematics/package.json b/packages/nest-commander-schematics/package.json index 48ac9114..369e2de6 100644 --- a/packages/nest-commander-schematics/package.json +++ b/packages/nest-commander-schematics/package.json @@ -1,6 +1,6 @@ { "name": "nest-commander-schematics", - "version": "3.0.2", + "version": "3.1.0", "description": "A set of schematics for generating questions and commands with the NestJS CLI.", "scripts": { "prebuild": "rm -rf dist", diff --git a/packages/nest-commander-testing/CHANGELOG.md b/packages/nest-commander-testing/CHANGELOG.md index 6747de80..c00eb804 100644 --- a/packages/nest-commander-testing/CHANGELOG.md +++ b/packages/nest-commander-testing/CHANGELOG.md @@ -1,5 +1,11 @@ # nest-commander-testing +## 3.4.0 + +### Minor Changes + +- ce3d4f4: Support NestJS v11 + ## 3.3.0 ### Minor Changes @@ -31,15 +37,17 @@ ### Major Changes -- d6ebe0e: Migrate `CommandRunner` from interface to abstract class and add `.command` +- d6ebe0e: Migrate `CommandRunner` from interface to abstract class and add + `.command` - This change was made so that devs could access `this.command` inside the `CommandRunner` instance - and have access to the base command object from commander. This allows for access to the `help` - commands in a programatic fashion. + This change was made so that devs could access `this.command` inside the + `CommandRunner` instance and have access to the base command object from + commander. This allows for access to the `help` commands in a programatic + fashion. To update to this version, any `implements CommandRunner` should be changed to - `extends CommandRunner`. If there is a `constructor` to the `CommandRunner` then it should also - use `super()`. + `extends CommandRunner`. If there is a `constructor` to the `CommandRunner` + then it should also use `super()`. ### Minor Changes @@ -51,9 +59,9 @@ - 3831e52: Adds a new `@Help()` decorator for custom commander help output - `nest-commander-testing` now also uses a `hex` instead of `utf-8` encoding when creating a random - js file name during the `CommandTestFactory` command. This is to help create more predictable - output names. + `nest-commander-testing` now also uses a `hex` instead of `utf-8` encoding + when creating a random js file name during the `CommandTestFactory` command. + This is to help create more predictable output names. ## 2.0.0 @@ -61,8 +69,9 @@ - ee001cc: Upgrade all Nest dependencies to version 8 - WHAT: Upgrade `@nestjs/` dependencies to v8 and RxJS to v7 WHY: To support the latest version of - Nest HOW: upgrading to Nest v8 should be all that's necessary (along with rxjs to v7) + WHAT: Upgrade `@nestjs/` dependencies to v8 and RxJS to v7 WHY: To support the + latest version of Nest HOW: upgrading to Nest v8 should be all that's + necessary (along with rxjs to v7) ## 1.2.0 @@ -70,6 +79,6 @@ - f3f687b: Allow for commands to be run indefinitely - There is a new `runWithoutClosing` method in the `CommandFactory` class. This command allows for - not having the created Nest Application get closed immediately, which should allow for the use of - indefinitely runnable commands. + There is a new `runWithoutClosing` method in the `CommandFactory` class. This + command allows for not having the created Nest Application get closed + immediately, which should allow for the use of indefinitely runnable commands. diff --git a/packages/nest-commander-testing/package.json b/packages/nest-commander-testing/package.json index cb233def..8987aa27 100644 --- a/packages/nest-commander-testing/package.json +++ b/packages/nest-commander-testing/package.json @@ -1,6 +1,6 @@ { "name": "nest-commander-testing", - "version": "3.3.0", + "version": "3.4.0", "description": "A testing utility for nest-commander. It builds on top of ideas from @nestjs/testing and is not tied to any test framework directly.", "repository": { "type": "github", diff --git a/packages/nest-commander/CHANGELOG.md b/packages/nest-commander/CHANGELOG.md index 0f87b54e..2ad8749a 100644 --- a/packages/nest-commander/CHANGELOG.md +++ b/packages/nest-commander/CHANGELOG.md @@ -1,5 +1,11 @@ # nest-commander +## 3.16.0 + +### Minor Changes + +- ce3d4f4: Support NestJS v11 + ## 3.15.0 ### Minor Changes diff --git a/packages/nest-commander/package.json b/packages/nest-commander/package.json index 6c1ea4e2..5408cea6 100644 --- a/packages/nest-commander/package.json +++ b/packages/nest-commander/package.json @@ -1,6 +1,6 @@ { "name": "nest-commander", - "version": "3.15.0", + "version": "3.16.0", "description": "A module for making CLI applications with NestJS. Decorators for running commands and separating out config parsers included. This package works on top of commander.", "repository": { "type": "github",