Skip to content

Commit

Permalink
Support Node.js 8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed Jun 14, 2017
1 parent 3f4ee77 commit 88bade0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -12,6 +12,7 @@ node_js:
- "5.12"
- "6.11"
- "7.10"
- "8.1"
env:
global:
# Necessary to build Node.js 0.6 on Travis CI images
Expand Down Expand Up @@ -45,6 +46,9 @@ cache:
- node_modules

before_install:
# Skip updating shrinkwrap / lock
- "npm config set shrinkwrap false"

# Setup Node.js version-specific dependencies
- "test $TRAVIS_NODE_VERSION != '0.6' || npm rm --save-dev nyc"
- "test $TRAVIS_NODE_VERSION != '0.8' || npm rm --save-dev nyc"
Expand Down
1 change: 1 addition & 0 deletions Changes.md
Expand Up @@ -8,6 +8,7 @@ you spot any mistakes.

* Add `sql` property to query `Error` objects #1462 #1628 #1629
* Add `sqlMessage` property to `Error` objects #1714
* Support Node.js 8.x
* Update `bignumber.js` to 4.0.2
* Update `readable-stream` to 2.2.9
* Use `safe-buffer` for improved Buffer API
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Expand Up @@ -16,6 +16,7 @@ environment:
- nodejs_version: "5.12"
- nodejs_version: "6.11"
- nodejs_version: "7.10"
- nodejs_version: "8.1"

services:
- mysql
Expand All @@ -25,6 +26,7 @@ cache:

install:
- ps: Install-Product node $env:nodejs_version
- npm config set shrinkwrap false
- if "%nodejs_version%" equ "0.8" npm rm --save-dev nyc
- npm rm --save-dev eslint
- if exist node_modules npm prune
Expand Down

0 comments on commit 88bade0

Please sign in to comment.