Skip to content

Commit

Permalink
Remove support for Node 8.x (#2391)
Browse files Browse the repository at this point in the history
  • Loading branch information
timleslie authored Feb 18, 2020
1 parent 206f424 commit 517b23e
Show file tree
Hide file tree
Showing 49 changed files with 107 additions and 47 deletions.
48 changes: 48 additions & 0 deletions .changeset/forty-pianos-marry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
'@keystonejs/api-tests': minor
'@keystonejs/benchmarks': minor
'@keystonejs/demo-project-blog': minor
'@keystonejs/demo-project-meetup': minor
'@keystonejs/demo-project-todo': minor
'@keystonejs/access-control': minor
'@keystonejs/adapter-knex': minor
'@keystonejs/adapter-mongoose': minor
'@keystonejs/apollo-helpers': minor
'@keystonejs/app-admin-ui': minor
'@keystonejs/app-graphql-playground': minor
'@keystonejs/app-graphql': minor
'@keystonejs/app-next': minor
'@keystonejs/app-nuxt': minor
'@keystonejs/app-schema-router': minor
'@keystonejs/app-static': minor
'@keystonejs/auth-passport': minor
'@keystonejs/auth-password': minor
'@keystonejs/build-field-types': minor
'create-keystone-app': minor
'@keystonejs/email': minor
'@keystonejs/field-content': minor
'@keystonejs/field-views-loader': minor
'@keystonejs/fields-auto-increment': minor
'@keystonejs/fields-datetime-utc': minor
'@keystonejs/fields-markdown': minor
'@keystonejs/fields-mongoid': minor
'@keystonejs/fields-wysiwyg-tinymce': minor
'@keystonejs/fields': minor
'@keystonejs/file-adapters': minor
'@keystonejs/keystone': minor
'@keystonejs/list-plugins': minor
'@keystonejs/logger': minor
'@keystonejs/mongo-join-builder': minor
'@keystonejs/oembed-adapters': minor
'@keystonejs/session': minor
'@keystonejs/test-utils': minor
'@keystonejs/utils': minor
'@keystonejs/cypress-project-access-control': minor
'@keystonejs/cypress-project-basic': minor
'@keystonejs/cypress-project-client-validation': minor
'@keystonejs/cypress-project-login': minor
'@keystonejs/cypress-project-social-login': minor
'@keystonejs/website': minor
---

Removed support for Node 8.x, as it is [no longer in maintenance mode](https://nodejs.org/en/about/releases/).
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2
x-job-setup: &job-setup
docker:
# specify the version you desire here
- image: circleci/node:carbon-browsers
- image: circleci/node:dubnium-browsers
environment:
TEST_DATABASE_URL: postgresql://root@localhost/circle_test
KNEX_URI: 'postgres://keystone5:k3yst0n3@localhost:5432/circle_test'
Expand All @@ -19,14 +19,14 @@ x-job-setup: &job-setup
# Download and cache dependencies
x-restore-cache: &restore-cache
keys:
- v14-dependencies-{{ checksum "yarn.lock" }}
- v15-dependencies-{{ checksum "yarn.lock" }}
# fallback to using the latest cache if no exact match is found
- v14-dependencies-
- v15-dependencies-

x-save-cache: &save-cache
paths:
- node_modules
key: v14-dependencies-{{ checksum "yarn.lock" }}
key: v15-dependencies-{{ checksum "yarn.lock" }}

x-integration-steps: &integration-steps
steps:
Expand Down
2 changes: 1 addition & 1 deletion api-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"repository": "https://github.com/keystonejs/keystone.git",
"homepage": "https://github.com/keystonejs/keystone",
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"scripts": {
"go": "node fixtures/index.js"
Expand Down
2 changes: 1 addition & 1 deletion demo-projects/blog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DISABLE_LOGGING=true keystone dev",
Expand Down
2 changes: 1 addition & 1 deletion demo-projects/meetup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DISABLE_LOGGING=true keystone dev",
Expand Down
2 changes: 1 addition & 1 deletion demo-projects/todo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DISABLE_LOGGING=true keystone dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/access-control/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@keystonejs/utils": "^5.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-knex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@keystonejs/fields-auto-increment": "^5.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-mongoose/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@keystonejs/fields-mongoid": "^5.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"scripts": {
"build": "echo 'noop - see the Keystone package.json#build script'"
Expand Down
2 changes: 1 addition & 1 deletion packages/app-admin-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-graphql-playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@apollographql/graphql-playground-html": "^1.6.24",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@keystonejs/app-graphql-playground": "^5.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"next": "^9.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/app-nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"express": "^4.17.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-schema-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"peerDependencies": {
"express": "^4.17.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/app-static/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"peerDependencies": {
"express": "^4.17.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-passport/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@keystonejs/fields": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-password/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@keystonejs/fields": "^6.0.0",
Expand Down
3 changes: 3 additions & 0 deletions packages/build-field-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
"build": "rimraf lib && babel src --out-dir dist --ignore '**/__tests__/**/*','**/__mocks__/**/*'"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/helper-module-imports": "^7.7.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"homepage": "https://github.com/keystonejs/keystone",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DISABLE_LOGGING=true keystone dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DISABLE_LOGGING=true keystone dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"homepage": "https://github.com/keystonejs/keystone",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DISABLE_LOGGING=true keystone dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"homepage": "https://github.com/keystonejs/keystone",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DISABLE_LOGGING=true keystone dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/email/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"express-react-views": "^0.11.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/field-content/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@arch-ui/color-utils": "^0.0.1",
Expand Down
3 changes: 3 additions & 0 deletions packages/field-views-loader/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"main": "index.js",
"author": "The Keystone Development Team",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"loader-utils": "^1.2.3"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/fields-auto-increment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"repository": "https://github.com/keystonejs/keystone.git",
"homepage": "https://github.com/keystonejs/keystone",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@babel/runtime": "^7.7.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/fields-datetime-utc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"repository": "https://github.com/keystonejs/keystone.git",
"homepage": "https://github.com/keystonejs/keystone",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@babel/runtime": "^7.7.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/fields-markdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@arch-ui/fields": "^2.0.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/fields-mongoid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"repository": "https://github.com/keystonejs/keystone.git",
"homepage": "https://github.com/keystonejs/keystone",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@arch-ui/input": "^0.1.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/fields-wysiwyg-tinymce/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@arch-ui/fields": "^2.0.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/fields/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
Expand Down
3 changes: 3 additions & 0 deletions packages/file-adapters/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"homepage": "https://github.com/keystonejs/keystone",
"author": "The Keystone Development Team",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"aws-sdk": "^2.576.0",
"cloudinary": "^1.13.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/keystone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"bin": {
"keystone": "bin/cli.js"
Expand Down
2 changes: 1 addition & 1 deletion packages/list-plugins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "The KeystoneJS Development Team",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
"node": ">=10.0.0"
},
"dependencies": {
"@keystonejs/fields": "^6.0.2"
Expand Down
Loading

0 comments on commit 517b23e

Please sign in to comment.