diff --git a/ai-platform/snippets/package.json b/ai-platform/snippets/package.json index 4d7ad0964f..725f31727c 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/aiplatform": "^4.0.0", "@google-cloud/bigquery": "^7.0.0", "@google-cloud/storage": "^7.0.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0", - "sinon": "^18.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/appengine/analytics/package.json b/appengine/analytics/package.json index 6601ad1c21..ecb40b992e 100644 --- a/appengine/analytics/package.json +++ b/appengine/analytics/package.json @@ -11,7 +11,7 @@ }, "type": "module", "engines": { - "node": "20.x" + "node": "22.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", + "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 1e1e483490..ad816baa6e 100644 --- a/appengine/building-an-app/build/package.json +++ b/appengine/building-an-app/build/package.json @@ -14,16 +14,16 @@ "url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git" }, "engines": { - "node": "20.x.x" + "node": "22.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", + "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 c320fc6474..3c2eb34050 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": "22.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", + "mocha": "^11.0.0", "proxyquire": "^2.1.3", - "sinon": "^18.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/appengine/datastore/package.json b/appengine/datastore/package.json index 49cf16bb96..b07981a03c 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": "22.x" }, "scripts": { "start": "node app.js", @@ -19,11 +19,11 @@ }, "dependencies": { "@google-cloud/datastore": "^9.0.0", - "express": "^4.16.4" + "express": "^5.0.0" }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/appengine/endpoints/package.json b/appengine/endpoints/package.json index e302c18171..095490f24a 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": "22.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", + "chai": "^5.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^20.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 0a4ed0ec62..69525f7992 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", + "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 9746fa5b43..1f6dd05b39 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", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/appengine/memcached/package.json b/appengine/memcached/package.json index 264c3499db..6690552154 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": "22.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", + "chai": "^5.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 4ff62dd3db..2daa0c97fa 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", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/appengine/metadata/standard/package.json b/appengine/metadata/standard/package.json index 7e4535ebc1..e48bc86abe 100644 --- a/appengine/metadata/standard/package.json +++ b/appengine/metadata/standard/package.json @@ -11,19 +11,19 @@ }, "type": "module", "engines": { - "node": "20.x" + "node": "22.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", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/appengine/pubsub/package.json b/appengine/pubsub/package.json index 95657ab8d9..03a0fef39b 100644 --- a/appengine/pubsub/package.json +++ b/appengine/pubsub/package.json @@ -6,7 +6,7 @@ "license": "Apache Version 2.0", "author": "Google Inc.", "engines": { - "node": "20.x" + "node": "22.x" }, "scripts": { "start": "node app.js", @@ -14,17 +14,17 @@ }, "dependencies": { "@google-cloud/pubsub": "^4.0.0", - "express": "^4.17.1", + "express": "^5.0.0", "google-auth-library": "^9.0.0", "pug": "^3.0.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", + "chai": "^5.0.0", "jsonwebtoken": "^9.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.3", - "sinon": "^18.0.0", + "sinon": "^20.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 9445aee77f..67d6046306 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": "22.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", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/appengine/storage/flexible/package.json b/appengine/storage/flexible/package.json index a9cb78e8e1..00faa91e42 100644 --- a/appengine/storage/flexible/package.json +++ b/appengine/storage/flexible/package.json @@ -10,20 +10,20 @@ }, "dependencies": { "@google-cloud/storage": "^7.0.0", - "express": "^4.18.2", + "express": "^5.0.0", "multer": "^1.4.5-lts.1", "pug": "^3.0.2" }, "devDependencies": { - "@types/express": "^4.17.17", + "@types/express": "^5.0.0", "@types/multer": "^1.4.7", "@types/proxyquire": "^1.3.28", "@types/supertest": "^6.0.0", "@types/uuid": "^10.0.0", "c8": "^10.0.0", - "mocha": "^10.2.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.3", "supertest": "^7.0.0", - "uuid": "^10.0.0" + "uuid": "^11.0.0" } } diff --git a/appengine/storage/standard/package.json b/appengine/storage/standard/package.json index a9cb78e8e1..00faa91e42 100644 --- a/appengine/storage/standard/package.json +++ b/appengine/storage/standard/package.json @@ -10,20 +10,20 @@ }, "dependencies": { "@google-cloud/storage": "^7.0.0", - "express": "^4.18.2", + "express": "^5.0.0", "multer": "^1.4.5-lts.1", "pug": "^3.0.2" }, "devDependencies": { - "@types/express": "^4.17.17", + "@types/express": "^5.0.0", "@types/multer": "^1.4.7", "@types/proxyquire": "^1.3.28", "@types/supertest": "^6.0.0", "@types/uuid": "^10.0.0", "c8": "^10.0.0", - "mocha": "^10.2.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.3", "supertest": "^7.0.0", - "uuid": "^10.0.0" + "uuid": "^11.0.0" } } diff --git a/appengine/typescript/package.json b/appengine/typescript/package.json index be65b8723b..07811e4813 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": "22.x" }, "scripts": { "prepare": "npm run gcp-build", @@ -23,15 +23,15 @@ }, "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", + "@types/express": "^5.0.0", + "@types/node": "^22.0.0", "c8": "^10.0.0", - "chai": "^4.5.0", - "gts": "^5.0.0", - "mocha": "^10.2.0", + "chai": "^5.0.0", + "gts": "^6.0.0", + "mocha": "^11.0.0", "typescript": "^5.0.0", "wait-port": "^1.0.0" } diff --git a/appengine/websockets/package.json b/appengine/websockets/package.json index 411bf073d1..f2c7eb192a 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" + "mocha": "^11.0.0", + "puppeteer": "^24.0.0" } } diff --git a/asset/snippets/package.json b/asset/snippets/package.json index cb47edd476..bd8e69c6a1 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/asset": "^6.0.0", "@google-cloud/bigquery": "^7.0.0", - "@google-cloud/compute": "^4.0.0", - "@google-cloud/resource-manager": "^5.0.0", + "@google-cloud/compute": "^5.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", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "gts": "^6.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", + "uuid": "^11.0.0" } } diff --git a/auth/package.json b/auth/package.json index 71988b2b5f..fabb8c293d 100644 --- a/auth/package.json +++ b/auth/package.json @@ -26,7 +26,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/automl/package.json b/automl/package.json index ed73e722a7..bdf4cfb6a0 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": "^14.0.0" }, "devDependencies": { "@google-cloud/storage": "^7.0.0", "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/batch/package.json b/batch/package.json index 236e107693..78f8e42968 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": "^5.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" + "mocha": "^11.0.0", + "nanoid": "^5.0.0" } } diff --git a/bigquery/cloud-client/package.json b/bigquery/cloud-client/package.json index fb97277d3a..04600251ec 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": "22.x" }, "scripts": { "deploy": "gcloud app deploy", @@ -19,8 +19,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/cloud-language/package.json b/cloud-language/package.json index 3842a0e2f2..8bbb7228c7 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", + "mathjs": "^14.0.0", "yargs": "^17.0.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/cloud-sql/mysql/mysql/Dockerfile b/cloud-sql/mysql/mysql/Dockerfile index aa8ccc39e9..7f8fcf80ee 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:22-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 807370d86b..f44b7b7e30 100644 --- a/cloud-sql/mysql/mysql/package.json +++ b/cloud-sql/mysql/mysql/package.json @@ -21,15 +21,15 @@ "dependencies": { "@google-cloud/functions-framework": "^3.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", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/cloud-sql/mysql/mysql2/Dockerfile b/cloud-sql/mysql/mysql2/Dockerfile index 91c87e8334..5b42797e4f 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:22-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 c3f0b061fd..96640ddce0 100644 --- a/cloud-sql/mysql/mysql2/package.json +++ b/cloud-sql/mysql/mysql2/package.json @@ -20,15 +20,15 @@ "@google-cloud/cloud-sql-connector": "^1.0.0", "@google-cloud/functions-framework": "^3.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", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/cloud-sql/postgres/knex/Dockerfile b/cloud-sql/postgres/knex/Dockerfile index 8457367715..c2c016828b 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:22-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 6451fdf699..3bd45f5ca5 100644 --- a/cloud-sql/postgres/knex/package.json +++ b/cloud-sql/postgres/knex/package.json @@ -22,8 +22,8 @@ "@google-cloud/cloud-sql-connector": "^1.0.0", "@google-cloud/functions-framework": "^3.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", @@ -31,7 +31,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.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 d9371f5832..1f76f66b7d 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:22-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 c048ae73a4..ac6e7e4e52 100644 --- a/cloud-sql/sqlserver/mssql/package.json +++ b/cloud-sql/sqlserver/mssql/package.json @@ -19,15 +19,15 @@ "dependencies": { "@google-cloud/functions-framework": "^3.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", "mssql": "^11.0.0", "pug": "^3.0.0", "winston": "^3.1.0" }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.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 20a5a67205..4265fd4de2 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:22-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 897a5bc7a5..530e0cc2c8 100644 --- a/cloud-sql/sqlserver/tedious/package.json +++ b/cloud-sql/sqlserver/tedious/package.json @@ -20,15 +20,15 @@ "@google-cloud/cloud-sql-connector": "^1.0.0", "@google-cloud/functions-framework": "^3.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", "winston": "^3.1.0" }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/cloud-tasks/snippets/Dockerfile b/cloud-tasks/snippets/Dockerfile index aa93c76ca0..838f81afc1 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:22-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 98a943e419..c731e7c686 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", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/cloud-tasks/tutorial-gcf/app/package.json b/cloud-tasks/tutorial-gcf/app/package.json index b50f8b4c06..fa362b2a2f 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" + "chai": "^5.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 ee2ef53483..28b384c972 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", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" } } diff --git a/cloudbuild/package.json b/cloudbuild/package.json index e872969f39..8e2b73d87b 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" + "chai": "^5.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 f5549691f2..24c51f5d5d 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": "^20.0.0" }, "scripts": { "test": "mocha test/*.test.js --timeout=20000" diff --git a/composer/package.json b/composer/package.json index 861d14a013..8fc9f6f580 100644 --- a/composer/package.json +++ b/composer/package.json @@ -17,7 +17,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0" } } diff --git a/compute/package.json b/compute/package.json index 131aac53f3..6f48ac6073 100644 --- a/compute/package.json +++ b/compute/package.json @@ -14,18 +14,18 @@ "test": "c8 mocha -p -j 2 test --timeout 1200000" }, "dependencies": { - "@google-cloud/compute": "^4.0.0", + "@google-cloud/compute": "^5.0.0", "@sendgrid/mail": "^8.0.0", "nodemailer": "^6.0.0", "nodemailer-smtp-transport": "^2.7.4", - "sinon": "^19.0.2" + "sinon": "^20.0.0" }, "devDependencies": { "@google-cloud/storage": "^7.0.0", "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", + "chai": "^5.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.0.1", - "uuid": "^10.0.0" + "uuid": "^11.0.0" } } diff --git a/contact-center-insights/package.json b/contact-center-insights/package.json index 6c64c9994f..1bd4dc9038 100644 --- a/contact-center-insights/package.json +++ b/contact-center-insights/package.json @@ -14,13 +14,13 @@ }, "dependencies": { "@google-cloud/bigquery": "^7.0.0", - "@google-cloud/contact-center-insights": "^3.0.0", + "@google-cloud/contact-center-insights": "^4.0.0", "@google-cloud/pubsub": "^4.0.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/container-analysis/snippets/package.json b/container-analysis/snippets/package.json index 425af61fb7..0831f32cc4 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/containeranalysis": "^6.0.0", "@google-cloud/pubsub": "^4.0.0", "p-retry": "^6.0.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/container/package.json b/container/package.json index 37f7279944..13c4c34928 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" + "chai": "^5.0.0", + "mocha": "^11.0.0" } } diff --git a/datacatalog/cloud-client/package.json b/datacatalog/cloud-client/package.json index 21cf33a18c..ae7b67e85a 100644 --- a/datacatalog/cloud-client/package.json +++ b/datacatalog/cloud-client/package.json @@ -14,10 +14,10 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "mocha": "^11.0.0", + "uuid": "^11.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 68bb12cb49..809d975f36 100644 --- a/datacatalog/quickstart/package.json +++ b/datacatalog/quickstart/package.json @@ -14,10 +14,10 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "mocha": "^11.0.0", + "uuid": "^11.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 d775469d11..473ff4991b 100644 --- a/datacatalog/snippets/package.json +++ b/datacatalog/snippets/package.json @@ -16,13 +16,13 @@ }, "dependencies": { "@google-cloud/bigquery": "^7.0.0", - "@google-cloud/datacatalog": "^4.0.0" + "@google-cloud/datacatalog": "^5.0.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", + "chai": "^5.0.0", "execa": "^9.0.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/datalabeling/package.json b/datalabeling/package.json index badd53b589..2539242c1a 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" + "chai": "^5.0.0", + "mocha": "^11.0.0" } } diff --git a/dataproc/package.json b/dataproc/package.json index e3516df867..71ba423464 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", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/datastore/functions/package.json b/datastore/functions/package.json index 38aca02bee..e604c466c6 100644 --- a/datastore/functions/package.json +++ b/datastore/functions/package.json @@ -20,11 +20,11 @@ "@google-cloud/functions-framework": "^3.0.0", "c8": "^10.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", - "uuid": "^10.0.0", + "sinon": "^20.0.0", + "uuid": "^11.0.0", "wait-port": "^1.0.4" } } diff --git a/dialogflow-cx/package.json b/dialogflow-cx/package.json index 17c907f70b..303bb644a0 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/dialogflow-cx": "^5.0.0", "@google-cloud/functions-framework": "^3.2.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/dialogflow/package.json b/dialogflow/package.json index 13b2eeb85c..e1a7728d5e 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" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/discoveryengine/package.json b/discoveryengine/package.json index 167a1015be..85ece90cac 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", + "@google-cloud/discoveryengine": "^2.0.0", "p-queue": "^8.0.0" }, "devDependencies": { - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/dlp/package.json b/dlp/package.json index 2ba79f42e8..1648ac92b0 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/dlp": "^6.0.0", "@google-cloud/pubsub": "^4.0.0", "@google-cloud/storage": "^7.0.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", + "chai": "^5.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", - "uuid": "^10.0.0" + "sinon": "^20.0.0", + "uuid": "^11.0.0" } } diff --git a/document-ai/package.json b/document-ai/package.json index a2cce35277..847ab36f8c 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" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/document-warehouse/package.json b/document-warehouse/package.json index c52a4d966a..a8ce463620 100644 --- a/document-warehouse/package.json +++ b/document-warehouse/package.json @@ -7,9 +7,9 @@ "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", diff --git a/endpoints/getting-started-grpc/package.json b/endpoints/getting-started-grpc/package.json index 6f8631cdce..5739b9d8bf 100644 --- a/endpoints/getting-started-grpc/package.json +++ b/endpoints/getting-started-grpc/package.json @@ -22,8 +22,8 @@ "yargs": "^17.0.0" }, "devDependencies": { - "chai": "^4.5.0", - "mocha": "^10.0.0", + "chai": "^5.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 a66f3dc59f..497d63343c 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", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/error-reporting/package.json b/error-reporting/package.json index e55f01caf9..95d9ec39d7 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", + "chai": "^5.0.0", "gaxios": "^6.0.0", - "mocha": "^10.0.0" + "mocha": "^11.0.0" } } diff --git a/eventarc/audit-storage/Dockerfile b/eventarc/audit-storage/Dockerfile index 711737d7a5..5c8be4aa62 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:22-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 74a918235e..a4907ca408 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", + "got": "^14.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/eventarc/generic/Dockerfile b/eventarc/generic/Dockerfile index 9246cecd1c..e366fbafb0 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:22-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 99aef7c3fa..d601eb51f7 100644 --- a/eventarc/generic/package.json +++ b/eventarc/generic/package.json @@ -18,14 +18,14 @@ "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", + "got": "^14.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0", - "uuid": "^10.0.0" + "uuid": "^11.0.0" } } diff --git a/eventarc/pubsub/Dockerfile b/eventarc/pubsub/Dockerfile index 9246cecd1c..e366fbafb0 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:22-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 7c2a765c3c..6541a052e4 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", + "got": "^14.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/functions/billing/package.json b/functions/billing/package.json index 0c59d6c3e9..7b5bd03a95 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": "^5.0.0", "google-auth-library": "^9.0.0", - "googleapis": "^143.0.0", + "googleapis": "^148.0.0", "slack": "^11.0.1" }, "devDependencies": { "@google-cloud/functions-framework": "^3.0.0", "c8": "^10.0.0", "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "promise-retry": "^2.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^20.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/concepts/package.json b/functions/concepts/package.json index 3faa393b8a..cb667fdf2b 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": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/functions/env_vars/package.json b/functions/env_vars/package.json index f99e1fea61..f7795c92fc 100644 --- a/functions/env_vars/package.json +++ b/functions/env_vars/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/functions/firebase/helloAnalytics/package.json b/functions/firebase/helloAnalytics/package.json index ab6a3b72f1..257a70134f 100644 --- a/functions/firebase/helloAnalytics/package.json +++ b/functions/firebase/helloAnalytics/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" } } diff --git a/functions/firebase/helloAuth/package.json b/functions/firebase/helloAuth/package.json index e0057948a4..9485ab9bc4 100644 --- a/functions/firebase/helloAuth/package.json +++ b/functions/firebase/helloAuth/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" } } diff --git a/functions/firebase/helloFirestore/package.json b/functions/firebase/helloFirestore/package.json index c010e65379..6022d2f140 100644 --- a/functions/firebase/helloFirestore/package.json +++ b/functions/firebase/helloFirestore/package.json @@ -16,9 +16,9 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/firestore": "^7.0.0" diff --git a/functions/firebase/helloRTDB/package.json b/functions/firebase/helloRTDB/package.json index 2667d6317a..2ce0f04774 100644 --- a/functions/firebase/helloRTDB/package.json +++ b/functions/firebase/helloRTDB/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" } } diff --git a/functions/firebase/helloRemoteConfig/package.json b/functions/firebase/helloRemoteConfig/package.json index 4395f1d6c3..03c5ec0a49 100644 --- a/functions/firebase/helloRemoteConfig/package.json +++ b/functions/firebase/helloRemoteConfig/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" } } diff --git a/functions/firebase/makeUpperCase/package.json b/functions/firebase/makeUpperCase/package.json index 3ce9d98430..7f63e7ea08 100644 --- a/functions/firebase/makeUpperCase/package.json +++ b/functions/firebase/makeUpperCase/package.json @@ -16,9 +16,9 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/firestore": "^7.0.0" diff --git a/functions/firebase/package.json b/functions/firebase/package.json index b9ddfe1e02..345f3a0c4d 100644 --- a/functions/firebase/package.json +++ b/functions/firebase/package.json @@ -12,11 +12,11 @@ "node": ">=16.0.0" }, "devDependencies": { - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0", - "uuid": "^10.0.0" + "uuid": "^11.0.0" }, "dependencies": { "@google-cloud/firestore": "^7.0.0" diff --git a/functions/helloworld/helloError/package.json b/functions/helloworld/helloError/package.json index 02515a5070..0190f5e61c 100644 --- a/functions/helloworld/helloError/package.json +++ b/functions/helloworld/helloError/package.json @@ -19,7 +19,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/functions/helloworld/helloGCS/package.json b/functions/helloworld/helloGCS/package.json index 00abd7607e..5b7a4e3e66 100644 --- a/functions/helloworld/helloGCS/package.json +++ b/functions/helloworld/helloGCS/package.json @@ -24,11 +24,11 @@ "@google-cloud/storage": "^7.0.0", "c8": "^10.0.0", "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "moment": "^2.24.0", "promise-retry": "^2.0.0", - "sinon": "^18.0.0", - "uuid": "^10.0.0", + "sinon": "^20.0.0", + "uuid": "^11.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/helloworld/helloPubSub/package.json b/functions/helloworld/helloPubSub/package.json index 189d5931c3..f8f7709969 100644 --- a/functions/helloworld/helloPubSub/package.json +++ b/functions/helloworld/helloPubSub/package.json @@ -24,11 +24,11 @@ "@google-cloud/pubsub": "^4.0.0", "c8": "^10.0.0", "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "moment": "^2.29.4", "promise-retry": "^2.0.0", - "sinon": "^18.0.0", - "uuid": "^10.0.0", + "sinon": "^20.0.0", + "uuid": "^11.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/helloworld/helloworldGet/package.json b/functions/helloworld/helloworldGet/package.json index d17681b8eb..c4bb466a58 100644 --- a/functions/helloworld/helloworldGet/package.json +++ b/functions/helloworld/helloworldGet/package.json @@ -20,7 +20,7 @@ "devDependencies": { "c8": "^10.0.0", "gaxios": "^6.0.0", - "mocha": "^10.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 97c20ad23d..3ce3904500 100644 --- a/functions/helloworld/helloworldHttp/package.json +++ b/functions/helloworld/helloworldHttp/package.json @@ -24,8 +24,8 @@ "devDependencies": { "c8": "^10.0.0", "gaxios": "^6.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0", "wait-port": "^1.0.4" } diff --git a/functions/helloworld/package.json b/functions/helloworld/package.json index 4f5c8c8473..a46eb31345 100644 --- a/functions/helloworld/package.json +++ b/functions/helloworld/package.json @@ -20,12 +20,12 @@ "@google-cloud/pubsub": "^4.0.0", "@google-cloud/storage": "^7.0.0", "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "moment": "^2.24.0", "promise-retry": "^2.0.0", - "sinon": "^18.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0", - "uuid": "^10.0.0", + "uuid": "^11.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/http/corsEnabledFunction/package.json b/functions/http/corsEnabledFunction/package.json index 69bed9ba37..9dbebb017e 100644 --- a/functions/http/corsEnabledFunction/package.json +++ b/functions/http/corsEnabledFunction/package.json @@ -16,9 +16,9 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/functions-framework": "^3.1.2" diff --git a/functions/http/corsEnabledFunctionAuth/package.json b/functions/http/corsEnabledFunctionAuth/package.json index 1bc7a3b371..ea24f13bc4 100644 --- a/functions/http/corsEnabledFunctionAuth/package.json +++ b/functions/http/corsEnabledFunctionAuth/package.json @@ -16,9 +16,9 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/functions-framework": "^3.1.2" diff --git a/functions/http/httpContent/package.json b/functions/http/httpContent/package.json index 3ff8581ba8..cde6a09dd8 100644 --- a/functions/http/httpContent/package.json +++ b/functions/http/httpContent/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/functions-framework": "^3.1.2", diff --git a/functions/http/httpMethods/package.json b/functions/http/httpMethods/package.json index 9837db712a..ee3f9e7eb2 100644 --- a/functions/http/httpMethods/package.json +++ b/functions/http/httpMethods/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/functions-framework": "^3.1.2" diff --git a/functions/http/package.json b/functions/http/package.json index 84c1de6e1a..d6f7065825 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": "^20.0.0" }, "dependencies": { "@google-cloud/storage": "^7.0.0", diff --git a/functions/http/parseXML/package.json b/functions/http/parseXML/package.json index 3b4eddc6f0..7d62403a51 100644 --- a/functions/http/parseXML/package.json +++ b/functions/http/parseXML/package.json @@ -21,7 +21,7 @@ "devDependencies": { "c8": "^10.0.0", "gaxios": "^6.0.0", - "mocha": "^10.2.0", + "mocha": "^11.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/imagemagick/package.json b/functions/imagemagick/package.json index cf6fa1cc8b..5c01e08466 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", "gm": "^1.23.1" }, "devDependencies": { "@google-cloud/functions-framework": "^3.0.0", "c8": "^10.0.0", "gaxios": "^6.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^20.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 b68e4d6422..7cb7c673a8 100644 --- a/functions/log/helloWorld/package.json +++ b/functions/log/helloWorld/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/functions-framework": "^3.1.3" diff --git a/functions/log/package.json b/functions/log/package.json index feb865c7ad..472369ca10 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": "^20.0.0" } } diff --git a/functions/log/processEntry/package.json b/functions/log/processEntry/package.json index 33ba16e805..3ab9d28e1e 100644 --- a/functions/log/processEntry/package.json +++ b/functions/log/processEntry/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" } } diff --git a/functions/memorystore/redis/package.json b/functions/memorystore/redis/package.json index d3e29814a6..5c4a9b9843 100644 --- a/functions/memorystore/redis/package.json +++ b/functions/memorystore/redis/package.json @@ -21,7 +21,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/functions/ocr/app/package.json b/functions/ocr/app/package.json index a54096f90a..e1f1dc0775 100644 --- a/functions/ocr/app/package.json +++ b/functions/ocr/app/package.json @@ -17,12 +17,12 @@ "dependencies": { "@google-cloud/pubsub": "^4.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" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/functions/pubsub/package.json b/functions/pubsub/package.json index 12e8a55e2e..77c5f8c43d 100644 --- a/functions/pubsub/package.json +++ b/functions/pubsub/package.json @@ -17,8 +17,8 @@ "devDependencies": { "@google-cloud/functions-framework": "^3.0.0", "gaxios": "^6.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/pubsub/publish/package.json b/functions/pubsub/publish/package.json index cc101b93ef..07bb65007f 100644 --- a/functions/pubsub/publish/package.json +++ b/functions/pubsub/publish/package.json @@ -21,8 +21,8 @@ "@google-cloud/functions-framework": "^3.0.0", "c8": "^10.0.0", "gaxios": "^6.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "wait-port": "^1.0.4" } } diff --git a/functions/pubsub/subscribe/package.json b/functions/pubsub/subscribe/package.json index e03880537a..2afc17c5c8 100644 --- a/functions/pubsub/subscribe/package.json +++ b/functions/pubsub/subscribe/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/functions/scheduleinstance/package.json b/functions/scheduleinstance/package.json index d050b4e016..83144b95e1 100644 --- a/functions/scheduleinstance/package.json +++ b/functions/scheduleinstance/package.json @@ -16,11 +16,11 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.0.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" }, "dependencies": { - "@google-cloud/compute": "^4.0.0" + "@google-cloud/compute": "^5.0.0" } } diff --git a/functions/security/package.json b/functions/security/package.json index cce668cb47..c806105650 100644 --- a/functions/security/package.json +++ b/functions/security/package.json @@ -19,8 +19,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.3", - "sinon": "^18.0.0" + "sinon": "^20.0.0" } } diff --git a/functions/slack/package.json b/functions/slack/package.json index de00569994..bbaace33a0 100644 --- a/functions/slack/package.json +++ b/functions/slack/package.json @@ -21,9 +21,9 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/functions/spanner/package.json b/functions/spanner/package.json index 774867f929..577b576169 100644 --- a/functions/spanner/package.json +++ b/functions/spanner/package.json @@ -20,8 +20,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" } } diff --git a/functions/tips/gcpApiCall/package.json b/functions/tips/gcpApiCall/package.json index 2f9ff121cd..123fce0776 100644 --- a/functions/tips/gcpApiCall/package.json +++ b/functions/tips/gcpApiCall/package.json @@ -20,8 +20,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.3", - "sinon": "^18.0.0" + "sinon": "^20.0.0" } } diff --git a/functions/tips/package.json b/functions/tips/package.json index db58b31e19..27c5ff7ebe 100644 --- a/functions/tips/package.json +++ b/functions/tips/package.json @@ -16,10 +16,10 @@ }, "dependencies": { "@google-cloud/pubsub": "^4.0.0", - "mocha": "^10.0.0" + "mocha": "^11.0.0" }, "devDependencies": { "node-fetch": "^3.0.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" } } diff --git a/functions/tips/retry/package.json b/functions/tips/retry/package.json index 15209e7f66..2d0902e975 100644 --- a/functions/tips/retry/package.json +++ b/functions/tips/retry/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/functions/tips/scopeDemo/package.json b/functions/tips/scopeDemo/package.json index 9bd294252a..1e7a09ab57 100644 --- a/functions/tips/scopeDemo/package.json +++ b/functions/tips/scopeDemo/package.json @@ -19,7 +19,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.2.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/functions/v2/autoLabelInstance/package.json b/functions/v2/autoLabelInstance/package.json index 0e5734bd9f..734b0291e6 100644 --- a/functions/v2/autoLabelInstance/package.json +++ b/functions/v2/autoLabelInstance/package.json @@ -16,15 +16,15 @@ "e2e-test": "c8 mocha -p -j 2 --timeout 60s test/system.test.js" }, "dependencies": { - "@google-cloud/compute": "^4.0.0", + "@google-cloud/compute": "^5.0.0", "@google-cloud/functions-framework": "^3.0.0" }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "p-retry": "^6.0.0", - "sinon": "^18.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0", - "uuid": "^10.0.0" + "uuid": "^11.0.0" } } diff --git a/functions/v2/cloudEventLogging/package.json b/functions/v2/cloudEventLogging/package.json index 4329e29830..8db0543bf7 100644 --- a/functions/v2/cloudEventLogging/package.json +++ b/functions/v2/cloudEventLogging/package.json @@ -17,8 +17,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "cloudevents": "^8.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "cloudevents": "^9.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/functions/v2/firebase/firestore/helloFirestore/package.json b/functions/v2/firebase/firestore/helloFirestore/package.json index 08c3a4211e..9cd60c4295 100644 --- a/functions/v2/firebase/firestore/helloFirestore/package.json +++ b/functions/v2/firebase/firestore/helloFirestore/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/functions-framework": "^3.1.3", diff --git a/functions/v2/firebase/firestore/makeUpperCase/package.json b/functions/v2/firebase/firestore/makeUpperCase/package.json index ac286a782b..3df30aae3e 100644 --- a/functions/v2/firebase/firestore/makeUpperCase/package.json +++ b/functions/v2/firebase/firestore/makeUpperCase/package.json @@ -16,9 +16,9 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "rewire": "^7.0.0", - "sinon": "^18.0.0" + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/firestore": "^7.0.0", diff --git a/functions/v2/firebase/remote-config/helloRemoteConfig/package.json b/functions/v2/firebase/remote-config/helloRemoteConfig/package.json index 349d7134e1..6afa6e15ca 100644 --- a/functions/v2/firebase/remote-config/helloRemoteConfig/package.json +++ b/functions/v2/firebase/remote-config/helloRemoteConfig/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/functions-framework": "^3.1.3" diff --git a/functions/v2/firebase/rtdb/helloRTDB/package.json b/functions/v2/firebase/rtdb/helloRTDB/package.json index c9214229bb..7cb6a983a1 100644 --- a/functions/v2/firebase/rtdb/helloRTDB/package.json +++ b/functions/v2/firebase/rtdb/helloRTDB/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/functions-framework": "^3.1.3" diff --git a/functions/v2/helloAuditLog/package.json b/functions/v2/helloAuditLog/package.json index c73316a5bd..fff8fb8ccf 100644 --- a/functions/v2/helloAuditLog/package.json +++ b/functions/v2/helloAuditLog/package.json @@ -19,8 +19,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/functions/v2/helloBigQuery/package.json b/functions/v2/helloBigQuery/package.json index 19f72c4ca1..11ed66e51f 100644 --- a/functions/v2/helloBigQuery/package.json +++ b/functions/v2/helloBigQuery/package.json @@ -20,7 +20,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.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 307aac2392..5d53541ab6 100644 --- a/functions/v2/helloGCS/package.json +++ b/functions/v2/helloGCS/package.json @@ -19,8 +19,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/functions/v2/helloPubSub/package.json b/functions/v2/helloPubSub/package.json index c5432fd41d..92b68a4a2d 100644 --- a/functions/v2/helloPubSub/package.json +++ b/functions/v2/helloPubSub/package.json @@ -19,9 +19,9 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0", - "uuid": "^10.0.0" + "uuid": "^11.0.0" } } diff --git a/functions/v2/httpLogging/package.json b/functions/v2/httpLogging/package.json index 2466e87118..d8fa025675 100644 --- a/functions/v2/httpLogging/package.json +++ b/functions/v2/httpLogging/package.json @@ -18,7 +18,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } \ No newline at end of file diff --git a/functions/v2/imagemagick/package.json b/functions/v2/imagemagick/package.json index 43e1ac3d46..ab5347c2d6 100644 --- a/functions/v2/imagemagick/package.json +++ b/functions/v2/imagemagick/package.json @@ -17,14 +17,14 @@ "dependencies": { "@google-cloud/functions-framework": "^3.1.0", "@google-cloud/storage": "^7.0.0", - "@google-cloud/vision": "^4.0.0", + "@google-cloud/vision": "^5.0.0", "gm": "^1.23.1" }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", + "mocha": "^11.0.0", "proxyquire": "^2.1.0", - "sinon": "^18.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/functions/v2/log/processEntry/package.json b/functions/v2/log/processEntry/package.json index 8a63b117a4..0c60576cd0 100644 --- a/functions/v2/log/processEntry/package.json +++ b/functions/v2/log/processEntry/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" }, "dependencies": { "@google-cloud/functions-framework": "^3.1.3" diff --git a/functions/v2/ocr/app/package.json b/functions/v2/ocr/app/package.json index c3351a28bf..fab0697bfd 100644 --- a/functions/v2/ocr/app/package.json +++ b/functions/v2/ocr/app/package.json @@ -18,14 +18,14 @@ "@google-cloud/functions-framework": "^3.2.0", "@google-cloud/pubsub": "^4.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": "^9.0.0" }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/functions/v2/responseStreaming/package.json b/functions/v2/responseStreaming/package.json index c8ea7719f4..27ed5ccd48 100644 --- a/functions/v2/responseStreaming/package.json +++ b/functions/v2/responseStreaming/package.json @@ -20,8 +20,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/functions/v2/tips/avoidInfiniteRetries/package.json b/functions/v2/tips/avoidInfiniteRetries/package.json index d37623027c..62db75f272 100644 --- a/functions/v2/tips/avoidInfiniteRetries/package.json +++ b/functions/v2/tips/avoidInfiniteRetries/package.json @@ -19,7 +19,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.2.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/functions/v2/tips/retry/package.json b/functions/v2/tips/retry/package.json index 211ca2ef85..752fb29559 100644 --- a/functions/v2/tips/retry/package.json +++ b/functions/v2/tips/retry/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" }, "dependencies": { diff --git a/functions/v2/typed/googlechatbot/package.json b/functions/v2/typed/googlechatbot/package.json index a14d5af6fc..9bb72c569b 100644 --- a/functions/v2/typed/googlechatbot/package.json +++ b/functions/v2/typed/googlechatbot/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.2.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/functions/v2/typed/greeting/package.json b/functions/v2/typed/greeting/package.json index cdece30e7c..5685ba341a 100644 --- a/functions/v2/typed/greeting/package.json +++ b/functions/v2/typed/greeting/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.2.0", - "sinon": "^18.0.0" + "mocha": "^11.0.0", + "sinon": "^20.0.0" } } diff --git a/generative-ai/snippets/package.json b/generative-ai/snippets/package.json index 1aedba79e3..835bd9df0a 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": "^4.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", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", + "uuid": "^11.0.0" } } diff --git a/healthcare/consent/package.json b/healthcare/consent/package.json index 8e610ed312..58a65e3e73 100644 --- a/healthcare/consent/package.json +++ b/healthcare/consent/package.json @@ -13,8 +13,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "mocha": "^11.0.0", + "uuid": "^11.0.0" }, "dependencies": { "@googleapis/healthcare": "^23.0.0" diff --git a/healthcare/datasets/package.json b/healthcare/datasets/package.json index 8e610ed312..58a65e3e73 100644 --- a/healthcare/datasets/package.json +++ b/healthcare/datasets/package.json @@ -13,8 +13,8 @@ }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "mocha": "^11.0.0", + "uuid": "^11.0.0" }, "dependencies": { "@googleapis/healthcare": "^23.0.0" diff --git a/healthcare/dicom/package.json b/healthcare/dicom/package.json index 59fe7d1b58..8f8e11fafc 100644 --- a/healthcare/dicom/package.json +++ b/healthcare/dicom/package.json @@ -15,8 +15,8 @@ "@google-cloud/pubsub": "^4.0.0", "@google-cloud/storage": "^7.0.0", "c8": "^10.0.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "mocha": "^11.0.0", + "uuid": "^11.0.0" }, "dependencies": { "@googleapis/healthcare": "^23.0.0" diff --git a/healthcare/fhir/package.json b/healthcare/fhir/package.json index abb74033ed..813cd41078 100644 --- a/healthcare/fhir/package.json +++ b/healthcare/fhir/package.json @@ -16,8 +16,8 @@ "@google-cloud/storage": "^7.0.0", "c8": "^10.0.0", "google-auth-library": "^9.0.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "mocha": "^11.0.0", + "uuid": "^11.0.0" }, "dependencies": { "@googleapis/healthcare": "^23.0.0" diff --git a/healthcare/hl7v2/package.json b/healthcare/hl7v2/package.json index e72bd475c5..637df94d08 100644 --- a/healthcare/hl7v2/package.json +++ b/healthcare/hl7v2/package.json @@ -14,8 +14,8 @@ "devDependencies": { "@google-cloud/pubsub": "^4.0.0", "c8": "^10.0.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "mocha": "^11.0.0", + "uuid": "^11.0.0" }, "dependencies": { "@googleapis/healthcare": "^23.0.0" diff --git a/iam/deny/package.json b/iam/deny/package.json index 2b4e04eacf..a23de86bd0 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", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/kms/package.json b/kms/package.json index 26be9f131a..bdad7e7d3c 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", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/media/livestream/package.json b/media/livestream/package.json index f905e3ed86..e279047e8f 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", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/media/transcoder/package.json b/media/transcoder/package.json index 10fc880306..c5d1de394e 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", - "uuid": "^10.0.0" + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/media/video-stitcher/package.json b/media/video-stitcher/package.json index 8a6c1b873e..ebafc08bd9 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", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/mediatranslation/package.json b/mediatranslation/package.json index fa4c5f93b1..5e77a7ffc5 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" + "chai": "^5.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 50c6d9522e..89d776ca08 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:22-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 6f569a1769..0b0aeda492 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:22-alpine ENV REDISHOST redis ENV REDISPORT 6379 diff --git a/monitoring/prometheus/package.json b/monitoring/prometheus/package.json index 52ad75a3f6..9d2487c3bf 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 b6599d983e..b3727c6ae3 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", + "@google-cloud/monitoring": "^5.0.0", "c8": "^10.0.0", "yargs": "^17.0.0" }, "devDependencies": { - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/package.json b/package.json index b239c7ad54..efbee222d8 100644 --- a/package.json +++ b/package.json @@ -21,17 +21,17 @@ "@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", + "eslint-config-prettier": "^10.0.0", + "eslint-plugin-n": "^17.0.0", "eslint-plugin-prettier": "^5.0.0-alpha.1", - "gts": "5.3.0", - "mocha": "^10.2.0", + "gts": "6.0.2", + "mocha": "^11.0.0", "nunjucks": "^3.2.4", "prettier": "^3.0.3", "typescript": "^5.0.4" }, "dependencies": { - "commander": "^12.0.0", - "eslint": "^8.57.0" + "commander": "^13.0.0", + "eslint": "^9.0.0" } } diff --git a/recaptcha_enterprise/demosite/app/Dockerfile b/recaptcha_enterprise/demosite/app/Dockerfile index ed182e9762..354ab61183 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:22-slim ARG GOOGLE_CLOUD_PROJECT ENV GOOGLE_CLOUD_PROJECT=${GOOGLE_CLOUD_PROJECT} diff --git a/recaptcha_enterprise/demosite/app/package.json b/recaptcha_enterprise/demosite/app/package.json index 94c9646458..d9eb44a157 100644 --- a/recaptcha_enterprise/demosite/app/package.json +++ b/recaptcha_enterprise/demosite/app/package.json @@ -15,9 +15,9 @@ "url": "https://github.com/googleapis/nodejs-recaptcha-enterprise.git" }, "dependencies": { - "@google-cloud/recaptcha-enterprise": "^5.5.0", - "body-parser": "^1.20.0", - "express": "^4.18.1", + "@google-cloud/recaptcha-enterprise": "^6.0.0", + "body-parser": "^2.0.0", + "express": "^5.0.0", "mustache-express": "^1.3.2", "properties-reader": "^2.2.0" } diff --git a/recaptcha_enterprise/snippets/package.json b/recaptcha_enterprise/snippets/package.json index c9e10bf1bb..69410ca972 100644 --- a/recaptcha_enterprise/snippets/package.json +++ b/recaptcha_enterprise/snippets/package.json @@ -19,19 +19,19 @@ "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": "^22.0.0", "@types/yargs": "^17.0.19", "c8": "^10.0.0", - "eslint": "^8.57.0", - "gts": "^5.0.0", - "mocha": "^10.2.0", + "eslint": "^9.0.0", + "gts": "^6.0.0", + "mocha": "^11.0.0", "ts-node": "^10.9.1", "typescript": "^5.0.0" } diff --git a/retail/package.json b/retail/package.json index 7ecfac9197..212f550cc6 100644 --- a/retail/package.json +++ b/retail/package.json @@ -17,12 +17,12 @@ }, "dependencies": { "@google-cloud/bigquery": "^7.0.0", - "@google-cloud/retail": "^3.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" + "chai": "^5.0.0", + "mocha": "^11.0.0" } } diff --git a/routeoptimization/snippets/package.json b/routeoptimization/snippets/package.json index 4bfa6f1968..466abb4a95 100644 --- a/routeoptimization/snippets/package.json +++ b/routeoptimization/snippets/package.json @@ -18,7 +18,7 @@ }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0" } } diff --git a/run/hello-broken/Dockerfile b/run/hello-broken/Dockerfile index bf2f2c32f9..b374c97383 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:22-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 5127309653..70391c8cfd 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" + "got": "^14.0.0", + "mocha": "^11.0.0" } } diff --git a/run/helloworld/Dockerfile b/run/helloworld/Dockerfile index 43bb5475e3..ddc23d1e05 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:22-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 62cccf4d37..078385a3e7 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", + "got": "^14.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/run/idp-sql/Dockerfile b/run/idp-sql/Dockerfile index 0d33affacf..2a3cbe4429 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:22-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 1febe62959..c1ac11a8b4 100644 --- a/run/idp-sql/package.json +++ b/run/idp-sql/package.json @@ -20,7 +20,7 @@ "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", @@ -31,10 +31,10 @@ }, "devDependencies": { "c8": "^10.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0", + "got": "^14.0.0", + "mocha": "^11.0.0", "short-uuid": "^5.0.0", - "sinon": "^18.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/run/image-processing/Dockerfile b/run/image-processing/Dockerfile index a4eba4ab23..d2edfd5d07 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:22-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 d46a057c9b..d1a0ffd59c 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", "gm": "^1.23.1" }, "devDependencies": { "c8": "^10.0.0", "google-auth-library": "^9.0.0", - "got": "^11.5.0", - "mocha": "^10.0.0", + "got": "^14.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/run/jobs/package.json b/run/jobs/package.json index 4b7092aaff..2bf557b7a6 100644 --- a/run/jobs/package.json +++ b/run/jobs/package.json @@ -16,6 +16,6 @@ "devDependencies": { "@google-cloud/logging": "^11.0.0", "c8": "^10.0.0", - "mocha": "^10.0.0" + "mocha": "^11.0.0" } } diff --git a/run/logging-manual/Dockerfile b/run/logging-manual/Dockerfile index c395ddd0c5..b88f3693f0 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:22-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 5098c9d6ca..6dc45b9674 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": "^14.0.0" }, "devDependencies": { "@google-cloud/logging": "^11.0.0", "c8": "^10.0.0", "google-auth-library": "^9.0.0", - "mocha": "^10.0.0" + "mocha": "^11.0.0" } } diff --git a/run/markdown-preview/editor/Dockerfile b/run/markdown-preview/editor/Dockerfile index f0f2b5edd1..7655f374b2 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:22-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 5ffa5dd772..0e4d192bf7 100644 --- a/run/markdown-preview/editor/package.json +++ b/run/markdown-preview/editor/package.json @@ -21,14 +21,14 @@ "system-test": "c8 mocha -p -j 2 test/system.test.js --timeout=480000 --exit" }, "dependencies": { - "express": "^4.17.1", + "express": "^5.0.0", "google-auth-library": "^9.0.0", - "got": "^11.5.0", + "got": "^14.0.0", "handlebars": "^4.7.6" }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.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 58e8aa32bc..655810f2e1 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:22-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 d947efe077..504d986448 100644 --- a/run/markdown-preview/renderer/package.json +++ b/run/markdown-preview/renderer/package.json @@ -20,15 +20,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": "^11.5.0", - "mocha": "^10.0.0", - "sinon": "^18.0.0", + "got": "^14.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0" } } diff --git a/run/pubsub/Dockerfile b/run/pubsub/Dockerfile index 69f9f5fb7d..8558cb2b7c 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:22-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 990ae8ba54..30e58e7a37 100644 --- a/run/pubsub/package.json +++ b/run/pubsub/package.json @@ -19,15 +19,15 @@ "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", + "got": "^14.0.0", + "mocha": "^11.0.0", + "sinon": "^20.0.0", "supertest": "^7.0.0", - "uuid": "^10.0.0" + "uuid": "^11.0.0" } } diff --git a/run/system-package/Dockerfile b/run/system-package/Dockerfile index d462084ab1..97e08443ae 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:22-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 da69b8fc22..2b0684ad07 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", + "got": "^14.0.0", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/run/websockets/package.json b/run/websockets/package.json index f9c96b0be9..59c92bbece 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", + "express": "^5.0.0", "redis": "^4.6.5", "socket.io": "4.7.2" }, "devDependencies": { - "@types/express": "^4.17.17", + "@types/express": "^5.0.0", "c8": "^10.0.0", "google-auth-library": "^9.0.0", - "got": "^11.5.0", - "mocha": "^10.2.0", - "puppeteer": "^23.0.0" + "got": "^14.0.0", + "mocha": "^11.0.0", + "puppeteer": "^24.0.0" } } diff --git a/scheduler/package.json b/scheduler/package.json index cddfa16809..d435390b9a 100644 --- a/scheduler/package.json +++ b/scheduler/package.json @@ -18,16 +18,16 @@ "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", + "@types/node": "^22.0.0", "c8": "^10.0.0", - "chai": "^4.5.0", - "gts": "^5.0.0", - "mocha": "^10.2.0", + "chai": "^5.0.0", + "gts": "^6.0.0", + "mocha": "^11.0.0", "ts-node": "^10.9.1", "typescript": "^5.0.0" } diff --git a/secret-manager/package.json b/secret-manager/package.json index c9a1b257d2..c47b788d28 100644 --- a/secret-manager/package.json +++ b/secret-manager/package.json @@ -14,12 +14,12 @@ "test": "c8 mocha -p -j 2 --recursive test/ --timeout=800000" }, "dependencies": { - "@google-cloud/secret-manager": "^5.6.0" + "@google-cloud/secret-manager": "^6.0.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/security-center/snippets/package.json b/security-center/snippets/package.json index 6062d1a0f1..0ac013f5d0 100644 --- a/security-center/snippets/package.json +++ b/security-center/snippets/package.json @@ -14,14 +14,14 @@ "license": "Apache-2.0", "dependencies": { "@google-cloud/pubsub": "^4.0.0", - "@google-cloud/security-center": "^8.7.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", - "uuid": "^10.0.0", + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0", "@google-cloud/bigquery": "^7.0.0" } } diff --git a/service-directory/snippets/package.json b/service-directory/snippets/package.json index 396c4086fd..3c076ae753 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", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/speech/package.json b/speech/package.json index e1ec2aabae..0643a680d0 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", + "sinon": "^20.0.0", "yargs": "^17.0.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/storage-control/package.json b/storage-control/package.json index 0f6d932845..6e14a27475 100644 --- a/storage-control/package.json +++ b/storage-control/package.json @@ -15,8 +15,8 @@ "@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", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/storagetransfer/package.json b/storagetransfer/package.json index da6571c18a..4be0682371 100644 --- a/storagetransfer/package.json +++ b/storagetransfer/package.json @@ -13,7 +13,7 @@ "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", @@ -21,8 +21,8 @@ "@google-cloud/pubsub": "^4.0.5", "aws-sdk": "^2.1073.0", "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/talent/package.json b/talent/package.json index 4fdaf72e8d..7cd29cf6e8 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", + "@google-cloud/talent": "^7.0.0", "yargs": "^17.0.0" }, "devDependencies": { "@types/mocha": "^10.0.0", - "@types/node": "^20.0.0", + "@types/node": "^22.0.0", "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/texttospeech/package.json b/texttospeech/package.json index b5b2412730..4b100daaf9 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", + "@google-cloud/text-to-speech": "^6.0.0", "yargs": "^17.0.0" }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0" + "mocha": "^11.0.0" } } diff --git a/tpu/package.json b/tpu/package.json index 44140e7f0b..2d02c74e90 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": "^20.0.0" }, "devDependencies": { "c8": "^10.0.0", - "mocha": "^10.0.0" + "mocha": "^11.0.0" } } \ No newline at end of file diff --git a/translate/package.json b/translate/package.json index 378b15a98a..0271cfdc9d 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", + "@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": "^17.0.0" }, "devDependencies": { "@google-cloud/storage": "^7.0.0", "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/video-intelligence/package.json b/video-intelligence/package.json index c8241bff19..354cb07a2e 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", + "@google-cloud/video-intelligence": "^6.0.0", "yargs": "^17.0.0" }, "devDependencies": { "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0" } } diff --git a/vision/package.json b/vision/package.json index 06138e90ad..9efaebc862 100644 --- a/vision/package.json +++ b/vision/package.json @@ -13,7 +13,7 @@ "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", @@ -24,8 +24,8 @@ "@types/uuid": "^10.0.0", "@types/yargs": "^17.0.22", "c8": "^10.0.0", - "chai": "^4.5.0", - "mocha": "^10.2.0", - "uuid": "^10.0.0" + "chai": "^5.0.0", + "mocha": "^11.0.0", + "uuid": "^11.0.0" } } diff --git a/workflows/invoke-private-endpoint/package.json b/workflows/invoke-private-endpoint/package.json index 6fde33c8ec..60813f49c2 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", + "mocha": "^11.0.0", "supertest": "^7.0.0" } } diff --git a/workflows/package.json b/workflows/package.json index 08291bc8f6..6220b4b4e2 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": "^4.0.0" }, "devDependencies": { "@types/mocha": "^10.0.1", - "@types/node": "^20.0.0", + "@types/node": "^22.0.0", "c8": "^10.0.0", - "gts": "^5.0.0", - "mocha": "^10.2.0", + "gts": "^6.0.0", + "mocha": "^11.0.0", "ts-node": "^10.9.1" } } diff --git a/workflows/quickstart/package.json b/workflows/quickstart/package.json index dabe052eac..2891df3b26 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", + "@google-cloud/workflows": "^4.0.0", "typescript": "^5.1.6" }, "devDependencies": { "@types/mocha": "^10.0.1", - "@types/node": "^20.0.0", - "gts": "^5.0.0", - "mocha": "^10.2.0" + "@types/node": "^22.0.0", + "gts": "^6.0.0", + "mocha": "^11.0.0" } }