Skip to content

Commit b724569

Browse files
committed
Enable also node 22, not on Windows
1 parent 9c06b60 commit b724569

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/NodeJS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
strategy:
4949
matrix:
5050
# node.js current support policy to be found at https://github.com/duckdb/duckdb-node/tree/main/#Supported-Node-versions
51-
node: [ '12', '14', '16', '17', '18', '19', '20', '21']
51+
node: [ '12', '14', '16', '17', '18', '19', '20', '21', '22']
5252
target_arch: [ x64, arm64 ]
5353
isRelease:
5454
- ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
@@ -124,7 +124,7 @@ jobs:
124124
strategy:
125125
matrix:
126126
target_arch: [ x64, arm64 ]
127-
node: [ '16', '17', '18', '19', '20', '21']
127+
node: [ '16', '17', '18', '19', '20', '21', '22']
128128
isRelease:
129129
- ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
130130
exclude:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ var stmt = con.prepare('select ?::INTEGER as fortytwo', function(err, stmt) {
101101
```
102102

103103
## Supported Node versions
104-
We actively support only LTS and In-Support Node versions, as per July 2023, they are: Node 18, Node 20 and Node 21.
104+
We actively support only LTS and In-Support Node versions, as per July 2023, they are: Node 18, Node 20 and Node 21. For OSX and Linux targets, also Node 22 is available.
105105
Release schedule for Node.js can be checked here: https://github.com/nodejs/release#release-schedule.
106106

107-
We currently bundle and test DuckDB also for Node 10, 12, 14, 16, 17 and 19. We plan of going so going forward as long as the tooling supports it.
107+
We currently bundle and test DuckDB also for Node 12, 14, 16, 17 and 19. We plan of going so going forward as long as the tooling supports it.
108108
As per July 2023, Node 15 has been removed from the supported versions.
109109

110110
## Development

0 commit comments

Comments
 (0)