-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update nest to v9 #42
Conversation
package.json
Outdated
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "@adminjs/nestjs", | |||
"version": "5.0.0", | |||
"version": "5.0.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't update the version manually, we use semantic-release
library to create versions automatically, more info here: https://github.com/SoftwareBrothers/adminjs/blob/master/CONTRIBUTING.md#development
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, too
package.json
Outdated
@@ -18,16 +18,16 @@ | |||
} | |||
}, | |||
"peerDependencies": { | |||
"@nestjs/common": "^8.2.6", | |||
"@nestjs/core": "^8.2.6", | |||
"@nestjs/common": "^9.0.5", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If there are no breaking changes required in the code, can we change the version to:
"@nestjs/common": ">=9.0.5",
"@nestjs/core": ">=9.0.5",
This should prevent us from having to create more bump releases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
## [5.0.1](v5.0.0...v5.0.1) (2022-08-12) ### Bug Fixes * **deps:** update nest to >=v9 ([#42](https://github.com/SoftwareBrothers/adminjs-nestjs/issues/42))([@serembon](https://github.com/serembon)) ([81d127c](81d127c))
🎉 This PR is included in version 5.0.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Updated Nestjs deps to v9
Closes #43