Skip to content

Commit 0056e70

Browse files
fix: require node.js 8.13.0 and up (http/2) (GoogleCloudPlatform#1291)
1 parent b349304 commit 0056e70

66 files changed

Lines changed: 68 additions & 66 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

appengine/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1111
},
1212
"engines": {
13-
"node": ">=8"
13+
"node": ">=8.13.0"
1414
},
1515
"scripts": {
1616
"start": "node app.js",

appengine/building-an-app/build/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1515
},
1616
"engines": {
17-
"node": ">=8"
17+
"node": ">=8.13.0"
1818
},
1919
"author": "Google Inc.",
2020
"license": "Apache-2.0",

appengine/building-an-app/update/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1515
},
1616
"engines": {
17-
"node": ">=8"
17+
"node": ">=8.13.0"
1818
},
1919
"author": "Google Inc.",
2020
"license": "Apache-2.0",

appengine/cloudsql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1111
},
1212
"engines": {
13-
"node": ">=8"
13+
"node": ">=8.13.0"
1414
},
1515
"scripts": {
1616
"unit-test": "mocha test/*.test.js --timeout=60000",

appengine/cloudsql_postgresql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1111
},
1212
"engines": {
13-
"node": ">=8"
13+
"node": ">=8.13.0"
1414
},
1515
"scripts": {
1616
"unit-test": "mocha test/*.test.js --timeout=30000",

appengine/datastore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1111
},
1212
"engines": {
13-
"node": ">=8"
13+
"node": ">=8.13.0"
1414
},
1515
"scripts": {
1616
"start": "node app.js",

appengine/endpoints/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1111
},
1212
"engines": {
13-
"node": ">=8.0.0"
13+
"node": ">=8.13.0"
1414
},
1515
"scripts": {
1616
"deploy": "gcloud app deploy",

appengine/headless-chrome/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "headless-chrome-sample",
33
"engines": {
4-
"node": "8.x"
4+
"node": ">=8.13.0"
55
},
66
"version": "1.0.0",
77
"description": "An example of taking screenshot with Puppeteer (Headless Chrome) in Node.js on Google App Engine.",

appengine/hello-world/flexible/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1111
},
1212
"engines": {
13-
"node": ">=8.0.0"
13+
"node": ">=8.13.0"
1414
},
1515
"scripts": {
1616
"deploy": "gcloud app deploy",

appengine/hello-world/standard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1111
},
1212
"engines": {
13-
"node": ">=8"
13+
"node": ">=8.13.0"
1414
},
1515
"scripts": {
1616
"deploy": "gcloud app deploy",

0 commit comments

Comments
 (0)