Skip to content

Commit c4659eb

Browse files
authored
Merge pull request TryGhost#952 from SebastianSchmidt/master
Upgrade node-pre-gyp to version 0.9.0
2 parents a469960 + f937dea commit c4659eb

5 files changed

Lines changed: 8 additions & 38 deletions

File tree

.travis.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,10 @@ matrix:
6060
apt:
6161
sources: [ 'ubuntu-toolchain-r-test','llvm-toolchain-precise-3.5', 'gcc-multilib', 'g++-multilib', 'libsqlite3-dev:i386' ]
6262
packages: [ 'clang-3.5']
63-
- os: linux
64-
compiler: clang
65-
env: NODE_VERSION="0.10"
66-
addons:
67-
apt:
68-
sources: [ 'ubuntu-toolchain-r-test','llvm-toolchain-precise-3.5', 'gcc-multilib', 'g++-multilib', 'libsqlite3-dev:i386' ]
69-
packages: [ 'clang-3.5']
7063
# test building against external sqlite
7164
- os: linux
7265
compiler: clang
73-
env: NODE_VERSION="0.10" EXTERNAL_SQLITE=true PUBLISHABLE=false
66+
env: NODE_VERSION="8" EXTERNAL_SQLITE=true PUBLISHABLE=false
7467
addons:
7568
apt:
7669
sources: [ 'ubuntu-toolchain-r-test','llvm-toolchain-precise-3.5', 'gcc-multilib', 'g++-multilib', 'libsqlite3-dev:i386' ]
@@ -97,9 +90,6 @@ matrix:
9790
- os: osx
9891
compiler: clang
9992
env: NODE_VERSION="4" # node abi 46
100-
- os: osx
101-
compiler: clang
102-
env: NODE_VERSION="0.10" # node abi 11
10393

10494
env:
10595
global:

CHANGELOG.md

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

3+
## [Unreleased]
4+
5+
- Drop support for Node v0.10 and v.12
6+
- Upgrade to node-pre-gyp@0.9.0
7+
38
## 3.1.13
49

510
- Attempt to fix regression of #866

README.md

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

1010
## Supported platforms
1111

12-
The `sqlite3` module works with Node.js v0.10.x, v0.12.x, v4.x, v5.x, v6.x and v7.x.
12+
The `sqlite3` module works with Node.js v4.x, v5.x, v6.x and v7.x.
1313

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

appveyor.yml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,6 @@ environment:
44
node_pre_gyp_secretAccessKey:
55
secure: 1amwJJw9fu0j6dXnc5KsAQbSYf7Cjw/dapT6OZWABa6nc52grkKeLQ+DGaOfQz8i
66
matrix:
7-
- nodejs_version: 0.10
8-
platform: x86
9-
- nodejs_version: 0.10
10-
platform: x64
11-
- nodejs_version: 0.12
12-
platform: x86
13-
- nodejs_version: 0.12
14-
platform: x64
157
- nodejs_version: 4
168
platform: x64
179
- nodejs_version: 4
@@ -36,23 +28,6 @@ environment:
3628
platform: x64
3729
- nodejs_version: 9
3830
platform: x86
39-
# custom visual studio 2015 builds
40-
- nodejs_version: 0.10.40
41-
platform: x86
42-
msvs_toolset: 14
43-
TOOLSET_ARGS: --dist-url=https://s3.amazonaws.com/mapbox/node-cpp11 --toolset=v140
44-
- nodejs_version: 0.10.40
45-
platform: x64
46-
msvs_toolset: 14
47-
TOOLSET_ARGS: --dist-url=https://s3.amazonaws.com/mapbox/node-cpp11 --toolset=v140
48-
- nodejs_version: 0.12.7
49-
platform: x86
50-
msvs_toolset: 14
51-
TOOLSET_ARGS: --dist-url=https://s3.amazonaws.com/mapbox/node-cpp11 --toolset=v140
52-
- nodejs_version: 0.12.7
53-
platform: x64
54-
msvs_toolset: 14
55-
TOOLSET_ARGS: --dist-url=https://s3.amazonaws.com/mapbox/node-cpp11 --toolset=v140
5631

5732
os: Visual Studio 2015
5833

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"dependencies": {
4040
"nan": "~2.8.0",
41-
"node-pre-gyp": "~0.6.38"
41+
"node-pre-gyp": "~0.9.0"
4242
},
4343
"bundledDependencies": [
4444
"node-pre-gyp"

0 commit comments

Comments
 (0)