Skip to content

Commit 9b507a2

Browse files
authored
4.0.5 (#1098) [publish binary]
* 4.0.5 * SQLite 3.26 * electron 4
1 parent a8c34ea commit 9b507a2

File tree

4 files changed

+28
-1
lines changed

4 files changed

+28
-1
lines changed

.travis.yml

+11
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,14 @@ matrix:
108108
compiler: clang
109109
env: NODE_VERSION="4" # node abi 46
110110
# electron Linux
111+
- os: linux
112+
compiler: clang
113+
env: NODE_VERSION="6" ELECTRON_VERSION="4.0.0"
114+
dist: trusty # needed for libc6 / 'version `GLIBC_2.17` not found' error on precise
115+
addons:
116+
apt:
117+
sources: [ 'ubuntu-toolchain-r-test','llvm-toolchain-precise-3.5', 'gcc-multilib', 'g++-multilib', 'libsqlite3-dev:i386' ]
118+
packages: [ 'clang-3.5', 'libstdc++-4.9-dev']
111119
- os: linux
112120
compiler: clang
113121
env: NODE_VERSION="6" ELECTRON_VERSION="3.0.6"
@@ -153,6 +161,9 @@ matrix:
153161
sources: [ 'ubuntu-toolchain-r-test','llvm-toolchain-precise-3.5', 'gcc-multilib', 'g++-multilib', 'libsqlite3-dev:i386' ]
154162
packages: [ 'clang-3.5']
155163
# electron MacOs
164+
- os: osx
165+
compiler: clang
166+
env: NODE_VERSION="6" ELECTRON_VERSION="4.0.0"
156167
- os: osx
157168
compiler: clang
158169
env: NODE_VERSION="6" ELECTRON_VERSION="3.0.6"

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
4+
## 4.0.5
5+
- **SECURITY:** Upgrade SQLite to 3.26.0 [#1088](https://github.com/mapbox/node-sqlite3/pull/1088)
6+
- add constants for file open (shared databases) [#1078](https://github.com/mapbox/node-sqlite3/pull/1078)
7+
- Allow specifying the python to use [#1089](https://github.com/mapbox/node-sqlite3/pull/1089)
8+
39
## 4.0.4
410
- Add NodeJS 11 support [#1072](https://github.com/mapbox/node-sqlite3/pull/1072)
511
- Add electron osx 3.0.0 support [#1071](https://github.com/mapbox/node-sqlite3/pull/1071)

appveyor.yml

+10
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,16 @@ environment:
3535
- nodejs_version: 11
3636
platform: x86
3737
# electron
38+
- nodejs_version: 10
39+
platform: x64
40+
NODE_RUNTIME: electron
41+
NODE_RUNTIME_VERSION: 4.0.0
42+
TOOLSET_ARGS: --dist-url=https://atom.io/download/electron
43+
- nodejs_version: 10
44+
platform: x86
45+
NODE_RUNTIME: electron
46+
NODE_RUNTIME_VERSION: 4.0.0
47+
TOOLSET_ARGS: --dist-url=https://atom.io/download/electron
3848
- nodejs_version: 10
3949
platform: x64
4050
NODE_RUNTIME: electron

package.json

+1-1
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.0.4",
4+
"version": "4.0.5",
55
"homepage": "http://github.com/mapbox/node-sqlite3",
66
"author": {
77
"name": "MapBox",

0 commit comments

Comments
 (0)