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

Add node v23.0.0 #435

Merged
merged 4 commits into from
Oct 17, 2024
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
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [17.6.0, 18.8.0, 19.0.0, 20.0.0, 21.0.0, 22.0.0]
node: [17.6.0, 18.8.0, 19.0.0, 20.0.0, 21.0.0, 22.0.0, 23.0.0]
include:
- architecture: arm64
architecture_node: x64
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [17.6.0, 18.8.0, 19.0.0, 20.0.0, 21.0.0, 22.0.0]
node: [17.6.0, 18.8.0, 19.0.0, 20.0.0, 21.0.0, 22.0.0, 23.0.0]
include:
- python_version: 3
runs-on: ubuntu-latest
Expand Down Expand Up @@ -457,7 +457,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [17.6.0, 18.8.0, 19.0.0, 20.0.0, 21.7.3, 22.9.0]
node: [17.6.0, 18.8.0, 19.0.0, 20.0.0, 21.7.3, 22.9.0, 23.0.0]
include:
- architecture: x64
python_version: "3.10"
Expand Down Expand Up @@ -502,7 +502,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-13, windows-2019]
node: [17.6.0, 18.8.0, 19.0.0, 20.0.0, 21.7.3, 22.9.0]
node: [17.6.0, 18.8.0, 19.0.0, 20.0.0, 21.7.3, 22.9.0, 23.0.0]
architecture: [x64, ia32, arm64]
include:
- python_version: "3.10"
Expand All @@ -522,6 +522,9 @@ jobs:
architecture: arm64
- os: macos-13
architecture: ia32
- os: windows-2019
architecture: ia32
node: 23.0.0
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Added

- Add node v23.0.0

### Updated

- Downgrade to gcc11 to lower needed glibc version
Expand Down