diff --git a/ai-platform/snippets/package.json b/ai-platform/snippets/package.json index 4d7ad0964f8..cf54c753371 100644 --- a/ai-platform/snippets/package.json +++ b/ai-platform/snippets/package.json @@ -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", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/appengine/analytics/package.json b/appengine/analytics/package.json index 6601ad1c21d..dc46a18cffe 100644 --- a/appengine/analytics/package.json +++ b/appengine/analytics/package.json @@ -11,7 +11,7 @@ }, "type": "module", "engines": { - "node": "20.x" + "node": "24.x" }, "scripts": { "start": "node app.js", @@ -19,12 +19,12 @@ "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" } } diff --git a/appengine/building-an-app/build/package.json b/appengine/building-an-app/build/package.json index e73a78d1b24..fe8e75cb3f6 100644 --- a/appengine/building-an-app/build/package.json +++ b/appengine/building-an-app/build/package.json @@ -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" } } diff --git a/appengine/building-an-app/update/package.json b/appengine/building-an-app/update/package.json index c320fc64744..399371ac360 100644 --- a/appengine/building-an-app/update/package.json +++ b/appengine/building-an-app/update/package.json @@ -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": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/appengine/datastore/package.json b/appengine/datastore/package.json index 49cf16bb965..cd66ed2dcb7 100644 --- a/appengine/datastore/package.json +++ b/appengine/datastore/package.json @@ -10,7 +10,7 @@ "url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git" }, "engines": { - "node": "20.x" + "node": "24.x" }, "scripts": { "start": "node app.js", @@ -18,12 +18,12 @@ "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" } } diff --git a/appengine/endpoints/package.json b/appengine/endpoints/package.json index e302c181716..fdcd52ad279 100644 --- a/appengine/endpoints/package.json +++ b/appengine/endpoints/package.json @@ -10,7 +10,7 @@ "url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git" }, "engines": { - "node": "20.x" + "node": "24.x" }, "scripts": { "deploy": "gcloud app deploy", @@ -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": "^22.0.0", "supertest": "^7.0.0", "wait-port": "^1.0.4" } diff --git a/appengine/hello-world/flexible/package.json b/appengine/hello-world/flexible/package.json index 0a4ed0ec62d..b54040cdc26 100644 --- a/appengine/hello-world/flexible/package.json +++ b/appengine/hello-world/flexible/package.json @@ -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" } } diff --git a/appengine/hello-world/standard/package.json b/appengine/hello-world/standard/package.json index 9746fa5b433..44d8428d0a7 100644 --- a/appengine/hello-world/standard/package.json +++ b/appengine/hello-world/standard/package.json @@ -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" } } diff --git a/appengine/memcached/package.json b/appengine/memcached/package.json index 264c3499dbb..561f62d8515 100644 --- a/appengine/memcached/package.json +++ b/appengine/memcached/package.json @@ -6,20 +6,20 @@ "license": "Apache Version 2.0", "author": "Google Inc.", "engines": { - "node": "20.x" + "node": "24.x" }, "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" } } diff --git a/appengine/metadata/flexible/package.json b/appengine/metadata/flexible/package.json index 4ff62dd3dbd..8b30bdd4529 100644 --- a/appengine/metadata/flexible/package.json +++ b/appengine/metadata/flexible/package.json @@ -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" } } diff --git a/appengine/metadata/standard/package.json b/appengine/metadata/standard/package.json index 7e4535ebc15..0f6240a7a6a 100644 --- a/appengine/metadata/standard/package.json +++ b/appengine/metadata/standard/package.json @@ -11,19 +11,19 @@ }, "type": "module", "engines": { - "node": "20.x" + "node": "24.x" }, "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" } } diff --git a/appengine/pubsub/package.json b/appengine/pubsub/package.json index 95657ab8d93..35523d0b040 100644 --- a/appengine/pubsub/package.json +++ b/appengine/pubsub/package.json @@ -6,25 +6,25 @@ "license": "Apache Version 2.0", "author": "Google Inc.", "engines": { - "node": "20.x" + "node": "24.x" }, "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": "^22.0.0", "supertest": "^7.0.0", "wait-port": "^1.0.4" } diff --git a/appengine/static-files/package.json b/appengine/static-files/package.json index 9445aee77f6..00f8260efb7 100644 --- a/appengine/static-files/package.json +++ b/appengine/static-files/package.json @@ -6,19 +6,19 @@ "license": "Apache Version 2.0", "author": "Google Inc.", "engines": { - "node": "20.x" + "node": "24.x" }, "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" } } diff --git a/appengine/storage/flexible/package.json b/appengine/storage/flexible/package.json index a9cb78e8e14..14996d8eb54 100644 --- a/appengine/storage/flexible/package.json +++ b/appengine/storage/flexible/package.json @@ -10,18 +10,18 @@ }, "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" diff --git a/appengine/storage/standard/package.json b/appengine/storage/standard/package.json index a9cb78e8e14..14996d8eb54 100644 --- a/appengine/storage/standard/package.json +++ b/appengine/storage/standard/package.json @@ -10,18 +10,18 @@ }, "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" diff --git a/appengine/typescript/package.json b/appengine/typescript/package.json index be65b8723b2..041c9997e33 100644 --- a/appengine/typescript/package.json +++ b/appengine/typescript/package.json @@ -6,7 +6,7 @@ "license": "Apache Version 2.0", "author": "Google Inc.", "engines": { - "node": "20.x" + "node": "24.x" }, "scripts": { "prepare": "npm run gcp-build", @@ -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" } } diff --git a/appengine/websockets/package.json b/appengine/websockets/package.json index 411bf073d12..00d648c8d70 100644 --- a/appengine/websockets/package.json +++ b/appengine/websockets/package.json @@ -15,14 +15,14 @@ "e2e-test": "samples test deploy" }, "dependencies": { - "express": "^4.15.4", + "express": "^5.0.0", "pug": "^3.0.0", "socket.io": "4.7.2", "supertest": "^7.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "puppeteer": "^23.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "puppeteer": "^25.0.0" } } diff --git a/asset/snippets/package.json b/asset/snippets/package.json index cb47edd4762..be150694b29 100644 --- a/asset/snippets/package.json +++ b/asset/snippets/package.json @@ -16,18 +16,18 @@ "test": "c8 mocha -p -j 2 test --timeout 600000" }, "dependencies": { - "@google-cloud/asset": "^5.0.0", - "@google-cloud/bigquery": "^7.0.0", - "@google-cloud/compute": "^4.0.0", - "@google-cloud/resource-manager": "^5.0.0", + "@google-cloud/asset": "^6.0.0", + "@google-cloud/bigquery": "^8.0.0", + "@google-cloud/compute": "^6.0.0", + "@google-cloud/resource-manager": "^6.0.0", "@google-cloud/storage": "^7.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", - "gts": "^5.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "gts": "^7.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "uuid": "^10.0.0" } } diff --git a/auth/customcredentials/aws/Dockerfile b/auth/customcredentials/aws/Dockerfile index 7f8e9cc0b38..e9c5043c7a6 100644 --- a/auth/customcredentials/aws/Dockerfile +++ b/auth/customcredentials/aws/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20-slim +FROM node:24-slim WORKDIR /app diff --git a/auth/package.json b/auth/package.json index 00c59e7b656..b32bc511a74 100644 --- a/auth/package.json +++ b/auth/package.json @@ -25,13 +25,13 @@ "@google-cloud/storage": "^7.18.0", "dotenv": "^17.0.0", "fix": "0.0.6", - "gaxios": "^6.0.0", - "google-auth-library": "^9.0.0", - "yargs": "^17.0.0" + "gaxios": "^7.0.0", + "google-auth-library": "^10.0.0", + "yargs": "^18.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/automl/package.json b/automl/package.json index ed73e722a73..1752b19b632 100644 --- a/automl/package.json +++ b/automl/package.json @@ -16,14 +16,14 @@ "!test/" ], "dependencies": { - "@google-cloud/automl": "^4.0.0", - "mathjs": "^13.0.0" + "@google-cloud/automl": "^5.0.0", + "mathjs": "^15.0.0" }, "devDependencies": { "@google-cloud/storage": "^7.0.0", - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/batch/package.json b/batch/package.json index 236e1076934..d904059627f 100644 --- a/batch/package.json +++ b/batch/package.json @@ -14,15 +14,15 @@ "publish": "echo 'sample test; do not publish'" }, "dependencies": { - "@google-cloud/batch": "^1.0.0" + "@google-cloud/batch": "^2.0.0" }, "devDependencies": { - "@google-cloud/compute": "^4.0.0", - "@google-cloud/resource-manager": "^5.0.0", + "@google-cloud/compute": "^6.0.0", + "@google-cloud/resource-manager": "^6.0.0", "@google-cloud/storage": "^7.0.0", "@types/mocha": "^10.0.7", - "c8": "^10.0.0", - "mocha": "^10.0.0", - "nanoid": "^3.3.7" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "nanoid": "^5.0.0" } } diff --git a/bigquery/cloud-client/package.json b/bigquery/cloud-client/package.json index fb97277d3a4..720d726e123 100644 --- a/bigquery/cloud-client/package.json +++ b/bigquery/cloud-client/package.json @@ -6,7 +6,7 @@ "license": "Apache Version 2.0", "author": "Google LLC", "engines": { - "node": "20.x" + "node": "24.x" }, "scripts": { "deploy": "gcloud app deploy", @@ -15,12 +15,12 @@ "test": "npm run unit-test" }, "dependencies": { - "@google-cloud/bigquery": "7.9.2" + "@google-cloud/bigquery": "8.3.1" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/cloud-language/package.json b/cloud-language/package.json index 3842a0e2f2c..2645a3aa851 100644 --- a/cloud-language/package.json +++ b/cloud-language/package.json @@ -15,15 +15,15 @@ "test": "c8 mocha -p -j 2 --timeout 60000" }, "dependencies": { - "@google-cloud/language": "^6.1.0", + "@google-cloud/language": "^7.0.0", "@google-cloud/storage": "^7.0.0", - "mathjs": "^13.0.0", - "yargs": "^17.0.0" + "mathjs": "^15.0.0", + "yargs": "^18.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", "uuid": "^10.0.0" } } diff --git a/cloud-sql/mysql/mysql/Dockerfile b/cloud-sql/mysql/mysql/Dockerfile index aa8ccc39e9c..edeb3866fc9 100644 --- a/cloud-sql/mysql/mysql/Dockerfile +++ b/cloud-sql/mysql/mysql/Dockerfile @@ -14,7 +14,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /app diff --git a/cloud-sql/mysql/mysql/package.json b/cloud-sql/mysql/mysql/package.json index 807370d86bd..dd4a3ba959b 100644 --- a/cloud-sql/mysql/mysql/package.json +++ b/cloud-sql/mysql/mysql/package.json @@ -19,17 +19,17 @@ "test": "npm run system-test && npm run system-test-unix" }, "dependencies": { - "@google-cloud/functions-framework": "^3.0.0", + "@google-cloud/functions-framework": "^5.0.0", "@google-cloud/logging-winston": "^6.0.0", - "@google-cloud/secret-manager": "^5.0.0", - "express": "^4.17.1", + "@google-cloud/secret-manager": "^6.0.0", + "express": "^5.0.0", "promise-mysql": "^5.0.0", "pug": "^3.0.0", "winston": "^3.1.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/cloud-sql/mysql/mysql2/Dockerfile b/cloud-sql/mysql/mysql2/Dockerfile index 91c87e83345..41c517c862c 100644 --- a/cloud-sql/mysql/mysql2/Dockerfile +++ b/cloud-sql/mysql/mysql2/Dockerfile @@ -14,7 +14,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /app diff --git a/cloud-sql/mysql/mysql2/package.json b/cloud-sql/mysql/mysql2/package.json index c3f0b061fd9..1f5545fc6c7 100644 --- a/cloud-sql/mysql/mysql2/package.json +++ b/cloud-sql/mysql/mysql2/package.json @@ -18,17 +18,17 @@ }, "dependencies": { "@google-cloud/cloud-sql-connector": "^1.0.0", - "@google-cloud/functions-framework": "^3.0.0", + "@google-cloud/functions-framework": "^5.0.0", "@google-cloud/logging-winston": "^6.0.0", - "@google-cloud/secret-manager": "^5.0.0", - "express": "^4.17.1", + "@google-cloud/secret-manager": "^6.0.0", + "express": "^5.0.0", "mysql2": "^3.3.3", "pug": "^3.0.0", "winston": "^3.1.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/cloud-sql/postgres/knex/Dockerfile b/cloud-sql/postgres/knex/Dockerfile index 8457367715c..0787ed3c229 100644 --- a/cloud-sql/postgres/knex/Dockerfile +++ b/cloud-sql/postgres/knex/Dockerfile @@ -14,7 +14,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /app diff --git a/cloud-sql/postgres/knex/package.json b/cloud-sql/postgres/knex/package.json index 6451fdf6998..21e3ef224e3 100644 --- a/cloud-sql/postgres/knex/package.json +++ b/cloud-sql/postgres/knex/package.json @@ -20,18 +20,18 @@ }, "dependencies": { "@google-cloud/cloud-sql-connector": "^1.0.0", - "@google-cloud/functions-framework": "^3.0.0", + "@google-cloud/functions-framework": "^5.0.0", "@google-cloud/logging-winston": "^6.0.0", - "@google-cloud/secret-manager": "^5.0.0", - "express": "^4.16.2", + "@google-cloud/secret-manager": "^6.0.0", + "express": "^5.0.0", "knex": "^3.0.0", "pg": "^8.0.0", "pug": "^3.0.0", "winston": "^3.1.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/cloud-sql/sqlserver/mssql/Dockerfile b/cloud-sql/sqlserver/mssql/Dockerfile index d9371f58324..102929a56c0 100644 --- a/cloud-sql/sqlserver/mssql/Dockerfile +++ b/cloud-sql/sqlserver/mssql/Dockerfile @@ -15,7 +15,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /app diff --git a/cloud-sql/sqlserver/mssql/package.json b/cloud-sql/sqlserver/mssql/package.json index f1831404cc0..4087028fc85 100644 --- a/cloud-sql/sqlserver/mssql/package.json +++ b/cloud-sql/sqlserver/mssql/package.json @@ -18,17 +18,17 @@ "test": "npm run system-test" }, "dependencies": { - "@google-cloud/functions-framework": "^3.0.0", + "@google-cloud/functions-framework": "^5.0.0", "@google-cloud/logging-winston": "^6.0.0", - "@google-cloud/secret-manager": "^5.0.0", - "express": "^4.17.1", - "mssql": "^11.0.0", + "@google-cloud/secret-manager": "^6.0.0", + "express": "^5.0.0", + "mssql": "^12.0.0", "pug": "^3.0.0", "winston": "^3.1.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/cloud-sql/sqlserver/tedious/Dockerfile b/cloud-sql/sqlserver/tedious/Dockerfile index 20a5a672054..8b372eb40bd 100644 --- a/cloud-sql/sqlserver/tedious/Dockerfile +++ b/cloud-sql/sqlserver/tedious/Dockerfile @@ -15,7 +15,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /app diff --git a/cloud-sql/sqlserver/tedious/package.json b/cloud-sql/sqlserver/tedious/package.json index 897a5bc7a57..efcb4da5dee 100644 --- a/cloud-sql/sqlserver/tedious/package.json +++ b/cloud-sql/sqlserver/tedious/package.json @@ -18,17 +18,17 @@ }, "dependencies": { "@google-cloud/cloud-sql-connector": "^1.0.0", - "@google-cloud/functions-framework": "^3.0.0", + "@google-cloud/functions-framework": "^5.0.0", "@google-cloud/logging-winston": "^6.0.0", - "@google-cloud/secret-manager": "^5.0.0", - "express": "^4.17.1", + "@google-cloud/secret-manager": "^6.0.0", + "express": "^5.0.0", "pug": "^3.0.0", - "tedious": "^18.0.0", + "tedious": "^19.0.0", "winston": "^3.1.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/cloud-tasks/snippets/Dockerfile b/cloud-tasks/snippets/Dockerfile index aa93c76ca02..df7e10b6015 100644 --- a/cloud-tasks/snippets/Dockerfile +++ b/cloud-tasks/snippets/Dockerfile @@ -1,6 +1,6 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/cloud-tasks/snippets/package.json b/cloud-tasks/snippets/package.json index 98a943e419d..72b2a6cc743 100644 --- a/cloud-tasks/snippets/package.json +++ b/cloud-tasks/snippets/package.json @@ -15,13 +15,13 @@ "start": "node server.js" }, "dependencies": { - "@google-cloud/tasks": "^5.0.0", - "express": "^4.16.3" + "@google-cloud/tasks": "^6.0.0", + "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", "uuid": "^10.0.0" } } diff --git a/cloud-tasks/tutorial-gcf/app/package.json b/cloud-tasks/tutorial-gcf/app/package.json index b50f8b4c062..ef9c1b11ba4 100644 --- a/cloud-tasks/tutorial-gcf/app/package.json +++ b/cloud-tasks/tutorial-gcf/app/package.json @@ -11,12 +11,12 @@ "test": "c8 mocha -p -j 2 --timeout 10000" }, "dependencies": { - "@google-cloud/tasks": "^5.0.0", - "express": "^4.17.1" + "@google-cloud/tasks": "^6.0.0", + "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" } } diff --git a/cloud-tasks/tutorial-gcf/function/package.json b/cloud-tasks/tutorial-gcf/function/package.json index ee2ef53483b..be3aa502081 100644 --- a/cloud-tasks/tutorial-gcf/function/package.json +++ b/cloud-tasks/tutorial-gcf/function/package.json @@ -10,13 +10,13 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "dependencies": { - "@google-cloud/secret-manager": "^5.0.0", + "@google-cloud/secret-manager": "^6.0.0", "@sendgrid/mail": "^8.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/cloudbuild/package.json b/cloudbuild/package.json index e872969f39d..73c328c6dfa 100644 --- a/cloudbuild/package.json +++ b/cloudbuild/package.json @@ -15,11 +15,11 @@ "test": "c8 mocha -p -j 2 system-test --timeout=800000" }, "dependencies": { - "@google-cloud/cloudbuild": "^4.0.0" + "@google-cloud/cloudbuild": "^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" } } diff --git a/composer/functions/composer-storage-trigger/package.json b/composer/functions/composer-storage-trigger/package.json index f5549691f2e..13cbb583668 100644 --- a/composer/functions/composer-storage-trigger/package.json +++ b/composer/functions/composer-storage-trigger/package.json @@ -16,9 +16,9 @@ "url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git" }, "devDependencies": { - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" }, "scripts": { "test": "mocha test/*.test.js --timeout=20000" diff --git a/composer/package.json b/composer/package.json index 861d14a013d..9a6858c18b8 100644 --- a/composer/package.json +++ b/composer/package.json @@ -16,8 +16,8 @@ "test": "c8 mocha -p -j 2 --exit test/*.test.js" }, "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" } } diff --git a/compute/package.json b/compute/package.json index 131aac53f38..2408cb8ca4b 100644 --- a/compute/package.json +++ b/compute/package.json @@ -14,17 +14,17 @@ "test": "c8 mocha -p -j 2 test --timeout 1200000" }, "dependencies": { - "@google-cloud/compute": "^4.0.0", + "@google-cloud/compute": "^6.0.0", "@sendgrid/mail": "^8.0.0", "nodemailer": "^6.0.0", "nodemailer-smtp-transport": "^2.7.4", - "sinon": "^19.0.2" + "sinon": "^22.0.0" }, "devDependencies": { "@google-cloud/storage": "^7.0.0", - "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.0.1", "uuid": "^10.0.0" } diff --git a/contact-center-insights/package.json b/contact-center-insights/package.json index 81c192c9600..03aef4ff934 100644 --- a/contact-center-insights/package.json +++ b/contact-center-insights/package.json @@ -13,14 +13,14 @@ "test": "c8 mocha --timeout 600000 test/*.js" }, "dependencies": { - "@google-cloud/bigquery": "^7.0.0", - "@google-cloud/contact-center-insights": "^3.0.0", - "@google-cloud/pubsub": "^4.0.0" + "@google-cloud/bigquery": "^8.0.0", + "@google-cloud/contact-center-insights": "^4.0.0", + "@google-cloud/pubsub": "^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", "uuid": "^10.0.0" } } diff --git a/container-analysis/snippets/package.json b/container-analysis/snippets/package.json index 425af61fb79..071a25f82a8 100644 --- a/container-analysis/snippets/package.json +++ b/container-analysis/snippets/package.json @@ -14,14 +14,14 @@ "test": "c8 mocha -p -j 2 --timeout 100000 test/**.test.js" }, "dependencies": { - "@google-cloud/containeranalysis": "^5.0.0", - "@google-cloud/pubsub": "^4.0.0", - "p-retry": "^6.0.0" + "@google-cloud/containeranalysis": "^6.0.0", + "@google-cloud/pubsub": "^5.0.0", + "p-retry": "^8.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", "uuid": "^10.0.0" } } diff --git a/container/package.json b/container/package.json index 37f7279944c..d20189adb60 100644 --- a/container/package.json +++ b/container/package.json @@ -14,11 +14,11 @@ "test": "c8 mocha -p -j 2 system-test --timeout 1000000" }, "dependencies": { - "@google-cloud/container": "^5.0.0" + "@google-cloud/container": "^6.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" } } diff --git a/datacatalog/cloud-client/package.json b/datacatalog/cloud-client/package.json index 21cf33a18c7..cf54d0f56fd 100644 --- a/datacatalog/cloud-client/package.json +++ b/datacatalog/cloud-client/package.json @@ -13,11 +13,11 @@ "test": "c8 mocha -p -j 2 system-test/*.test.js --timeout=60000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" }, "dependencies": { - "@google-cloud/datacatalog": "^4.0.0" + "@google-cloud/datacatalog": "^5.0.0" } } diff --git a/datacatalog/quickstart/package.json b/datacatalog/quickstart/package.json index 68bb12cb498..a38966c4fd2 100644 --- a/datacatalog/quickstart/package.json +++ b/datacatalog/quickstart/package.json @@ -13,11 +13,11 @@ "test": "c8 mocha -p -j 2 system-test/*.test.js --timeout=60000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" }, "dependencies": { - "@google-cloud/datacatalog": "^4.0.0" + "@google-cloud/datacatalog": "^5.0.0" } } diff --git a/datacatalog/snippets/package.json b/datacatalog/snippets/package.json index d775469d11b..5241fc99c02 100644 --- a/datacatalog/snippets/package.json +++ b/datacatalog/snippets/package.json @@ -15,14 +15,14 @@ "test": "c8 mocha -p -j 2 --timeout 600000" }, "dependencies": { - "@google-cloud/bigquery": "^7.0.0", - "@google-cloud/datacatalog": "^4.0.0" + "@google-cloud/bigquery": "^8.0.0", + "@google-cloud/datacatalog": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", + "c8": "^11.0.0", + "chai": "^6.0.0", "execa": "^9.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/datalabeling/package.json b/datalabeling/package.json index badd53b5895..a0f08a1220b 100644 --- a/datalabeling/package.json +++ b/datalabeling/package.json @@ -14,11 +14,11 @@ "test": "c8 mocha -p -j 2 --timeout 600000" }, "dependencies": { - "@google-cloud/datalabeling": "^4.0.0" + "@google-cloud/datalabeling": "^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" } } diff --git a/dataproc/package.json b/dataproc/package.json index e3516df8678..6faeb2ce855 100644 --- a/dataproc/package.json +++ b/dataproc/package.json @@ -14,13 +14,13 @@ "test": "c8 mocha -p -j 2 system-test --timeout 600000" }, "dependencies": { - "@google-cloud/dataproc": "^5.0.0", + "@google-cloud/dataproc": "^6.0.0", "@google-cloud/storage": "^7.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", "uuid": "^10.0.0" } } diff --git a/datastore/functions/package.json b/datastore/functions/package.json index 38aca02beed..7a07d7243d7 100644 --- a/datastore/functions/package.json +++ b/datastore/functions/package.json @@ -14,16 +14,16 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=5000" }, "dependencies": { - "@google-cloud/datastore": "^9.0.0" + "@google-cloud/datastore": "^10.0.0" }, "devDependencies": { - "@google-cloud/functions-framework": "^3.0.0", - "c8": "^10.0.0", + "@google-cloud/functions-framework": "^5.0.0", + "c8": "^11.0.0", "child-process-promise": "^2.2.1", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "node-fetch": "^3.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "uuid": "^10.0.0", "wait-port": "^1.0.4" } diff --git a/dialogflow-cx/package.json b/dialogflow-cx/package.json index 17c907f70bb..a9c45168019 100644 --- a/dialogflow-cx/package.json +++ b/dialogflow-cx/package.json @@ -13,13 +13,13 @@ "test": "c8 mocha -p -j 2 --timeout 600000 test/*.js" }, "dependencies": { - "@google-cloud/dialogflow-cx": "^4.0.0", - "@google-cloud/functions-framework": "^3.2.0" + "@google-cloud/dialogflow-cx": "^5.0.0", + "@google-cloud/functions-framework": "^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", "uuid": "^10.0.0" } } diff --git a/dialogflow/package.json b/dialogflow/package.json index 13b2eeb85cd..0f1c2f37667 100644 --- a/dialogflow/package.json +++ b/dialogflow/package.json @@ -15,15 +15,15 @@ "test": "c8 mocha -p -j 2 system-test --timeout=600000" }, "dependencies": { - "@google-cloud/dialogflow": "^6.0.0", + "@google-cloud/dialogflow": "^7.0.0", "pb-util": "^1.0.0", - "yargs": "^17.0.0", - "@google-cloud/functions-framework": "^3.2.0" + "yargs": "^18.0.0", + "@google-cloud/functions-framework": "^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", "uuid": "^10.0.0" } } diff --git a/discoveryengine/package.json b/discoveryengine/package.json index 167a1015bec..dc0d9e14931 100644 --- a/discoveryengine/package.json +++ b/discoveryengine/package.json @@ -13,12 +13,12 @@ "test": "mocha test/*.js --timeout 600000" }, "dependencies": { - "@google-cloud/discoveryengine": "^1.0.0", - "p-queue": "^8.0.0" + "@google-cloud/discoveryengine": "^2.0.0", + "p-queue": "^9.0.0" }, "devDependencies": { - "chai": "^4.5.0", - "mocha": "^10.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/dlp/package.json b/dlp/package.json index 2ba79f42e82..2c248a45644 100644 --- a/dlp/package.json +++ b/dlp/package.json @@ -15,19 +15,19 @@ "test": "c8 mocha -p -j 2 system-test/*.test.js --timeout=600000" }, "dependencies": { - "@google-cloud/dlp": "^5.0.0", - "@google-cloud/pubsub": "^4.0.0", + "@google-cloud/dlp": "^6.0.0", + "@google-cloud/pubsub": "^5.0.0", "@google-cloud/storage": "^7.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", + "c8": "^11.0.0", + "chai": "^6.0.0", "mime": "^4.0.0", - "mocha": "^10.0.0", - "pixelmatch": "^6.0.0", + "mocha": "^11.0.0", + "pixelmatch": "^7.0.0", "pngjs": "^7.0.0", "proxyquire": "^2.1.3", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "uuid": "^10.0.0" } } diff --git a/document-ai/package.json b/document-ai/package.json index a2cce352771..3eed4cd39db 100644 --- a/document-ai/package.json +++ b/document-ai/package.json @@ -13,14 +13,14 @@ "test": "c8 mocha -p -j 2 test/*.js --timeout 600000" }, "dependencies": { - "@google-cloud/documentai": "^8.0.0", + "@google-cloud/documentai": "^9.0.0", "@google-cloud/storage": "^7.0.0", - "p-queue": "^8.0.0" + "p-queue": "^9.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", "uuid": "^10.0.0" } } diff --git a/document-warehouse/package.json b/document-warehouse/package.json index c52a4d966a6..0eb73c829e2 100644 --- a/document-warehouse/package.json +++ b/document-warehouse/package.json @@ -7,12 +7,12 @@ "test": "c8 mocha test/*.test.js --timeout 600000" }, "dependencies": { - "@google-cloud/contentwarehouse": "^1.0.0", - "@google-cloud/iam": "^1.0.0", - "@google-cloud/resource-manager": "^5.0.0" + "@google-cloud/contentwarehouse": "^2.0.0", + "@google-cloud/iam": "^2.0.0", + "@google-cloud/resource-manager": "^6.0.0" }, "devDependencies": { "assert": "^2.0.0", - "c8": "^10.0.0" + "c8": "^11.0.0" } } diff --git a/endpoints/getting-started-grpc/package.json b/endpoints/getting-started-grpc/package.json index 6f8631cdce8..98a496b7829 100644 --- a/endpoints/getting-started-grpc/package.json +++ b/endpoints/getting-started-grpc/package.json @@ -19,11 +19,11 @@ "dependencies": { "@grpc/grpc-js": "^1.13.3", "@grpc/proto-loader": "^0.7.15", - "yargs": "^17.0.0" + "yargs": "^18.0.0" }, "devDependencies": { - "chai": "^4.5.0", - "mocha": "^10.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "wait-port": "^1.0.4" } } diff --git a/endpoints/getting-started/package.json b/endpoints/getting-started/package.json index a66f3dc59ff..d696c1b4bef 100644 --- a/endpoints/getting-started/package.json +++ b/endpoints/getting-started/package.json @@ -17,13 +17,13 @@ "test": "c8 mocha -p -j 2 -- test/*.test.js --timeout=20000" }, "dependencies": { - "express": "^4.16.4" + "express": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/error-reporting/package.json b/error-reporting/package.json index e55f01caf96..edd0fe6a8ac 100644 --- a/error-reporting/package.json +++ b/error-reporting/package.json @@ -16,12 +16,12 @@ }, "dependencies": { "@google-cloud/error-reporting": "^3.0.4", - "express": "^4.16.3" + "express": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", - "gaxios": "^6.0.0", - "mocha": "^10.0.0" + "c8": "^11.0.0", + "chai": "^6.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0" } } diff --git a/eventarc/audit-storage/Dockerfile b/eventarc/audit-storage/Dockerfile index 711737d7a58..fe7b9e18205 100644 --- a/eventarc/audit-storage/Dockerfile +++ b/eventarc/audit-storage/Dockerfile @@ -16,7 +16,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/eventarc/audit-storage/package.json b/eventarc/audit-storage/package.json index 74a918235e9..0d04f2cbf90 100644 --- a/eventarc/audit-storage/package.json +++ b/eventarc/audit-storage/package.json @@ -21,13 +21,13 @@ "test": "npm -- run all-test" }, "dependencies": { - "express": "^4.16.4" + "express": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "got": "^15.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/eventarc/generic/Dockerfile b/eventarc/generic/Dockerfile index 9246cecd1c5..955e49b08c1 100644 --- a/eventarc/generic/Dockerfile +++ b/eventarc/generic/Dockerfile @@ -14,7 +14,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/eventarc/generic/package.json b/eventarc/generic/package.json index 99aef7c3fac..9d69b1bdc8b 100644 --- a/eventarc/generic/package.json +++ b/eventarc/generic/package.json @@ -18,13 +18,13 @@ "system-test": "test/runner.sh mocha test/system.test.js --timeout=10000" }, "dependencies": { - "express": "^4.16.4" + "express": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "got": "^15.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0", "uuid": "^10.0.0" } diff --git a/eventarc/pubsub/Dockerfile b/eventarc/pubsub/Dockerfile index 9246cecd1c5..955e49b08c1 100644 --- a/eventarc/pubsub/Dockerfile +++ b/eventarc/pubsub/Dockerfile @@ -14,7 +14,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/eventarc/pubsub/package.json b/eventarc/pubsub/package.json index 7c2a765c3cd..9149385a1ca 100644 --- a/eventarc/pubsub/package.json +++ b/eventarc/pubsub/package.json @@ -22,12 +22,12 @@ }, "dependencies": { "@google/events": "^5.0.0", - "express": "^4.16.4" + "express": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "got": "^15.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/functions/billing/package.json b/functions/billing/package.json index 5630dfb8a41..ed02ac512a6 100644 --- a/functions/billing/package.json +++ b/functions/billing/package.json @@ -14,20 +14,20 @@ "author": "Ace Nassri ", "license": "Apache-2.0", "dependencies": { - "@google-cloud/billing": "^4.0.0", - "@google-cloud/compute": "^4.0.0", + "@google-cloud/billing": "^5.0.0", + "@google-cloud/compute": "^6.0.0", "@slack/web-api": "^7.15.0", - "google-auth-library": "^9.0.0", - "googleapis": "^143.0.0" + "google-auth-library": "^10.0.0", + "googleapis": "^171.0.0" }, "devDependencies": { - "@google-cloud/functions-framework": "^3.0.0", - "c8": "^10.0.0", - "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "@google-cloud/functions-framework": "^5.0.0", + "c8": "^11.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0", "promise-retry": "^2.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/concepts/afterResponse/package.json b/functions/concepts/afterResponse/package.json index 6b32f840e4c..4834c93b3f3 100644 --- a/functions/concepts/afterResponse/package.json +++ b/functions/concepts/afterResponse/package.json @@ -12,7 +12,7 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" }, "scripts": { "test": "echo \"No tests exist for this sample.\"" diff --git a/functions/concepts/afterTimeout/package.json b/functions/concepts/afterTimeout/package.json index e512261c8df..850cf921166 100644 --- a/functions/concepts/afterTimeout/package.json +++ b/functions/concepts/afterTimeout/package.json @@ -12,7 +12,7 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" }, "scripts": { "test": "echo \"No tests exist for this sample.\"" diff --git a/functions/concepts/filesystem/package.json b/functions/concepts/filesystem/package.json index 92331e35ce5..fa04f4ff638 100644 --- a/functions/concepts/filesystem/package.json +++ b/functions/concepts/filesystem/package.json @@ -12,7 +12,7 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.2" + "@google-cloud/functions-framework": "^5.0.0" }, "scripts": { "test": "echo \"No tests exist for this sample.\"" diff --git a/functions/concepts/httpTermination/package.json b/functions/concepts/httpTermination/package.json index a21f066cb65..c0cbd336446 100644 --- a/functions/concepts/httpTermination/package.json +++ b/functions/concepts/httpTermination/package.json @@ -12,7 +12,7 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" }, "scripts": { "test": "echo \"No tests exist for this sample.\"" diff --git a/functions/concepts/package.json b/functions/concepts/package.json index 3faa393b8aa..39736583812 100644 --- a/functions/concepts/package.json +++ b/functions/concepts/package.json @@ -15,8 +15,8 @@ "node-fetch": "^3.0.0" }, "devDependencies": { - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/functions/concepts/requests/package.json b/functions/concepts/requests/package.json index c3cc301c1aa..2ed05f907ce 100644 --- a/functions/concepts/requests/package.json +++ b/functions/concepts/requests/package.json @@ -12,7 +12,7 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3", + "@google-cloud/functions-framework": "^5.0.0", "node-fetch": "^3.0.0" }, "scripts": { diff --git a/functions/concepts/stateless/package.json b/functions/concepts/stateless/package.json index 4ac626ea933..d831d74ae7e 100644 --- a/functions/concepts/stateless/package.json +++ b/functions/concepts/stateless/package.json @@ -12,7 +12,7 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" }, "scripts": { "test": "echo \"No tests exist for this sample.\"" diff --git a/functions/env_vars/package.json b/functions/env_vars/package.json index f99e1fea611..fd5a13ab188 100644 --- a/functions/env_vars/package.json +++ b/functions/env_vars/package.json @@ -15,8 +15,8 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/functions/firebase/helloAnalytics/package.json b/functions/firebase/helloAnalytics/package.json index ab6a3b72f16..f12be99f7e5 100644 --- a/functions/firebase/helloAnalytics/package.json +++ b/functions/firebase/helloAnalytics/package.json @@ -15,9 +15,9 @@ "test": "c8 mocha -p -j 2 -T 30s test/*.test.js" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/functions/firebase/helloAuth/package.json b/functions/firebase/helloAuth/package.json index e0057948a47..8036a401113 100644 --- a/functions/firebase/helloAuth/package.json +++ b/functions/firebase/helloAuth/package.json @@ -15,9 +15,9 @@ "test": "c8 mocha -p -j 2 -T 30s test/*.test.js" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/functions/firebase/helloFirestore/package.json b/functions/firebase/helloFirestore/package.json index c010e65379a..794fa6dd8d5 100644 --- a/functions/firebase/helloFirestore/package.json +++ b/functions/firebase/helloFirestore/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 -T 30s test/*.test.js" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/firestore": "^7.0.0" + "@google-cloud/firestore": "^8.0.0" } } diff --git a/functions/firebase/helloRTDB/package.json b/functions/firebase/helloRTDB/package.json index 2667d6317a0..086686ba5ca 100644 --- a/functions/firebase/helloRTDB/package.json +++ b/functions/firebase/helloRTDB/package.json @@ -15,9 +15,9 @@ "test": "c8 mocha -p -j 2 -T 30s test/*.test.js" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/functions/firebase/helloRemoteConfig/package.json b/functions/firebase/helloRemoteConfig/package.json index 4395f1d6c32..3aecd5434cc 100644 --- a/functions/firebase/helloRemoteConfig/package.json +++ b/functions/firebase/helloRemoteConfig/package.json @@ -15,9 +15,9 @@ "test": "c8 mocha -p -j 2 -T 30s test/*.test.js" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/functions/firebase/makeUpperCase/package.json b/functions/firebase/makeUpperCase/package.json index 3ce9d984306..2de3c472e35 100644 --- a/functions/firebase/makeUpperCase/package.json +++ b/functions/firebase/makeUpperCase/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 -T 30s test/*.test.js" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/firestore": "^7.0.0" + "@google-cloud/firestore": "^8.0.0" } } diff --git a/functions/firebase/package.json b/functions/firebase/package.json index b9ddfe1e02d..f659a2a27f4 100644 --- a/functions/firebase/package.json +++ b/functions/firebase/package.json @@ -12,13 +12,13 @@ "node": ">=16.0.0" }, "devDependencies": { - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0", "uuid": "^10.0.0" }, "dependencies": { - "@google-cloud/firestore": "^7.0.0" + "@google-cloud/firestore": "^8.0.0" } } diff --git a/functions/helloworld/helloError/package.json b/functions/helloworld/helloError/package.json index 02515a50704..06f50b8199d 100644 --- a/functions/helloworld/helloError/package.json +++ b/functions/helloworld/helloError/package.json @@ -15,11 +15,11 @@ "test": "c8 mocha -p -j 2 test/*.test.js --exit" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.0" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/functions/helloworld/helloGCS/package.json b/functions/helloworld/helloGCS/package.json index 00abd7607e7..8e0a8ae6b79 100644 --- a/functions/helloworld/helloGCS/package.json +++ b/functions/helloworld/helloGCS/package.json @@ -18,16 +18,16 @@ "test": "npm -- run unit-test" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.0" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { "@google-cloud/storage": "^7.0.0", - "c8": "^10.0.0", - "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0", "moment": "^2.24.0", "promise-retry": "^2.0.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "uuid": "^10.0.0", "wait-port": "^1.0.4" } diff --git a/functions/helloworld/helloPubSub/package.json b/functions/helloworld/helloPubSub/package.json index 189d5931c36..988809d53b5 100644 --- a/functions/helloworld/helloPubSub/package.json +++ b/functions/helloworld/helloPubSub/package.json @@ -18,16 +18,16 @@ "test": "npm -- run unit-test" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.0" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "@google-cloud/pubsub": "^4.0.0", - "c8": "^10.0.0", - "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "@google-cloud/pubsub": "^5.0.0", + "c8": "^11.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0", "moment": "^2.29.4", "promise-retry": "^2.0.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "uuid": "^10.0.0", "wait-port": "^1.0.4" } diff --git a/functions/helloworld/helloworldGet/package.json b/functions/helloworld/helloworldGet/package.json index d17681b8eb0..6c9b29fca0f 100644 --- a/functions/helloworld/helloworldGet/package.json +++ b/functions/helloworld/helloworldGet/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=6000 --exit" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.0" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/helloworld/helloworldHttp/package.json b/functions/helloworld/helloworldHttp/package.json index 97c20ad23d6..245f5dc0160 100644 --- a/functions/helloworld/helloworldHttp/package.json +++ b/functions/helloworld/helloworldHttp/package.json @@ -18,14 +18,14 @@ "test": "npm -- run unit-test" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.0", + "@google-cloud/functions-framework": "^5.0.0", "escape-html": "^1.0.3" }, "devDependencies": { - "c8": "^10.0.0", - "gaxios": "^6.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0", "wait-port": "^1.0.4" } diff --git a/functions/helloworld/package.json b/functions/helloworld/package.json index 4f5c8c8473c..ccd2d7e6a4a 100644 --- a/functions/helloworld/package.json +++ b/functions/helloworld/package.json @@ -13,17 +13,17 @@ }, "dependencies": { "@google-cloud/debug-agent": "^9.0.0", - "@google-cloud/functions-framework": "^3.1.0", + "@google-cloud/functions-framework": "^5.0.0", "escape-html": "^1.0.3" }, "devDependencies": { - "@google-cloud/pubsub": "^4.0.0", + "@google-cloud/pubsub": "^5.0.0", "@google-cloud/storage": "^7.0.0", - "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0", "moment": "^2.24.0", "promise-retry": "^2.0.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0", "uuid": "^10.0.0", "wait-port": "^1.0.4" diff --git a/functions/http/corsEnabledFunction/package.json b/functions/http/corsEnabledFunction/package.json index 69bed9ba37f..e840b93d4c8 100644 --- a/functions/http/corsEnabledFunction/package.json +++ b/functions/http/corsEnabledFunction/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.2" + "@google-cloud/functions-framework": "^5.0.0" } } diff --git a/functions/http/corsEnabledFunctionAuth/package.json b/functions/http/corsEnabledFunctionAuth/package.json index 1bc7a3b3710..dff876ed10b 100644 --- a/functions/http/corsEnabledFunctionAuth/package.json +++ b/functions/http/corsEnabledFunctionAuth/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.2" + "@google-cloud/functions-framework": "^5.0.0" } } diff --git a/functions/http/httpContent/package.json b/functions/http/httpContent/package.json index 3ff8581ba8f..f8581a51b51 100644 --- a/functions/http/httpContent/package.json +++ b/functions/http/httpContent/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.2", + "@google-cloud/functions-framework": "^5.0.0", "escape-html": "^1.0.3" } } diff --git a/functions/http/httpMethods/package.json b/functions/http/httpMethods/package.json index 9837db712af..a0e2dbff15c 100644 --- a/functions/http/httpMethods/package.json +++ b/functions/http/httpMethods/package.json @@ -15,11 +15,11 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.2" + "@google-cloud/functions-framework": "^5.0.0" } } diff --git a/functions/http/package.json b/functions/http/package.json index 84c1de6e1a5..c5fa11b2029 100644 --- a/functions/http/package.json +++ b/functions/http/package.json @@ -12,9 +12,9 @@ "node": ">=16.0.0" }, "devDependencies": { - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" }, "dependencies": { "@google-cloud/storage": "^7.0.0", diff --git a/functions/http/parseXML/package.json b/functions/http/parseXML/package.json index 3b4eddc6f09..c01ff2f4792 100644 --- a/functions/http/parseXML/package.json +++ b/functions/http/parseXML/package.json @@ -15,13 +15,13 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=6000 --exit" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.2", + "@google-cloud/functions-framework": "^5.0.0", "xml2js": "^0.6.0" }, "devDependencies": { - "c8": "^10.0.0", - "gaxios": "^6.0.0", - "mocha": "^10.2.0", + "c8": "^11.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/http/uploadFile/package.json b/functions/http/uploadFile/package.json index c58b7362e3b..d566289116d 100644 --- a/functions/http/uploadFile/package.json +++ b/functions/http/uploadFile/package.json @@ -12,7 +12,7 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3", + "@google-cloud/functions-framework": "^5.0.0", "@google-cloud/storage": "^7.0.0", "busboy": "^1.0.0" } diff --git a/functions/imagemagick/package.json b/functions/imagemagick/package.json index 5b7a94b5d66..58a8158d856 100644 --- a/functions/imagemagick/package.json +++ b/functions/imagemagick/package.json @@ -16,16 +16,16 @@ }, "dependencies": { "@google-cloud/storage": "^7.0.0", - "@google-cloud/vision": "^4.0.0", + "@google-cloud/vision": "^5.0.0", "sharp": "^0.34.5" }, "devDependencies": { - "@google-cloud/functions-framework": "^3.0.0", - "c8": "^10.0.0", - "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "@google-cloud/functions-framework": "^5.0.0", + "c8": "^11.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0", "wait-port": "^1.0.4" } diff --git a/functions/log/helloWorld/package.json b/functions/log/helloWorld/package.json index b68e4d64227..54e1d119337 100644 --- a/functions/log/helloWorld/package.json +++ b/functions/log/helloWorld/package.json @@ -15,11 +15,11 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" } } diff --git a/functions/log/package.json b/functions/log/package.json index feb865c7ad8..bef40f7954b 100644 --- a/functions/log/package.json +++ b/functions/log/package.json @@ -12,8 +12,8 @@ "node": ">=16.0.0" }, "devDependencies": { - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/functions/log/processEntry/package.json b/functions/log/processEntry/package.json index 33ba16e8050..5f0707d5010 100644 --- a/functions/log/processEntry/package.json +++ b/functions/log/processEntry/package.json @@ -15,9 +15,9 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/functions/memorystore/redis/package.json b/functions/memorystore/redis/package.json index d3e29814a63..ea007b7ae1a 100644 --- a/functions/memorystore/redis/package.json +++ b/functions/memorystore/redis/package.json @@ -16,12 +16,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000 --exit" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.2", - "redis": "^4.0.0" + "@google-cloud/functions-framework": "^5.0.0", + "redis": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/functions/ocr/app/package.json b/functions/ocr/app/package.json index a54096f90a9..a25ba2add97 100644 --- a/functions/ocr/app/package.json +++ b/functions/ocr/app/package.json @@ -15,14 +15,14 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000" }, "dependencies": { - "@google-cloud/pubsub": "^4.0.0", + "@google-cloud/pubsub": "^5.0.0", "@google-cloud/storage": "^7.0.0", - "@google-cloud/translate": "^8.0.0", - "@google-cloud/vision": "^4.0.0" + "@google-cloud/translate": "^9.0.0", + "@google-cloud/vision": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/functions/pubsub/package.json b/functions/pubsub/package.json index 12e8a55e2ef..6c1c21ff482 100644 --- a/functions/pubsub/package.json +++ b/functions/pubsub/package.json @@ -12,13 +12,13 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/pubsub": "^4.0.0" + "@google-cloud/pubsub": "^5.0.0" }, "devDependencies": { - "@google-cloud/functions-framework": "^3.0.0", - "gaxios": "^6.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "@google-cloud/functions-framework": "^5.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/pubsub/publish/package.json b/functions/pubsub/publish/package.json index cc101b93eff..d0438681702 100644 --- a/functions/pubsub/publish/package.json +++ b/functions/pubsub/publish/package.json @@ -15,14 +15,14 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000 --exit" }, "dependencies": { - "@google-cloud/pubsub": "^4.0.0" + "@google-cloud/pubsub": "^5.0.0" }, "devDependencies": { - "@google-cloud/functions-framework": "^3.0.0", - "c8": "^10.0.0", - "gaxios": "^6.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "@google-cloud/functions-framework": "^5.0.0", + "c8": "^11.0.0", + "gaxios": "^7.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/pubsub/subscribe/package.json b/functions/pubsub/subscribe/package.json index e03880537af..949c754f288 100644 --- a/functions/pubsub/subscribe/package.json +++ b/functions/pubsub/subscribe/package.json @@ -15,8 +15,8 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000 --exit" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/functions/scheduleinstance/package.json b/functions/scheduleinstance/package.json index d050b4e0167..77999dc0428 100644 --- a/functions/scheduleinstance/package.json +++ b/functions/scheduleinstance/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.0.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/compute": "^4.0.0" + "@google-cloud/compute": "^6.0.0" } } diff --git a/functions/security/package.json b/functions/security/package.json index cce668cb473..93dd44e9bf4 100644 --- a/functions/security/package.json +++ b/functions/security/package.json @@ -18,9 +18,9 @@ "node-fetch": "^3.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": "^22.0.0" } } diff --git a/functions/slack/package.json b/functions/slack/package.json index de005699946..4e8d8f38e03 100644 --- a/functions/slack/package.json +++ b/functions/slack/package.json @@ -15,15 +15,15 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000 --exit" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.0", - "@googleapis/kgsearch": "^1.0.0", + "@google-cloud/functions-framework": "^5.0.0", + "@googleapis/kgsearch": "^4.0.0", "@slack/events-api": "^3.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/functions/spanner/package.json b/functions/spanner/package.json index 774867f929c..7557033ae9a 100644 --- a/functions/spanner/package.json +++ b/functions/spanner/package.json @@ -15,13 +15,13 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000" }, "dependencies": { - "@google-cloud/functions-framework": "^3.2.0", - "@google-cloud/spanner": "^7.0.0" + "@google-cloud/functions-framework": "^5.0.0", + "@google-cloud/spanner": "^8.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/functions/tips/connectionPools/package.json b/functions/tips/connectionPools/package.json index 10324b6aa2e..032479584ca 100644 --- a/functions/tips/connectionPools/package.json +++ b/functions/tips/connectionPools/package.json @@ -12,7 +12,7 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.2", + "@google-cloud/functions-framework": "^5.0.0", "node-fetch": "^3.0.0" }, "scripts": { diff --git a/functions/tips/gcpApiCall/package.json b/functions/tips/gcpApiCall/package.json index 2f9ff121cd6..b2640454f7e 100644 --- a/functions/tips/gcpApiCall/package.json +++ b/functions/tips/gcpApiCall/package.json @@ -15,13 +15,13 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000 --exit" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3", - "@google-cloud/pubsub": "^4.0.0" + "@google-cloud/functions-framework": "^5.0.0", + "@google-cloud/pubsub": "^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": "^22.0.0" } } diff --git a/functions/tips/lazyGlobals/package.json b/functions/tips/lazyGlobals/package.json index d74ec1d5614..c53e40f7add 100644 --- a/functions/tips/lazyGlobals/package.json +++ b/functions/tips/lazyGlobals/package.json @@ -12,7 +12,7 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" }, "scripts": { "test": "echo \"No tests exist for this sample.\"" diff --git a/functions/tips/package.json b/functions/tips/package.json index db58b31e19d..73d5d41edca 100644 --- a/functions/tips/package.json +++ b/functions/tips/package.json @@ -15,11 +15,11 @@ "test": "echo \"Notice: tests moved into topic sub-directories\" && exit 0" }, "dependencies": { - "@google-cloud/pubsub": "^4.0.0", - "mocha": "^10.0.0" + "@google-cloud/pubsub": "^5.0.0", + "mocha": "^11.0.0" }, "devDependencies": { "node-fetch": "^3.0.0", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/functions/tips/retry/package.json b/functions/tips/retry/package.json index 15209e7f66e..3e845d21eac 100644 --- a/functions/tips/retry/package.json +++ b/functions/tips/retry/package.json @@ -15,8 +15,8 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000 --exit" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/functions/tips/scopeDemo/package.json b/functions/tips/scopeDemo/package.json index 9bd294252a0..79a0bcc5d80 100644 --- a/functions/tips/scopeDemo/package.json +++ b/functions/tips/scopeDemo/package.json @@ -15,11 +15,11 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.2" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.2.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/functions/v2/autoLabelInstance/package.json b/functions/v2/autoLabelInstance/package.json index 0e5734bd9fc..2399ffda8a5 100644 --- a/functions/v2/autoLabelInstance/package.json +++ b/functions/v2/autoLabelInstance/package.json @@ -16,14 +16,14 @@ "e2e-test": "c8 mocha -p -j 2 --timeout 60s test/system.test.js" }, "dependencies": { - "@google-cloud/compute": "^4.0.0", - "@google-cloud/functions-framework": "^3.0.0" + "@google-cloud/compute": "^6.0.0", + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "p-retry": "^6.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", + "p-retry": "^8.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0", "uuid": "^10.0.0" } diff --git a/functions/v2/cloudEventLogging/package.json b/functions/v2/cloudEventLogging/package.json index 4329e298309..5c406fd4e8a 100644 --- a/functions/v2/cloudEventLogging/package.json +++ b/functions/v2/cloudEventLogging/package.json @@ -12,13 +12,13 @@ "test": "c8 mocha -p -j 2 test/*.test.js" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.1", + "@google-cloud/functions-framework": "^5.0.0", "@google-cloud/logging": "^11.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "cloudevents": "^8.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "cloudevents": "^10.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/functions/v2/firebase/firestore/helloFirestore/package.json b/functions/v2/firebase/firestore/helloFirestore/package.json index 08c3a4211ea..105bb59ed8e 100644 --- a/functions/v2/firebase/firestore/helloFirestore/package.json +++ b/functions/v2/firebase/firestore/helloFirestore/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 -T 30s test/*.test.js" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3", - "protobufjs": "^7.2.2" + "@google-cloud/functions-framework": "^5.0.0", + "protobufjs": "^8.0.0" } } diff --git a/functions/v2/firebase/firestore/makeUpperCase/package.json b/functions/v2/firebase/firestore/makeUpperCase/package.json index ac286a782b5..e17eb901f77 100644 --- a/functions/v2/firebase/firestore/makeUpperCase/package.json +++ b/functions/v2/firebase/firestore/makeUpperCase/package.json @@ -15,14 +15,14 @@ "test": "c8 mocha -p -j 2 -T 30s test/*.test.js" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "rewire": "^7.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "rewire": "^9.0.0", + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/firestore": "^7.0.0", - "@google-cloud/functions-framework": "^3.1.3", - "protobufjs": "^7.2.3" + "@google-cloud/firestore": "^8.0.0", + "@google-cloud/functions-framework": "^5.0.0", + "protobufjs": "^8.0.0" } } diff --git a/functions/v2/firebase/remote-config/helloRemoteConfig/package.json b/functions/v2/firebase/remote-config/helloRemoteConfig/package.json index 349d7134e1c..d8c3e4875ed 100644 --- a/functions/v2/firebase/remote-config/helloRemoteConfig/package.json +++ b/functions/v2/firebase/remote-config/helloRemoteConfig/package.json @@ -15,11 +15,11 @@ "test": "c8 mocha -p -j 2 -T 30s test/*.test.js" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" } } diff --git a/functions/v2/firebase/rtdb/helloRTDB/package.json b/functions/v2/firebase/rtdb/helloRTDB/package.json index c9214229bb6..2f8e4baaec2 100644 --- a/functions/v2/firebase/rtdb/helloRTDB/package.json +++ b/functions/v2/firebase/rtdb/helloRTDB/package.json @@ -15,11 +15,11 @@ "test": "c8 mocha -p -j 2 -T 30s test/*.test.js" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" } } diff --git a/functions/v2/helloAuditLog/package.json b/functions/v2/helloAuditLog/package.json index c73316a5bd1..45d44de9e32 100644 --- a/functions/v2/helloAuditLog/package.json +++ b/functions/v2/helloAuditLog/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "dependencies": { - "@google-cloud/functions-framework": "^3.0.0" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/functions/v2/helloBigQuery/package.json b/functions/v2/helloBigQuery/package.json index 19f72c4ca1a..6add609b17b 100644 --- a/functions/v2/helloBigQuery/package.json +++ b/functions/v2/helloBigQuery/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000 --exit" }, "dependencies": { - "@google-cloud/bigquery": "^7.0.0", - "@google-cloud/functions-framework": "^3.1.0" + "@google-cloud/bigquery": "^8.0.0", + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/functions/v2/helloGCS/package.json b/functions/v2/helloGCS/package.json index 307aac23920..c0d8978a973 100644 --- a/functions/v2/helloGCS/package.json +++ b/functions/v2/helloGCS/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "dependencies": { - "@google-cloud/functions-framework": "^3.0.0" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/functions/v2/helloPubSub/package.json b/functions/v2/helloPubSub/package.json index c5432fd41da..20e1fd38dcd 100644 --- a/functions/v2/helloPubSub/package.json +++ b/functions/v2/helloPubSub/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "dependencies": { - "@google-cloud/functions-framework": "^3.0.0" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0", "uuid": "^10.0.0" } diff --git a/functions/v2/httpLogging/package.json b/functions/v2/httpLogging/package.json index 2466e871189..bca51559c1b 100644 --- a/functions/v2/httpLogging/package.json +++ b/functions/v2/httpLogging/package.json @@ -13,12 +13,12 @@ "start": "npx @google-cloud/functions-framework --target=structuredLogging" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.1", + "@google-cloud/functions-framework": "^5.0.0", "@google-cloud/logging": "^11.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } \ No newline at end of file diff --git a/functions/v2/imagemagick/package.json b/functions/v2/imagemagick/package.json index 3b9b2ede572..b78dc5fab9b 100644 --- a/functions/v2/imagemagick/package.json +++ b/functions/v2/imagemagick/package.json @@ -15,16 +15,16 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000 --exit" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.0", + "@google-cloud/functions-framework": "^5.0.0", "@google-cloud/storage": "^7.0.0", - "@google-cloud/vision": "^4.0.0", + "@google-cloud/vision": "^5.0.0", "sharp": "^0.34.5" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } \ No newline at end of file diff --git a/functions/v2/log/processEntry/package.json b/functions/v2/log/processEntry/package.json index 8a63b117a4b..6f1af5ff512 100644 --- a/functions/v2/log/processEntry/package.json +++ b/functions/v2/log/processEntry/package.json @@ -15,11 +15,11 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" } } diff --git a/functions/v2/ocr/app/package.json b/functions/v2/ocr/app/package.json index c3351a28bff..5cd4dd2e557 100644 --- a/functions/v2/ocr/app/package.json +++ b/functions/v2/ocr/app/package.json @@ -15,17 +15,17 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000" }, "dependencies": { - "@google-cloud/functions-framework": "^3.2.0", - "@google-cloud/pubsub": "^4.0.0", + "@google-cloud/functions-framework": "^5.0.0", + "@google-cloud/pubsub": "^5.0.0", "@google-cloud/storage": "^7.0.0", - "@google-cloud/translate": "^8.0.0", - "@google-cloud/vision": "^4.0.0", - "cloudevents": "^8.0.0" + "@google-cloud/translate": "^9.0.0", + "@google-cloud/vision": "^5.0.0", + "cloudevents": "^10.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/functions/v2/responseStreaming/package.json b/functions/v2/responseStreaming/package.json index c8ea7719f4f..d9e9be47c7a 100644 --- a/functions/v2/responseStreaming/package.json +++ b/functions/v2/responseStreaming/package.json @@ -15,13 +15,13 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=20000" }, "dependencies": { - "@google-cloud/bigquery": "^7.0.0", - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/bigquery": "^8.0.0", + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/functions/v2/stopBilling/package.json b/functions/v2/stopBilling/package.json index 1f0a4b90864..d0957a7aeb3 100644 --- a/functions/v2/stopBilling/package.json +++ b/functions/v2/stopBilling/package.json @@ -14,11 +14,11 @@ "license": "Apache-2.0", "dependencies": { "@google-cloud/billing": "^5.1.0", - "@google-cloud/functions-framework": "^4.0.0", + "@google-cloud/functions-framework": "^5.0.0", "cloudevents": "^10.0.0", - "gcp-metadata": "^7.0.1" + "gcp-metadata": "^8.0.0" }, "devDependencies": { - "c8": "^10.1.3" + "c8": "^11.0.0" } } \ No newline at end of file diff --git a/functions/v2/tips/avoidInfiniteRetries/package.json b/functions/v2/tips/avoidInfiniteRetries/package.json index d37623027c3..468344f764e 100644 --- a/functions/v2/tips/avoidInfiniteRetries/package.json +++ b/functions/v2/tips/avoidInfiniteRetries/package.json @@ -15,11 +15,11 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.2.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/functions/v2/tips/retry/package.json b/functions/v2/tips/retry/package.json index 211ca2ef855..71b2e1845f2 100644 --- a/functions/v2/tips/retry/package.json +++ b/functions/v2/tips/retry/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000 --exit" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" }, "dependencies": { - "@google-cloud/functions-framework": "^3.1.3" + "@google-cloud/functions-framework": "^5.0.0" } } diff --git a/functions/v2/typed/googlechatbot/package.json b/functions/v2/typed/googlechatbot/package.json index a14d5af6fcf..affffc602b5 100644 --- a/functions/v2/typed/googlechatbot/package.json +++ b/functions/v2/typed/googlechatbot/package.json @@ -9,11 +9,11 @@ "author": "", "license": "ISC", "dependencies": { - "@google-cloud/functions-framework": "^3.3.0" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.2.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/functions/v2/typed/greeting/package.json b/functions/v2/typed/greeting/package.json index cdece30e7cc..557873fc989 100644 --- a/functions/v2/typed/greeting/package.json +++ b/functions/v2/typed/greeting/package.json @@ -9,11 +9,11 @@ "author": "", "license": "ISC", "dependencies": { - "@google-cloud/functions-framework": "^3.3.0" + "@google-cloud/functions-framework": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.2.0", - "sinon": "^18.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0" } } diff --git a/genai/batch-prediction/package.json b/genai/batch-prediction/package.json index 74d7f072ce7..8a3fb29fa36 100644 --- a/genai/batch-prediction/package.json +++ b/genai/batch-prediction/package.json @@ -18,12 +18,12 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js test/**/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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.3" } } diff --git a/genai/bounding-box/package.json b/genai/bounding-box/package.json index 5118da2e423..3d72d07f526 100644 --- a/genai/bounding-box/package.json +++ b/genai/bounding-box/package.json @@ -10,13 +10,13 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0", + "@google/genai": "2.4.0", "canvas": "^3.2.0", - "node-fetch": "^2.7.0" + "node-fetch": "^3.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" } } diff --git a/genai/content-cache/package.json b/genai/content-cache/package.json index 5ab6dc42b3b..f6fc9dad843 100644 --- a/genai/content-cache/package.json +++ b/genai/content-cache/package.json @@ -10,12 +10,12 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0", + "@google/genai": "2.4.0", "luxon": "^3.7.1" }, "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" } } diff --git a/genai/controlled-generation/package.json b/genai/controlled-generation/package.json index 08dd02ee9c3..1eb6bee29e0 100644 --- a/genai/controlled-generation/package.json +++ b/genai/controlled-generation/package.json @@ -10,11 +10,11 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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" } } diff --git a/genai/count-tokens/package.json b/genai/count-tokens/package.json index 8b797ab0c44..2a2409d130a 100644 --- a/genai/count-tokens/package.json +++ b/genai/count-tokens/package.json @@ -10,11 +10,11 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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" } } diff --git a/genai/embeddings/package.json b/genai/embeddings/package.json index 7d82cd5e2e6..f6e70bee63c 100644 --- a/genai/embeddings/package.json +++ b/genai/embeddings/package.json @@ -18,11 +18,11 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js test/**/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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" } } diff --git a/genai/express-mode/package.json b/genai/express-mode/package.json index 1df8e9b34e5..e29a4dcde28 100644 --- a/genai/express-mode/package.json +++ b/genai/express-mode/package.json @@ -18,12 +18,12 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js test/**/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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.3" } } diff --git a/genai/image-generation/package.json b/genai/image-generation/package.json index e2d15a69d69..3fc70de0a77 100644 --- a/genai/image-generation/package.json +++ b/genai/image-generation/package.json @@ -11,14 +11,14 @@ }, "dependencies": { "@google-cloud/storage": "^7.17.3", - "@google/genai": "1.34.0", + "@google/genai": "2.4.0", "date-fns": "^4.1.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.3", - "sinon": "^21.1.2" + "sinon": "^22.0.0" } } diff --git a/genai/live/package.json b/genai/live/package.json index 6df7d1b49b7..5c8caf90671 100644 --- a/genai/live/package.json +++ b/genai/live/package.json @@ -10,16 +10,16 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0", + "@google/genai": "2.4.0", "google-auth-library": "^10.3.0", - "node-fetch": "^2.7.0", - "openai": "^5.19.1" + "node-fetch": "^3.0.0", + "openai": "^6.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.3", - "sinon": "^18.0.0" + "sinon": "^22.0.0" } } diff --git a/genai/package.json b/genai/package.json index f14d1d38f78..ab1fa006b97 100644 --- a/genai/package.json +++ b/genai/package.json @@ -14,7 +14,7 @@ "*.js" ], "dependencies": { - "@google/genai": "1.34.0", + "@google/genai": "2.4.0", "axios": "^1.6.2", "luxon": "^3.7.2", "node-fetch": "^3.3.2", @@ -26,12 +26,12 @@ "supertest": "^7.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "node-fetch": "^2.7.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", + "node-fetch": "^3.0.0", "proxyquire": "^2.1.3", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "uuid": "^10.0.0" } } diff --git a/genai/provisioned-throughput/package.json b/genai/provisioned-throughput/package.json index 12bbc618e28..bcd2447a51f 100644 --- a/genai/provisioned-throughput/package.json +++ b/genai/provisioned-throughput/package.json @@ -18,11 +18,11 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js test/**/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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" } } diff --git a/genai/safety/package.json b/genai/safety/package.json index 6923065a929..8c0e45daa78 100644 --- a/genai/safety/package.json +++ b/genai/safety/package.json @@ -18,11 +18,11 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js test/**/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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" } } diff --git a/genai/text-generation/package.json b/genai/text-generation/package.json index 409a09dd2fa..3f12a752082 100644 --- a/genai/text-generation/package.json +++ b/genai/text-generation/package.json @@ -10,11 +10,11 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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" } } diff --git a/genai/thinking/package.json b/genai/thinking/package.json index eb92893f300..a2b4031b6a3 100644 --- a/genai/thinking/package.json +++ b/genai/thinking/package.json @@ -10,11 +10,11 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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" } } diff --git a/genai/tools/package.json b/genai/tools/package.json index 4e5e1aed4ee..bf7d0e97b66 100644 --- a/genai/tools/package.json +++ b/genai/tools/package.json @@ -10,11 +10,11 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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" } } diff --git a/genai/tuning/package.json b/genai/tuning/package.json index 44ccf7e8137..16594f6e2df 100644 --- a/genai/tuning/package.json +++ b/genai/tuning/package.json @@ -10,12 +10,12 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js" }, "dependencies": { - "@google/genai": "1.30.0" + "@google/genai": "2.4.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.3" } } diff --git a/genai/video-generation/package.json b/genai/video-generation/package.json index 7fa7f58d1c3..a6e091c474c 100644 --- a/genai/video-generation/package.json +++ b/genai/video-generation/package.json @@ -19,11 +19,11 @@ }, "dependencies": { "@google-cloud/storage": "^7.17.3", - "@google/genai": "1.30.0" + "@google/genai": "2.4.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" } } diff --git a/generative-ai/snippets/package.json b/generative-ai/snippets/package.json index 1aedba79e3b..29e2c9bab28 100644 --- a/generative-ai/snippets/package.json +++ b/generative-ai/snippets/package.json @@ -13,16 +13,16 @@ "test": "c8 mocha -p -j 2 --timeout 2400000 test/*.test.js test/**/*.test.js" }, "dependencies": { - "@google-cloud/aiplatform": "^3.12.0", + "@google-cloud/aiplatform": "^6.0.0", "@google-cloud/vertexai": "github:googleapis/nodejs-vertexai", "axios": "^1.6.2", "supertest": "^7.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "uuid": "^10.0.0" } } diff --git a/healthcare/consent/package.json b/healthcare/consent/package.json index 8e610ed312b..293f977aee8 100644 --- a/healthcare/consent/package.json +++ b/healthcare/consent/package.json @@ -12,11 +12,11 @@ "test": "c8 mocha -p -j 2 system-test/*.test.js --timeout=60000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" }, "dependencies": { - "@googleapis/healthcare": "^23.0.0" + "@googleapis/healthcare": "^26.0.0" } } diff --git a/healthcare/datasets/package.json b/healthcare/datasets/package.json index 8e610ed312b..293f977aee8 100644 --- a/healthcare/datasets/package.json +++ b/healthcare/datasets/package.json @@ -12,11 +12,11 @@ "test": "c8 mocha -p -j 2 system-test/*.test.js --timeout=60000" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" }, "dependencies": { - "@googleapis/healthcare": "^23.0.0" + "@googleapis/healthcare": "^26.0.0" } } diff --git a/healthcare/dicom/package.json b/healthcare/dicom/package.json index 59fe7d1b58d..244d7e443f0 100644 --- a/healthcare/dicom/package.json +++ b/healthcare/dicom/package.json @@ -12,13 +12,13 @@ "test": "c8 mocha -p -j 2 system-test/*.test.js --timeout=60000" }, "devDependencies": { - "@google-cloud/pubsub": "^4.0.0", + "@google-cloud/pubsub": "^5.0.0", "@google-cloud/storage": "^7.0.0", - "c8": "^10.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" }, "dependencies": { - "@googleapis/healthcare": "^23.0.0" + "@googleapis/healthcare": "^26.0.0" } } diff --git a/healthcare/fhir/package.json b/healthcare/fhir/package.json index 683d4bec14a..919650c3908 100644 --- a/healthcare/fhir/package.json +++ b/healthcare/fhir/package.json @@ -12,14 +12,14 @@ "test": "c8 mocha system-test/*.test.js --timeout=60000" }, "devDependencies": { - "@google-cloud/pubsub": "^4.0.0", + "@google-cloud/pubsub": "^5.0.0", "@google-cloud/storage": "^7.0.0", - "c8": "^10.0.0", - "google-auth-library": "^9.0.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "google-auth-library": "^10.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" }, "dependencies": { - "@googleapis/healthcare": "^23.0.0" + "@googleapis/healthcare": "^26.0.0" } } diff --git a/healthcare/hl7v2/package.json b/healthcare/hl7v2/package.json index e72bd475c5d..cac8f48a1d5 100644 --- a/healthcare/hl7v2/package.json +++ b/healthcare/hl7v2/package.json @@ -12,12 +12,12 @@ "test": "c8 mocha -p -j 2 system-test/*.test.js --timeout=60000" }, "devDependencies": { - "@google-cloud/pubsub": "^4.0.0", - "c8": "^10.0.0", - "mocha": "^10.0.0", + "@google-cloud/pubsub": "^5.0.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" }, "dependencies": { - "@googleapis/healthcare": "^23.0.0" + "@googleapis/healthcare": "^26.0.0" } } diff --git a/iam/deny/package.json b/iam/deny/package.json index 2b4e04eacf9..a27f6e71ec1 100644 --- a/iam/deny/package.json +++ b/iam/deny/package.json @@ -14,12 +14,12 @@ "test": "c8 mocha -p -j 2 test/*.test.js --timeout=60000" }, "dependencies": { - "@google-cloud/iam": "^1.0.0" + "@google-cloud/iam": "^2.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", "uuid": "^10.0.0" } } diff --git a/kms/package.json b/kms/package.json index 26be9f131aa..186f98cced7 100644 --- a/kms/package.json +++ b/kms/package.json @@ -14,13 +14,13 @@ "test": "c8 mocha -p -j 2 --recursive test/ --timeout=800000" }, "dependencies": { - "@google-cloud/kms": "^4.0.0", + "@google-cloud/kms": "^5.0.0", "fast-crc32c": "^2.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", "uuid": "^10.0.0" } } diff --git a/media/livestream/package.json b/media/livestream/package.json index f905e3ed86c..8505daa25ab 100644 --- a/media/livestream/package.json +++ b/media/livestream/package.json @@ -13,12 +13,12 @@ "test": "c8 mocha -p -j 2 --timeout 600000 test/*.js" }, "dependencies": { - "@google-cloud/livestream": "^1.0.0" + "@google-cloud/livestream": "^2.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.1.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/media/transcoder/package.json b/media/transcoder/package.json index 10fc880306d..71553cc3781 100644 --- a/media/transcoder/package.json +++ b/media/transcoder/package.json @@ -14,12 +14,12 @@ "test": "c8 mocha -p -j 2 --timeout 600000 test/*.js" }, "dependencies": { - "@google-cloud/video-transcoder": "^3.0.0" + "@google-cloud/video-transcoder": "^4.0.0" }, "devDependencies": { "@google-cloud/storage": "^7.0.0", - "c8": "^10.0.0", - "mocha": "^10.1.0", + "c8": "^11.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/media/video-stitcher/package.json b/media/video-stitcher/package.json index 8a6c1b873e4..60902e5c753 100644 --- a/media/video-stitcher/package.json +++ b/media/video-stitcher/package.json @@ -13,12 +13,12 @@ "test": "c8 mocha -p -j 2 --timeout 600000 test/*.js" }, "dependencies": { - "@google-cloud/video-stitcher": "^2.0.0" + "@google-cloud/video-stitcher": "^3.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.1.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/mediatranslation/package.json b/mediatranslation/package.json index fa4c5f93b16..c9d5f516701 100644 --- a/mediatranslation/package.json +++ b/mediatranslation/package.json @@ -13,12 +13,12 @@ "test": "c8 mocha -p -j 2 --timeout 600000 test/*.js" }, "dependencies": { - "@google-cloud/media-translation": "^4.0.0", + "@google-cloud/media-translation": "^5.0.0", "node-record-lpcm16": "1.0.1" }, "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" } } \ No newline at end of file diff --git a/memorystore/redis/cloud_run_deployment/Dockerfile b/memorystore/redis/cloud_run_deployment/Dockerfile index 50c6d9522ea..0eb1398ec63 100644 --- a/memorystore/redis/cloud_run_deployment/Dockerfile +++ b/memorystore/redis/cloud_run_deployment/Dockerfile @@ -1,6 +1,6 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/memorystore/redis/gke_deployment/Dockerfile b/memorystore/redis/gke_deployment/Dockerfile index 6f569a1769a..e11c274abe7 100644 --- a/memorystore/redis/gke_deployment/Dockerfile +++ b/memorystore/redis/gke_deployment/Dockerfile @@ -11,7 +11,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM node:20-alpine +FROM node:24-alpine ENV REDISHOST redis ENV REDISPORT 6379 diff --git a/memorystore/redis/package.json b/memorystore/redis/package.json index fa63678aca9..2b6bf1cd1b9 100644 --- a/memorystore/redis/package.json +++ b/memorystore/redis/package.json @@ -9,7 +9,7 @@ "node": ">=16.0.0" }, "dependencies": { - "redis": "^4.0.0" + "redis": "^5.0.0" } } diff --git a/model-armor/package.json b/model-armor/package.json index 88b2a98f813..d43e7a866c3 100644 --- a/model-armor/package.json +++ b/model-armor/package.json @@ -18,9 +18,9 @@ "@google-cloud/dlp": "^6.3.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^5.2.1", + "c8": "^11.0.0", + "chai": "^6.0.0", "mocha": "^11.7.1", - "uuid": "^11.1.0" + "uuid": "^14.0.0" } } diff --git a/monitoring/prometheus/package.json b/monitoring/prometheus/package.json index 52ad75a3f69..9d2487c3bfc 100644 --- a/monitoring/prometheus/package.json +++ b/monitoring/prometheus/package.json @@ -10,12 +10,12 @@ "author": "Yuri Grinshteyn", "license": "Apache-2.0", "dependencies": { - "express": "^4.17.1", + "express": "^5.0.0", "prom-client": "^15.0.0", "sleep": "^6.3.0" }, "devDependencies": { - "mocha": "^10.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } diff --git a/monitoring/snippets/package.json b/monitoring/snippets/package.json index b6599d983e3..e12f5918e94 100644 --- a/monitoring/snippets/package.json +++ b/monitoring/snippets/package.json @@ -14,13 +14,13 @@ "test": "c8 mocha -p -j 2 --timeout 600000" }, "dependencies": { - "@google-cloud/monitoring": "^4.0.0", - "c8": "^10.0.0", - "yargs": "^17.0.0" + "@google-cloud/monitoring": "^5.0.0", + "c8": "^11.0.0", + "yargs": "^18.0.0" }, "devDependencies": { - "chai": "^4.5.0", - "mocha": "^10.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/package.json b/package.json index b239c7ad548..ad541a1c106 100644 --- a/package.json +++ b/package.json @@ -20,18 +20,18 @@ "devDependencies": { "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", - "c8": "^10.0.0", - "eslint-config-prettier": "^9.0.0", - "eslint-plugin-n": "^14.0.0", + "c8": "^11.0.0", + "eslint-config-prettier": "^10.0.0", + "eslint-plugin-n": "^18.0.0", "eslint-plugin-prettier": "^5.0.0-alpha.1", - "gts": "5.3.0", - "mocha": "^10.2.0", + "gts": "7.0.0", + "mocha": "^11.0.0", "nunjucks": "^3.2.4", "prettier": "^3.0.3", - "typescript": "^5.0.4" + "typescript": "^6.0.0" }, "dependencies": { - "commander": "^12.0.0", - "eslint": "^8.57.0" + "commander": "^14.0.0", + "eslint": "^10.0.0" } } diff --git a/parametermanager/package.json b/parametermanager/package.json index 51ac77d4541..6c5d2d2134e 100644 --- a/parametermanager/package.json +++ b/parametermanager/package.json @@ -20,11 +20,11 @@ "@google-cloud/parametermanager": "^0.3.0" }, "devDependencies": { - "@google-cloud/kms": "^4.0.0", - "@google-cloud/secret-manager": "^5.6.0", - "c8": "^10.1.3", - "chai": "^4.5.0", + "@google-cloud/kms": "^5.0.0", + "@google-cloud/secret-manager": "^6.0.0", + "c8": "^11.0.0", + "chai": "^6.0.0", "mocha": "^11.1.0", - "uuid": "^11.0.5" + "uuid": "^14.0.0" } } diff --git a/recaptcha_enterprise/demosite/app/Dockerfile b/recaptcha_enterprise/demosite/app/Dockerfile index ed182e97625..21b83c425ee 100644 --- a/recaptcha_enterprise/demosite/app/Dockerfile +++ b/recaptcha_enterprise/demosite/app/Dockerfile @@ -14,7 +14,7 @@ # This file is only used for packaging and deployment purposes. -FROM node:20-slim +FROM node:24-slim ARG GOOGLE_CLOUD_PROJECT ENV GOOGLE_CLOUD_PROJECT=${GOOGLE_CLOUD_PROJECT} diff --git a/recaptcha_enterprise/snippets/package.json b/recaptcha_enterprise/snippets/package.json index c9e10bf1bb2..b3e53fd6f60 100644 --- a/recaptcha_enterprise/snippets/package.json +++ b/recaptcha_enterprise/snippets/package.json @@ -19,20 +19,20 @@ "test": "c8 mocha -p -j 2 --loader=ts-node/esm --extension ts --timeout 10000 --exit" }, "dependencies": { - "@google-cloud/recaptcha-enterprise": "^5.0.0", - "body-parser": "^1.20.1", - "express": "^4.18.2", + "@google-cloud/recaptcha-enterprise": "^6.0.0", + "body-parser": "^2.0.0", + "express": "^5.0.0", "recaptcha-password-check-helpers": "^1.0.1" }, "devDependencies": { - "@types/express": "^4.17.17", - "@types/node": "^20.0.0", + "@types/express": "^5.0.0", + "@types/node": "^24.0.0", "@types/yargs": "^17.0.19", - "c8": "^10.0.0", - "eslint": "^8.57.0", - "gts": "^5.0.0", - "mocha": "^10.2.0", + "c8": "^11.0.0", + "eslint": "^10.0.0", + "gts": "^7.0.0", + "mocha": "^11.0.0", "ts-node": "^10.9.1", - "typescript": "^5.0.0" + "typescript": "^6.0.0" } } diff --git a/retail/package.json b/retail/package.json index 7ecfac91975..e22437960d5 100644 --- a/retail/package.json +++ b/retail/package.json @@ -16,13 +16,13 @@ "node": ">=16.0.0" }, "dependencies": { - "@google-cloud/bigquery": "^7.0.0", - "@google-cloud/retail": "^3.0.0", + "@google-cloud/bigquery": "^8.0.0", + "@google-cloud/retail": "^4.0.0", "@google-cloud/storage": "^7.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.2.0" + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0" } } diff --git a/routeoptimization/snippets/package.json b/routeoptimization/snippets/package.json index 4bfa6f1968a..8ad8b0338dc 100644 --- a/routeoptimization/snippets/package.json +++ b/routeoptimization/snippets/package.json @@ -17,8 +17,8 @@ "@googlemaps/routeoptimization": "^0.1.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" } } diff --git a/run/hello-broken/Dockerfile b/run/hello-broken/Dockerfile index bf2f2c32f9c..aaeb436a920 100644 --- a/run/hello-broken/Dockerfile +++ b/run/hello-broken/Dockerfile @@ -16,7 +16,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/run/hello-broken/package.json b/run/hello-broken/package.json index 51273096534..67ce76b6325 100644 --- a/run/hello-broken/package.json +++ b/run/hello-broken/package.json @@ -15,12 +15,12 @@ "author": "Google LLC", "license": "Apache-2.0", "dependencies": { - "express": "^4.17.1" + "express": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "google-auth-library": "^9.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0" + "c8": "^11.0.0", + "google-auth-library": "^10.0.0", + "got": "^15.0.0", + "mocha": "^11.0.0" } } diff --git a/run/helloworld/Dockerfile b/run/helloworld/Dockerfile index 43bb5475e3d..2f7080df181 100644 --- a/run/helloworld/Dockerfile +++ b/run/helloworld/Dockerfile @@ -16,7 +16,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/run/helloworld/package.json b/run/helloworld/package.json index 62cccf4d378..4a15b7df237 100644 --- a/run/helloworld/package.json +++ b/run/helloworld/package.json @@ -18,13 +18,13 @@ "author": "Google LLC", "license": "Apache-2.0", "dependencies": { - "express": "^4.17.1" + "express": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "google-auth-library": "^9.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "google-auth-library": "^10.0.0", + "got": "^15.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/run/idp-sql/Dockerfile b/run/idp-sql/Dockerfile index 0d33affacf8..e4210c74976 100644 --- a/run/idp-sql/Dockerfile +++ b/run/idp-sql/Dockerfile @@ -14,7 +14,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/run/idp-sql/package.json b/run/idp-sql/package.json index 1febe629596..d62d12d66d6 100644 --- a/run/idp-sql/package.json +++ b/run/idp-sql/package.json @@ -20,21 +20,21 @@ "test": "npm -- run all-test" }, "dependencies": { - "express": "^4.16.2", + "express": "^5.0.0", "firebase-admin": "^13.0.0", - "gcp-metadata": "^6.0.0", - "google-auth-library": "^9.0.0", + "gcp-metadata": "^8.0.0", + "google-auth-library": "^10.0.0", "handlebars": "^4.7.6", "knex": "^3.0.0", "pg": "^8.0.0", "winston": "3.10.0" }, "devDependencies": { - "c8": "^10.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0", - "short-uuid": "^5.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "got": "^15.0.0", + "mocha": "^11.0.0", + "short-uuid": "^6.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/run/image-processing/Dockerfile b/run/image-processing/Dockerfile index a4eba4ab232..d69679793b6 100644 --- a/run/image-processing/Dockerfile +++ b/run/image-processing/Dockerfile @@ -14,7 +14,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # [START cloudrun_imageproc_dockerfile_nodejs] # Install Imagemagick into the container image. diff --git a/run/image-processing/package.json b/run/image-processing/package.json index 8b062ebf5b6..e6149a54649 100644 --- a/run/image-processing/package.json +++ b/run/image-processing/package.json @@ -20,15 +20,15 @@ }, "dependencies": { "@google-cloud/storage": "^7.0.0", - "@google-cloud/vision": "^4.0.0", - "express": "^4.16.4", + "@google-cloud/vision": "^5.0.0", + "express": "^5.0.0", "sharp": "^0.34.5" }, "devDependencies": { - "c8": "^10.0.0", - "google-auth-library": "^9.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "google-auth-library": "^10.0.0", + "got": "^15.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/run/jobs/package.json b/run/jobs/package.json index 4b7092aaff9..6ed85b5dc5b 100644 --- a/run/jobs/package.json +++ b/run/jobs/package.json @@ -15,7 +15,7 @@ "license": "Apache-2.0", "devDependencies": { "@google-cloud/logging": "^11.0.0", - "c8": "^10.0.0", - "mocha": "^10.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0" } } diff --git a/run/logging-manual/Dockerfile b/run/logging-manual/Dockerfile index c395ddd0c57..a00dbc4086d 100644 --- a/run/logging-manual/Dockerfile +++ b/run/logging-manual/Dockerfile @@ -14,7 +14,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/run/logging-manual/package.json b/run/logging-manual/package.json index 5098c9d6ca8..228de289fc2 100644 --- a/run/logging-manual/package.json +++ b/run/logging-manual/package.json @@ -18,13 +18,13 @@ "author": "", "license": "Apache-2.0", "dependencies": { - "express": "^4.17.1", - "got": "^11.5.0" + "express": "^5.0.0", + "got": "^15.0.0" }, "devDependencies": { "@google-cloud/logging": "^11.0.0", - "c8": "^10.0.0", - "google-auth-library": "^9.0.0", - "mocha": "^10.0.0" + "c8": "^11.0.0", + "google-auth-library": "^10.0.0", + "mocha": "^11.0.0" } } diff --git a/run/markdown-preview/editor/Dockerfile b/run/markdown-preview/editor/Dockerfile index f0f2b5edd1b..0f4c3c2158d 100644 --- a/run/markdown-preview/editor/Dockerfile +++ b/run/markdown-preview/editor/Dockerfile @@ -14,7 +14,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/run/markdown-preview/editor/package.json b/run/markdown-preview/editor/package.json index 61179d8b081..2ab7ca45c24 100644 --- a/run/markdown-preview/editor/package.json +++ b/run/markdown-preview/editor/package.json @@ -22,13 +22,13 @@ "system-test": "c8 mocha -p -j 2 test/system.test.js --timeout=480000 --exit" }, "dependencies": { - "express": "^4.17.1", - "google-auth-library": "^9.0.0", - "got": "^14.6.5", + "express": "^5.0.0", + "google-auth-library": "^10.0.0", + "got": "^15.0.0", "handlebars": "^4.7.8" }, "devDependencies": { - "c8": "^10.0.0", + "c8": "^11.0.0", "mocha": "^11.0.0", "supertest": "^7.0.0" } diff --git a/run/markdown-preview/renderer/Dockerfile b/run/markdown-preview/renderer/Dockerfile index 58e8aa32bc6..1f8d6c60fe1 100644 --- a/run/markdown-preview/renderer/Dockerfile +++ b/run/markdown-preview/renderer/Dockerfile @@ -14,7 +14,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/run/markdown-preview/renderer/package.json b/run/markdown-preview/renderer/package.json index 6f7b5cf0bb2..7f4b0829dad 100644 --- a/run/markdown-preview/renderer/package.json +++ b/run/markdown-preview/renderer/package.json @@ -21,15 +21,15 @@ "system-test": "c8 mocha -p -j 2 test/system.test.js --timeout=360000 --exit" }, "dependencies": { - "express": "^4.17.1", + "express": "^5.0.0", "markdown-it": "^14.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "google-auth-library": "^9.0.0", - "got": "^14.6.5", + "c8": "^11.0.0", + "google-auth-library": "^10.0.0", + "got": "^15.0.0", "mocha": "^11.0.0", - "sinon": "^18.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0" } } diff --git a/run/pubsub/Dockerfile b/run/pubsub/Dockerfile index 69f9f5fb7db..d6a49a9a9e1 100644 --- a/run/pubsub/Dockerfile +++ b/run/pubsub/Dockerfile @@ -16,7 +16,7 @@ # Use the official lightweight Node.js image. # https://hub.docker.com/_/node -FROM node:20-slim +FROM node:24-slim # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/run/pubsub/package.json b/run/pubsub/package.json index 990ae8ba546..59d5be296f6 100644 --- a/run/pubsub/package.json +++ b/run/pubsub/package.json @@ -19,14 +19,14 @@ "system-test": "c8 mocha -p -j 2 test/system.test.js --timeout=360000 --exit" }, "dependencies": { - "express": "^4.16.4" + "express": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "google-auth-library": "^9.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "c8": "^11.0.0", + "google-auth-library": "^10.0.0", + "got": "^15.0.0", + "mocha": "^11.0.0", + "sinon": "^22.0.0", "supertest": "^7.0.0", "uuid": "^10.0.0" } diff --git a/run/system-package/Dockerfile b/run/system-package/Dockerfile index d462084ab10..3010d19f242 100644 --- a/run/system-package/Dockerfile +++ b/run/system-package/Dockerfile @@ -14,7 +14,7 @@ # Use the official super-lightweight Node image. # https://hub.docker.com/_/node -FROM node:20-alpine +FROM node:24-alpine # Create and change to the app directory. WORKDIR /usr/src/app diff --git a/run/system-package/package.json b/run/system-package/package.json index da69b8fc227..b9430783b16 100644 --- a/run/system-package/package.json +++ b/run/system-package/package.json @@ -15,13 +15,13 @@ "node": ">=18.0.0" }, "dependencies": { - "express": "^4.17.1" + "express": "^5.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "google-auth-library": "^9.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "google-auth-library": "^10.0.0", + "got": "^15.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/run/websockets/package.json b/run/websockets/package.json index f9c96b0be9a..527a4242049 100644 --- a/run/websockets/package.json +++ b/run/websockets/package.json @@ -16,16 +16,16 @@ }, "dependencies": { "@socket.io/redis-adapter": "^8.1.0", - "express": "^4.18.2", - "redis": "^4.6.5", + "express": "^5.0.0", + "redis": "^5.0.0", "socket.io": "4.7.2" }, "devDependencies": { - "@types/express": "^4.17.17", - "c8": "^10.0.0", - "google-auth-library": "^9.0.0", - "got": "^11.5.0", - "mocha": "^10.2.0", - "puppeteer": "^23.0.0" + "@types/express": "^5.0.0", + "c8": "^11.0.0", + "google-auth-library": "^10.0.0", + "got": "^15.0.0", + "mocha": "^11.0.0", + "puppeteer": "^25.0.0" } } diff --git a/scheduler/package.json b/scheduler/package.json index cddfa16809e..2a65285516e 100644 --- a/scheduler/package.json +++ b/scheduler/package.json @@ -18,17 +18,17 @@ "test": "c8 mocha -p -j 2 --loader=ts-node/esm --extension ts --timeout 20000 --exit" }, "dependencies": { - "@google-cloud/scheduler": "^4.0.0" + "@google-cloud/scheduler": "^5.0.0" }, "devDependencies": { - "@types/chai": "^4.3.4", + "@types/chai": "^5.0.0", "@types/mocha": "^10.0.1", - "@types/node": "^20.0.0", - "c8": "^10.0.0", - "chai": "^4.5.0", - "gts": "^5.0.0", - "mocha": "^10.2.0", + "@types/node": "^24.0.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "gts": "^7.0.0", + "mocha": "^11.0.0", "ts-node": "^10.9.1", - "typescript": "^5.0.0" + "typescript": "^6.0.0" } } diff --git a/secret-manager/package.json b/secret-manager/package.json index 7d576c93b4d..23d172a7993 100644 --- a/secret-manager/package.json +++ b/secret-manager/package.json @@ -18,9 +18,9 @@ "@google-cloud/resource-manager": "^6.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", "uuid": "^10.0.0" } } diff --git a/security-center/snippets/package.json b/security-center/snippets/package.json index d4d8a22396a..c9c325c1e8c 100644 --- a/security-center/snippets/package.json +++ b/security-center/snippets/package.json @@ -13,15 +13,15 @@ }, "license": "Apache-2.0", "dependencies": { - "@google-cloud/pubsub": "^4.0.0", - "@google-cloud/security-center": "^8.7.0", + "@google-cloud/pubsub": "^5.0.0", + "@google-cloud/security-center": "^9.0.0", "@google-cloud/securitycentermanagement": "^0.5.0" }, "devDependencies": { - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.4.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0", - "@google-cloud/bigquery": "^7.0.0" + "@google-cloud/bigquery": "^8.0.0" } } diff --git a/service-directory/snippets/package.json b/service-directory/snippets/package.json index 396c4086fda..e52494718e6 100644 --- a/service-directory/snippets/package.json +++ b/service-directory/snippets/package.json @@ -13,12 +13,12 @@ "test": "c8 mocha -p -j 2 --timeout 600000 test/*.js" }, "dependencies": { - "@google-cloud/service-directory": "^5.0.0" + "@google-cloud/service-directory": "^6.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", "uuid": "^10.0.0" } } diff --git a/spanner/package.json b/spanner/package.json index 4d6524f2358..a77231661d7 100644 --- a/spanner/package.json +++ b/spanner/package.json @@ -18,21 +18,21 @@ "@google-cloud/kms": "^5.0.0", "@google-cloud/precise-date": "^5.0.0", "@google-cloud/spanner": "^8.6.0", - "protobufjs": "^7.0.0", - "yargs": "^17.0.0" + "protobufjs": "^8.0.0", + "yargs": "^18.0.0" }, "devDependencies": { - "@google-cloud/opentelemetry-cloud-trace-exporter": "^2.4.1", + "@google-cloud/opentelemetry-cloud-trace-exporter": "^3.0.0", "@opentelemetry/exporter-trace-otlp-grpc": "^0.57.0", "@opentelemetry/instrumentation": "^0.57.0", "@opentelemetry/instrumentation-grpc": "^0.57.0", - "@opentelemetry/resources": "1.30.1", - "@opentelemetry/sdk-trace-base": "~1.30.1", - "@opentelemetry/sdk-trace-node": "^1.30.1", + "@opentelemetry/resources": "2.7.1", + "@opentelemetry/sdk-trace-base": "~2.7.0", + "@opentelemetry/sdk-trace-node": "^2.0.0", "@opentelemetry/api": "^1.9.0", - "@opentelemetry/core": "^1.30.1", - "chai": "^4.2.0", - "mocha": "^9.0.0", - "p-limit": "^3.0.1" + "@opentelemetry/core": "^2.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", + "p-limit": "^7.0.0" } } \ No newline at end of file diff --git a/speech/package.json b/speech/package.json index e1ec2aabaec..d0dd8087b80 100644 --- a/speech/package.json +++ b/speech/package.json @@ -15,18 +15,18 @@ "test": "c8 mocha -p -j 2 system-test --timeout 600000" }, "dependencies": { - "@google-cloud/speech": "^6.0.0", + "@google-cloud/speech": "^7.0.0", "@google-cloud/storage": "^7.0.0", "chalk": "^5.0.0", "fs.promises": "^0.1.2", "node-record-lpcm16": "^1.0.1", - "sinon": "^18.0.0", - "yargs": "^17.0.0" + "sinon": "^22.0.0", + "yargs": "^18.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", "uuid": "^10.0.0" } } diff --git a/storage-control/package.json b/storage-control/package.json index 0f6d9328455..c13aafd40c7 100644 --- a/storage-control/package.json +++ b/storage-control/package.json @@ -14,9 +14,9 @@ "devDependencies": { "@google-cloud/storage": "^7.12.0", "@google-cloud/storage-control": "^0.2.0", - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.7.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/storage/package.json b/storage/package.json index 71acc18ab54..a9af51f3e0b 100644 --- a/storage/package.json +++ b/storage/package.json @@ -16,15 +16,15 @@ "test": "mocha system-test/*.js --timeout 800000" }, "dependencies": { - "@google-cloud/pubsub": "^4.0.0", + "@google-cloud/pubsub": "^5.0.0", "@google-cloud/storage": "^7.19.0", - "node-fetch": "^2.6.7", + "node-fetch": "^3.0.0", "uuid": "^8.0.0", - "yargs": "^16.0.0" + "yargs": "^18.0.0" }, "devDependencies": { - "chai": "^4.2.0", - "mocha": "^8.0.0", - "p-limit": "^3.1.0" + "chai": "^6.0.0", + "mocha": "^11.0.0", + "p-limit": "^7.0.0" } } diff --git a/storagetransfer/package.json b/storagetransfer/package.json index da6571c18a9..0dc53f57350 100644 --- a/storagetransfer/package.json +++ b/storagetransfer/package.json @@ -13,16 +13,16 @@ "test": "c8 mocha -p -j 2 ---parallel --timeout 600000 test/*.test.js" }, "dependencies": { - "@google-cloud/storage-transfer": "^3.0.0" + "@google-cloud/storage-transfer": "^4.0.0" }, "devDependencies": { "@azure/storage-blob": "^12.12.0", "@google-cloud/storage": "^7.0.0", - "@google-cloud/pubsub": "^4.0.5", + "@google-cloud/pubsub": "^5.0.0", "aws-sdk": "^2.1073.0", - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/talent/package.json b/talent/package.json index 4fdaf72e8d6..9a2a6006988 100644 --- a/talent/package.json +++ b/talent/package.json @@ -17,15 +17,15 @@ "lint:fix": "npm run lint -- --fix" }, "dependencies": { - "@google-cloud/talent": "^6.0.0", - "yargs": "^17.0.0" + "@google-cloud/talent": "^7.0.0", + "yargs": "^18.0.0" }, "devDependencies": { "@types/mocha": "^10.0.0", - "@types/node": "^20.0.0", - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", + "@types/node": "^24.0.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/texttospeech/package.json b/texttospeech/package.json index b5b2412730b..fee9593f621 100644 --- a/texttospeech/package.json +++ b/texttospeech/package.json @@ -15,11 +15,11 @@ "lint": "gts lint" }, "dependencies": { - "@google-cloud/text-to-speech": "^5.3.0", - "yargs": "^17.0.0" + "@google-cloud/text-to-speech": "^6.0.0", + "yargs": "^18.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0" } } diff --git a/tpu/package.json b/tpu/package.json index 44140e7f0b2..f4ed37563f2 100644 --- a/tpu/package.json +++ b/tpu/package.json @@ -14,11 +14,11 @@ "test": "c8 mocha -p -j 2 test --timeout 1200000" }, "dependencies": { - "@google-cloud/tpu": "^3.5.0", - "sinon": "^19.0.2" + "@google-cloud/tpu": "^4.0.0", + "sinon": "^22.0.0" }, "devDependencies": { - "c8": "^10.0.0", - "mocha": "^10.0.0" + "c8": "^11.0.0", + "mocha": "^11.0.0" } } \ No newline at end of file diff --git a/translate/package.json b/translate/package.json index 378b15a98a7..10e3768961b 100644 --- a/translate/package.json +++ b/translate/package.json @@ -14,17 +14,17 @@ "test": "c8 mocha -p -j 2 --recursive --timeout 240000" }, "dependencies": { - "@google-cloud/automl": "^4.0.0", - "@google-cloud/text-to-speech": "^5.0.0", - "@google-cloud/translate": "^8.0.0", - "@google-cloud/vision": "^4.0.0", - "yargs": "^17.0.0" + "@google-cloud/automl": "^5.0.0", + "@google-cloud/text-to-speech": "^6.0.0", + "@google-cloud/translate": "^9.0.0", + "@google-cloud/vision": "^5.0.0", + "yargs": "^18.0.0" }, "devDependencies": { "@google-cloud/storage": "^7.0.0", - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/video-intelligence/package.json b/video-intelligence/package.json index c8241bff19a..c1e0330d8bd 100644 --- a/video-intelligence/package.json +++ b/video-intelligence/package.json @@ -15,12 +15,12 @@ "test": "c8 mocha -p -j 2 system-test --timeout=800000" }, "dependencies": { - "@google-cloud/video-intelligence": "^5.0.0", - "yargs": "^17.0.0" + "@google-cloud/video-intelligence": "^6.0.0", + "yargs": "^18.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" } } diff --git a/vision/package.json b/vision/package.json index 06138e90ad1..8e62ed4945f 100644 --- a/vision/package.json +++ b/vision/package.json @@ -13,19 +13,19 @@ "test": "c8 mocha -p -j 2 system-test --timeout 600000" }, "dependencies": { - "@google-cloud/vision": "^4.0.0", + "@google-cloud/vision": "^5.0.0", "natural": "^8.0.0", "pureimage": "^0.3.17", - "redis": "^4.6.5", - "yargs": "^17.7.1" + "redis": "^5.0.0", + "yargs": "^18.0.0" }, "devDependencies": { "@google-cloud/storage": "^7.0.0", - "@types/uuid": "^10.0.0", + "@types/uuid": "^11.0.0", "@types/yargs": "^17.0.22", - "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.2.0", + "c8": "^11.0.0", + "chai": "^6.0.0", + "mocha": "^11.0.0", "uuid": "^10.0.0" } } diff --git a/workflows/invoke-private-endpoint/package.json b/workflows/invoke-private-endpoint/package.json index 6fde33c8eca..d3c4e8c97cf 100644 --- a/workflows/invoke-private-endpoint/package.json +++ b/workflows/invoke-private-endpoint/package.json @@ -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" } } diff --git a/workflows/package.json b/workflows/package.json index 08291bc8f68..7ea7573a300 100644 --- a/workflows/package.json +++ b/workflows/package.json @@ -13,14 +13,14 @@ "test": "c8 mocha -p -j 2 --loader=ts-node/esm --extension ts --timeout 600000 --exit" }, "dependencies": { - "@google-cloud/workflows": "^3.0.0" + "@google-cloud/workflows": "^5.0.0" }, "devDependencies": { "@types/mocha": "^10.0.1", - "@types/node": "^20.0.0", - "c8": "^10.0.0", - "gts": "^5.0.0", - "mocha": "^10.2.0", + "@types/node": "^24.0.0", + "c8": "^11.0.0", + "gts": "^7.0.0", + "mocha": "^11.0.0", "ts-node": "^10.9.1" } } diff --git a/workflows/quickstart/package.json b/workflows/quickstart/package.json index dabe052eace..e824553e54e 100644 --- a/workflows/quickstart/package.json +++ b/workflows/quickstart/package.json @@ -14,13 +14,13 @@ "test": "mocha --loader=ts-node/esm --extension ts --timeout 600000 --exit" }, "dependencies": { - "@google-cloud/workflows": "^3.0.0", - "typescript": "^5.1.6" + "@google-cloud/workflows": "^5.0.0", + "typescript": "^6.0.0" }, "devDependencies": { "@types/mocha": "^10.0.1", - "@types/node": "^20.0.0", - "gts": "^5.0.0", - "mocha": "^10.2.0" + "@types/node": "^24.0.0", + "gts": "^7.0.0", + "mocha": "^11.0.0" } }