Skip to content
Merged
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
13 changes: 6 additions & 7 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

name: Publish

'on':
on:
# https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#release
release:
types:
Expand All @@ -27,10 +27,9 @@ jobs:
fail-fast: false
matrix:
node_version:
- 16
- 18
- 20
- 21
- 22
- 24
system:
- os: macos-13
target: x86_64-apple-darwin
Expand All @@ -41,7 +40,7 @@ jobs:
- os: buildjet-4vcpu-ubuntu-2204-arm
target: aarch64-unknown-linux-gnu
arch: arm64
- os: windows-2019
- os: windows-2025
target: x86_64-pc-windows-msvc
arch: x64
- os: macos-14
Expand Down Expand Up @@ -133,14 +132,14 @@ jobs:
needs:
- publish-github
# - publish-github-docker
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
cache: yarn
- uses: actions-rs/toolchain@v1
with:
Expand Down
14 changes: 6 additions & 8 deletions .github/workflows/typescript-napi-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: TypeScript CI
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
'on':
on:
push:
branches:
- main
pull_request: null
workflow_dispatch: null
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.system.os }}
Expand All @@ -17,11 +17,9 @@ jobs:
- stable
- beta
node_version:
- 16 # remove when 22 LTS is out
- 18
- 20
# explicitly asked for, we normally don't support non-LTS versions. Remove when Node support is dropped.
- 21
- 22
- 24
system:
- os: macos-13
target: x86_64-apple-darwin
Expand All @@ -32,7 +30,7 @@ jobs:
- os: buildjet-4vcpu-ubuntu-2204-arm
target: arm64-unknown-linux-gnu
arch: arm64
- os: windows-2019
- os: windows-2025
target: x86_64-pc-windows-msvc
arch: x64
- os: macos-14
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.11.0 (Unreleased)

### Changes

- Added support for Node 22 and 24.

### Breaking Changes

- Removed support for Node 18 and 21.

## 0.10.1

### Changed
Expand Down
Loading
Loading