duckdb 0.10.2-dev7.0 → 0.10.2-dev9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/NodeJS.yml +2 -2
- package/README.md +2 -2
- package/package.json +1 -1
|
@@ -48,7 +48,7 @@ jobs:
|
|
|
48
48
|
strategy:
|
|
49
49
|
matrix:
|
|
50
50
|
# 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']
|
|
52
52
|
target_arch: [ x64, arm64 ]
|
|
53
53
|
isRelease:
|
|
54
54
|
- ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
|
|
@@ -124,7 +124,7 @@ jobs:
|
|
|
124
124
|
strategy:
|
|
125
125
|
matrix:
|
|
126
126
|
target_arch: [ x64, arm64 ]
|
|
127
|
-
node: [ '16', '17', '18', '19', '20', '21']
|
|
127
|
+
node: [ '16', '17', '18', '19', '20', '21', '22']
|
|
128
128
|
isRelease:
|
|
129
129
|
- ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
|
|
130
130
|
exclude:
|
package/README.md
CHANGED
|
@@ -101,10 +101,10 @@ var stmt = con.prepare('select ?::INTEGER as fortytwo', function(err, stmt) {
|
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
## 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.
|
|
105
105
|
Release schedule for Node.js can be checked here: https://github.com/nodejs/release#release-schedule.
|
|
106
106
|
|
|
107
|
-
We currently bundle and test DuckDB also for Node
|
|
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.
|
|
108
108
|
As per July 2023, Node 15 has been removed from the supported versions.
|
|
109
109
|
|
|
110
110
|
## Development
|