Skip to content
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(release-please): release 17.0.0-4 #193

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/release-please/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"release-type": "node",
"prerelease": true,
"versioning": "prerelease",
"include-component-in-tag": false,
"changelog-sections": [
{ "type": "feat", "section": "Features", "hidden": false },
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
{ "type": "docs", "section": "Documentation", "hidden": false },
{ "type": "build", "section": "Build Related", "hidden": false },
{ "type": "chore", "section": "Chores", "hidden": false },
{ "type": "perf", "section": "Chores", "hidden": false },
{ "type": "ci", "section": "Chores", "hidden": false },
{ "type": "refactor", "section": "Chores", "hidden": false },
{ "type": "test", "section": "Chores", "hidden": false }
],
"packages": { ".": {} }
}
1 change: 1 addition & 0 deletions .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{".":"17.0.0-4"}
22 changes: 6 additions & 16 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ on:
push:
branches:
- master
- release-please
name: release-please
jobs:
release-please:
Expand All @@ -14,21 +15,10 @@ jobs:
- uses: google-github-actions/release-please-action@v4
id: release
with:
release-type: node
prerelease: beta
package-name: 'eslint-plugin-n'
changelog-types: >
[
{ "type": "feat", "section": "Features", "hidden": false },
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
{ "type": "docs", "section": "Documentation", "hidden": false },
{ "type": "build", "section": "Build Related", "hidden": false },
{ "type": "chore", "section": "Chores", "hidden": false },
{ "type": "perf", "section": "Chores", "hidden": false },
{ "type": "ci", "section": "Chores", "hidden": false },
{ "type": "refactor", "section": "Chores", "hidden": false },
{ "type": "test", "section": "Chores", "hidden": false }
]
config-file: .github/release-please/config.json
manifest-file: .github/release-please/manifest.json
target-branch: release-please

- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v4
Expand All @@ -38,7 +28,7 @@ jobs:
if: ${{ steps.release.outputs.release_created }}
- run: |
npm install
npm publish --provenance
npm publish --provenance --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
if: ${{ steps.release.outputs.release_created }}
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

## [17.0.0-4](https://github.com/eslint-community/eslint-plugin-n/compare/17.0.0-3...v17.0.0-4) (2024-02-27)


### Bug Fixes

* **no-unsupported-features:** Remove use of `static` as a variable ([#190](https://github.com/eslint-community/eslint-plugin-n/issues/190)) ([e31d868](https://github.com/eslint-community/eslint-plugin-n/commit/e31d8683b65a6f982cb91634f951afd0fe5583ae))


### Chores

* Add prerelease tag ([f38fe50](https://github.com/eslint-community/eslint-plugin-n/commit/f38fe5035178a2c8a0232215569755e855d1d17e))
* Attempt to fake the current version ([068fcd5](https://github.com/eslint-community/eslint-plugin-n/commit/068fcd5c46c7f9733d5209e04527d76253fac21d))
* Include "prerelease-type" in release manifest ([058133a](https://github.com/eslint-community/eslint-plugin-n/commit/058133a421331713ef8ee5ce379153b4395a1bb4))
* Migrate to manifest config ([59bed8c](https://github.com/eslint-community/eslint-plugin-n/commit/59bed8c7811664bf7fe6d84aa4c451ead34c225d))
* Prevent full commit scan ([4c1ae75](https://github.com/eslint-community/eslint-plugin-n/commit/4c1ae75997b9942854e93473356ca8f15b85051f))
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-n",
"version": "17.0.0-3",
"version": "17.0.0-4",
"description": "Additional ESLint's rules for Node.js",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
Expand Down