Skip to content

Commit a619119

Browse files
authored
Bumps minimum node engine to 8+ (#4474)
* Use node 8 as development environment * fixup! Use node 8 as development environment * bump node to 8.10 * Targets node 8 for everything * Run npm install so lock file is up to date * Use push adapter v3 * Deflake a test on ParseUser * Adds slight delay after logout * Ensure we wait even if call fails * Use node carbon
1 parent 77ed10f commit a619119

File tree

8 files changed

+12942
-17
lines changed

8 files changed

+12942
-17
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"presets": [
77
["env", {
88
"targets": {
9-
"node": "6.11.4"
9+
"node": "8"
1010
}
1111
}]
1212
]

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8.10

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ stage: test
2525
env:
2626
global:
2727
- COVERAGE_OPTION='./node_modules/.bin/nyc'
28-
- NODE_VERSION=6.11.4
28+
- NODE_VERSION=8.11.2
2929
matrix:
3030
- MONGODB_VERSION=3.2.13
3131
- MONGODB_VERSION=3.4.4
3232
- PARSE_SERVER_TEST_DB=postgres
3333
- PARSE_SERVER_TEST_CACHE=redis
34-
- NODE_VERSION=8.7
34+
- NODE_VERSION=stable
3535
before_install:
3636
- nvm install $NODE_VERSION
3737
- nvm use $NODE_VERSION
@@ -50,7 +50,7 @@ jobs:
5050
include:
5151
# release on github latest branch
5252
- stage: release
53-
node_js: '6.11.4'
53+
node_js: '8.10'
5454
env:
5555
before_script: skip
5656
after_script: skip

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:boron
1+
FROM node:carbon
22

33
RUN mkdir -p /parse-server
44
COPY ./ /parse-server/

0 commit comments

Comments
 (0)