Skip to content

Commit

Permalink
Version Packages (#1218)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## [email protected]

### Minor Changes

-   ce3d4f4: Support NestJS v11

## [email protected]

### Minor Changes

-   ce3d4f4: Support NestJS v11

## [email protected]

### Minor Changes

-   ce3d4f4: Support NestJS v11
  • Loading branch information
jmcdo29 authored Jan 27, 2025
2 parents bc3c7f4 + b666546 commit 6975e2f
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 24 deletions.
7 changes: 0 additions & 7 deletions .changeset/mighty-mangos-smell.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/nest-commander-schematics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# nest-commander-schematics

## 3.1.0

### Minor Changes

- ce3d4f4: Support NestJS v11

## 3.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nest-commander-schematics/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
37 changes: 23 additions & 14 deletions packages/nest-commander-testing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# nest-commander-testing

## 3.4.0

### Minor Changes

- ce3d4f4: Support NestJS v11

## 3.3.0

### Minor Changes
Expand Down Expand Up @@ -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

Expand All @@ -51,25 +59,26 @@

- 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

### Major Changes

- 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

### Minor Changes

- 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.
2 changes: 1 addition & 1 deletion packages/nest-commander-testing/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/nest-commander/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# nest-commander

## 3.16.0

### Minor Changes

- ce3d4f4: Support NestJS v11

## 3.15.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nest-commander/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 6975e2f

Please sign in to comment.