Skip to content

Commit

Permalink
Release Beta v2.0.0-beta.4
Browse files Browse the repository at this point in the history
- [FIX] Memory leak in the `ping` reply

- [BREAKING] Drop support for Node.js below `v18.18.x`
  • Loading branch information
LoboMetalurgico committed Feb 24, 2025
2 parents 9195e69 + 570f29b commit d0e4db8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gitpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id: tag
uses: anothrNick/github-tag-action@master
env:
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
CUSTOM_TAG: "v${{ fromJson(steps.set_var.outputs.packageJson).version }}"
job2:
Expand Down Expand Up @@ -52,4 +52,4 @@ jobs:
prerelease_regex: ^v[0-9]\.[0-9]\.[0-9]\-
created_tag: v${{ fromJson(steps.set_var.outputs.packageJson).version }}
env:
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
- name: Run tests
run: npm test
env:
TOKEN: ${{ secrets.TOKEN }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/packagePublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ jobs:
run: npm ci

- name: Publish to npm
run: npm publish --provenance --access public
run: npm publish --provenance --access public --tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Changelog

## v2.0.0-beta.4
- [FIX] Memory leak in the "ping" reply
- [FIX] Memory leak in the `ping` reply

- [BREAKING] Drop support for Node.js below 18.18.x
- [BREAKING] Drop support for Node.js below `v18.18.x`

## v2.0.0-beta.3
- [FIX] Fixed an issue caused by twitch sending numbers as strings in the `message` event.
Expand Down

0 comments on commit d0e4db8

Please sign in to comment.