Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions ai-platform/snippets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
"test": "c8 mocha -p -j 2 --timeout 2400000 test/*.js"
},
"dependencies": {
"@google-cloud/aiplatform": "^3.0.0",
"@google-cloud/bigquery": "^7.0.0",
"@google-cloud/aiplatform": "^6.0.0",
"@google-cloud/bigquery": "^8.0.0",
"@google-cloud/storage": "^7.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"chai": "^4.5.0",
"mocha": "^10.0.0",
"uuid": "^10.0.0",
"sinon": "^18.0.0"
"c8": "^11.0.0",
"chai": "^6.0.0",
"mocha": "^11.0.0",
"uuid": "^13.0.0",
"sinon": "^21.0.0"
}
}

8 changes: 4 additions & 4 deletions appengine/analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
},
"type": "module",
"engines": {
"node": "20.x"
"node": "24.x"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Node.js 24 is not yet a Long Term Support (LTS) release. For production applications, it is recommended to use the latest active LTS version to ensure stability and security support.

},
"scripts": {
"start": "node app.js",
"system-test": "c8 mocha -p -j 2 --exit test/*.test.js",
"test": "npm run system-test"
},
"dependencies": {
"express": "^4.16.4",
"express": "^5.0.0",
"node-fetch": "^3.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"supertest": "^7.0.0"
}
}
6 changes: 3 additions & 3 deletions appengine/building-an-app/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"author": "Google Inc.",
"license": "Apache-2.0",
"dependencies": {
"express": "^4.18.2"
"express": "^5.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"supertest": "^7.0.0"
}
}
10 changes: 5 additions & 5 deletions appengine/building-an-app/update/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"engines": {
"node": "20.x.x"
"node": "24.x"
},
"author": "Google Inc.",
"license": "Apache-2.0",
"dependencies": {
"express": "^4.18.2"
"express": "^5.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"proxyquire": "^2.1.3",
"sinon": "^18.0.0",
"sinon": "^21.0.0",
"supertest": "^7.0.0"
}
}
10 changes: 5 additions & 5 deletions appengine/datastore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"engines": {
"node": "20.x"
"node": "24.x"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Node.js 24 is not yet a Long Term Support (LTS) release. For production applications, it is recommended to use the latest active LTS version to ensure stability and security support.

},
"scripts": {
"start": "node app.js",
"system-test": "c8 mocha -p -j 2 --exit test/*.test.js",
"test": "npm run system-test"
},
"dependencies": {
"@google-cloud/datastore": "^9.0.0",
"express": "^4.16.4"
"@google-cloud/datastore": "^10.0.0",
"express": "^5.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"supertest": "^7.0.0"
}
}
12 changes: 6 additions & 6 deletions appengine/endpoints/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"engines": {
"node": "20.x"
"node": "24.x"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Node.js 24 is not yet a Long Term Support (LTS) release. For production applications, it is recommended to use the latest active LTS version to ensure stability and security support.

},
"scripts": {
"deploy": "gcloud app deploy",
Expand All @@ -19,14 +19,14 @@
"test": "npm run unit-test"
},
"dependencies": {
"express": "^4.16.4"
"express": "^5.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"chai": "^4.5.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"chai": "^6.0.0",
"mocha": "^11.0.0",
"proxyquire": "^2.1.0",
"sinon": "^18.0.0",
"sinon": "^21.0.0",
"supertest": "^7.0.0",
"wait-port": "^1.0.4"
}
Expand Down
6 changes: 3 additions & 3 deletions appengine/hello-world/flexible/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"test": "c8 mocha -p -j 2 --exit test/*.test.js"
},
"dependencies": {
"express": "^4.17.1"
"express": "^5.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"supertest": "^7.0.0"
}
}
6 changes: 3 additions & 3 deletions appengine/hello-world/standard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"test": "c8 mocha -p -j 2 --exit test/*.test.js"
},
"dependencies": {
"express": "^4.17.1"
"express": "^5.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"supertest": "^7.0.0"
}
}
10 changes: 5 additions & 5 deletions appengine/memcached/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": "20.x"
"node": "24.x"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Node.js 24 is not yet a Long Term Support (LTS) release. For production applications, it is recommended to use the latest active LTS version to ensure stability and security support.

},
"scripts": {
"start": "node app.js",
"test": "c8 mocha -p -j 2 --exit test/*.test.js"
},
"dependencies": {
"express": "^4.16.4",
"express": "^5.0.0",
"memjs": "^1.2.0"
},
"devDependencies": {
"c8": "^10.0.0",
"chai": "^4.5.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"chai": "^6.0.0",
"mocha": "^11.0.0",
"wait-port": "^1.0.4"
}
}
6 changes: 3 additions & 3 deletions appengine/metadata/flexible/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"test": "npm run system-test"
},
"dependencies": {
"express": "^4.17.1",
"express": "^5.0.0",
"node-fetch": "^3.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"supertest": "^7.0.0"
}
}
8 changes: 4 additions & 4 deletions appengine/metadata/standard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
},
"type": "module",
"engines": {
"node": "20.x"
"node": "24.x"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Node.js 24 is not yet a Long Term Support (LTS) release. For production applications, it is recommended to use the latest active LTS version to ensure stability and security support.

},
"scripts": {
"system-test": "c8 mocha -p -j 2 --exit test/*.test.js",
"test": "npm run system-test"
},
"dependencies": {
"express": "^4.17.1",
"express": "^5.0.0",
"node-fetch": "^3.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"supertest": "^7.0.0"
}
}
16 changes: 8 additions & 8 deletions appengine/pubsub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": "20.x"
"node": "24.x"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Node.js 24 is not yet a Long Term Support (LTS) release. For production applications, it is recommended to use the latest active LTS version to ensure stability and security support.

},
"scripts": {
"start": "node app.js",
"test": "c8 mocha -p -j 2 test/*.test.js --timeout=30000 --exit"
},
"dependencies": {
"@google-cloud/pubsub": "^4.0.0",
"express": "^4.17.1",
"google-auth-library": "^9.0.0",
"@google-cloud/pubsub": "^5.0.0",
"express": "^5.0.0",
"google-auth-library": "^10.0.0",
"pug": "^3.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"chai": "^4.5.0",
"c8": "^11.0.0",
"chai": "^6.0.0",
"jsonwebtoken": "^9.0.0",
"mocha": "^10.0.0",
"mocha": "^11.0.0",
"proxyquire": "^2.1.3",
"sinon": "^18.0.0",
"sinon": "^21.0.0",
"supertest": "^7.0.0",
"wait-port": "^1.0.4"
}
Expand Down
8 changes: 4 additions & 4 deletions appengine/static-files/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": "20.x"
"node": "24.x"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Node.js 24 is not yet a Long Term Support (LTS) release. For production applications, it is recommended to use the latest active LTS version to ensure stability and security support.

},
"scripts": {
"start": "node app.js",
"test": "c8 mocha -p -j 2 --exit test/*.test.js --url localhost:8080/static/main.css"
},
"dependencies": {
"express": "^4.16.4",
"express": "^5.0.0",
"pug": "^3.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"mocha": "^10.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"supertest": "^7.0.0"
}
}
18 changes: 9 additions & 9 deletions appengine/storage/flexible/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
},
"dependencies": {
"@google-cloud/storage": "^7.0.0",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"express": "^5.0.0",
"multer": "^2.0.0",
"pug": "^3.0.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/multer": "^1.4.7",
"@types/express": "^5.0.0",
"@types/multer": "^2.0.0",
"@types/proxyquire": "^1.3.28",
"@types/supertest": "^6.0.0",
"@types/uuid": "^10.0.0",
"c8": "^10.0.0",
"mocha": "^10.2.0",
"@types/supertest": "^7.0.0",
"@types/uuid": "^11.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"proxyquire": "^2.1.3",
"supertest": "^7.0.0",
"uuid": "^10.0.0"
"uuid": "^13.0.0"
}
}
18 changes: 9 additions & 9 deletions appengine/storage/standard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
},
"dependencies": {
"@google-cloud/storage": "^7.0.0",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"express": "^5.0.0",
"multer": "^2.0.0",
"pug": "^3.0.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/multer": "^1.4.7",
"@types/express": "^5.0.0",
"@types/multer": "^2.0.0",
"@types/proxyquire": "^1.3.28",
"@types/supertest": "^6.0.0",
"@types/uuid": "^10.0.0",
"c8": "^10.0.0",
"mocha": "^10.2.0",
"@types/supertest": "^7.0.0",
"@types/uuid": "^11.0.0",
"c8": "^11.0.0",
"mocha": "^11.0.0",
"proxyquire": "^2.1.3",
"supertest": "^7.0.0",
"uuid": "^10.0.0"
"uuid": "^13.0.0"
}
}
18 changes: 9 additions & 9 deletions appengine/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": "20.x"
"node": "24.x"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Node.js 24 is not yet a Long Term Support (LTS) release. For production applications, it is recommended to use the latest active LTS version to ensure stability and security support.

},
"scripts": {
"prepare": "npm run gcp-build",
Expand All @@ -23,16 +23,16 @@
},
"dependencies": {
"@typescript-eslint/parser": "^8.0.0",
"express": "^4.16.3"
"express": "^5.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.0.0",
"c8": "^10.0.0",
"chai": "^4.5.0",
"gts": "^5.0.0",
"mocha": "^10.2.0",
"typescript": "^5.0.0",
"@types/express": "^5.0.0",
"@types/node": "^24.0.0",
"c8": "^11.0.0",
"chai": "^6.0.0",
"gts": "^7.0.0",
"mocha": "^11.0.0",
"typescript": "^6.0.0",
"wait-port": "^1.0.0"
}
}
Loading