Skip to content

Commit 0ffea2d

Browse files
authored
Merge branch 'master' into napi
2 parents 18c37ae + afa2207 commit 0ffea2d

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 4.2.0
4+
- electron: Electron v8, v8.1.x & v8.2.x [#1294](https://github.com/mapbox/node-sqlite3/pull/1294) [#1308](https://github.com/mapbox/node-sqlite3/pull/1308)
5+
- sqlite3: update to 3.31.1 (3310100) [#1289](https://github.com/mapbox/node-sqlite3/pull/1289)
6+
- webpack: split sqlite3-binding.js out so that it could be override by webpack [#1268](https://github.com/mapbox/node-sqlite3/pull/1268)
7+
- sqlite3: enable 'SQLITE_ENABLE_DBSTAT_VTAB=1' [#1281](https://github.com/mapbox/node-sqlite3/pull/1281)
8+
- deps: remove request [#1287](https://github.com/mapbox/node-sqlite3/pull/1287)
9+
- deps: alternative update of node-gyp for electron (v1 - v4), windows [#1283](https://github.com/mapbox/node-sqlite3/pull/1283)
10+
- electron: fix dist url [#1282](https://github.com/mapbox/node-sqlite3/pull/1282)
11+
- docs: Added json1 support note [#1303](https://github.com/mapbox/node-sqlite3/pull/1303)
12+
313
## 4.1.1
414
- Electron v6.1 and v7 support [#1237](https://github.com/mapbox/node-sqlite3/pull/1237)
515
- Electron v7.1 support [#1254](https://github.com/mapbox/node-sqlite3/pull/1254)

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ Asynchronous, non-blocking [SQLite3](https://sqlite.org/) bindings for [Node.js]
1111

1212
## Supported platforms
1313

14-
The `sqlite3` module works with Node.js v10.x, v11.x, v12.x and v13.x.
14+
The `sqlite3` module works with:
15+
* Node.js v11.x, v12.x, v13.x and v14.x.
16+
* Electron v6.0.x, v6.1.x, v7.0.x, v7.1.x, v8.0.x, v8.1.x and v8.2.x
1517

1618
Binaries for most Node versions and platforms are provided by default via [node-pre-gyp](https://github.com/mapbox/node-pre-gyp).
1719

deps/sqlite3.gyp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@
8888
'SQLITE_ENABLE_FTS4',
8989
'SQLITE_ENABLE_FTS5',
9090
'SQLITE_ENABLE_JSON1',
91-
'SQLITE_ENABLE_RTREE'
91+
'SQLITE_ENABLE_RTREE',
92+
'SQLITE_ENABLE_DBSTAT_VTAB=1'
9293
],
9394
},
9495
'cflags_cc': [
@@ -102,7 +103,8 @@
102103
'SQLITE_ENABLE_FTS4',
103104
'SQLITE_ENABLE_FTS5',
104105
'SQLITE_ENABLE_JSON1',
105-
'SQLITE_ENABLE_RTREE'
106+
'SQLITE_ENABLE_RTREE',
107+
'SQLITE_ENABLE_DBSTAT_VTAB=1'
106108
],
107109
'export_dependent_settings': [
108110
'action_before_build',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sqlite3",
33
"description": "Asynchronous, non-blocking SQLite3 bindings",
4-
"version": "4.1.1",
4+
"version": "4.2.0",
55
"homepage": "https://github.com/mapbox/node-sqlite3",
66
"author": {
77
"name": "MapBox",

0 commit comments

Comments
 (0)