duckdb 0.9.2-dev12.0 → 0.9.2-dev16.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.
@@ -40,7 +40,7 @@ jobs:
40
40
  strategy:
41
41
  matrix:
42
42
  # node.js current support policy to be found at https://github.com/duckdb/duckdb-node/tree/main/#Supported-Node-versions
43
- node: [ '12', '14', '16', '17', '18', '19', '20' ]
43
+ node: [ '12', '14', '16', '17', '18', '19', '20', '21']
44
44
  target_arch: [ x64, arm64 ]
45
45
  isRelease:
46
46
  - ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
@@ -84,6 +84,9 @@ jobs:
84
84
  - isRelease: false
85
85
  node: 20
86
86
  target_arch: arm64
87
+ - isRelease: false
88
+ node: 21
89
+ target_arch: arm64
87
90
 
88
91
  steps:
89
92
  - uses: actions/checkout@v3
@@ -130,7 +133,7 @@ jobs:
130
133
  strategy:
131
134
  matrix:
132
135
  target_arch: [ x64, arm64 ]
133
- node: [ '12', '14', '16', '17', '18', '19', '20' ]
136
+ node: [ '12', '14', '16', '17', '18', '19', '20', '21']
134
137
  isRelease:
135
138
  - ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
136
139
  exclude:
@@ -189,7 +192,7 @@ jobs:
189
192
 
190
193
  strategy:
191
194
  matrix:
192
- node: [ '12', '14', '16', '17', '18', '19', '20' ]
195
+ node: [ '12', '14', '16', '17', '18', '19', '20', '21']
193
196
  isRelease:
194
197
  - ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
195
198
  exclude:
@@ -205,6 +208,8 @@ jobs:
205
208
  node: 18
206
209
  - isRelease: false
207
210
  node: 19
211
+ - isRelease: false
212
+ node: 20
208
213
 
209
214
  steps:
210
215
  - uses: actions/setup-python@v4
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 16, Node 18 and Node 20.
104
+ We actively support only LTS and In-Support Node versions, as per July 2023, they are: Node 18, Node 20 and Node 21.
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 10, 12, 14, 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 10, 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
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
4
  "types": "./lib/duckdb.d.ts",
5
- "version": "0.9.2-dev12.0",
5
+ "version": "0.9.2-dev16.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {