From 3aca9c6b5f44d62c3ac4dfd32cd4ed1f0398ad05 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 18:12:06 +0000 Subject: [PATCH] fix(deps): update dependency @netlify/functions to v5 --- .../scheduled-function/package.json | 2 +- .../typescript/hello-world/package-lock.json | 36 +++++++++---------- .../typescript/hello-world/package.json | 2 +- .../scheduled-function/package.json | 2 +- package-lock.json | 20 ++++------- package.json | 2 +- 6 files changed, 28 insertions(+), 36 deletions(-) diff --git a/functions-templates/javascript/scheduled-function/package.json b/functions-templates/javascript/scheduled-function/package.json index 3cef6d6a59d..8584f23c8b5 100644 --- a/functions-templates/javascript/scheduled-function/package.json +++ b/functions-templates/javascript/scheduled-function/package.json @@ -15,6 +15,6 @@ "author": "Netlify", "license": "MIT", "dependencies": { - "@netlify/functions": "^3.0.4" + "@netlify/functions": "^5.1.0" } } diff --git a/functions-templates/typescript/hello-world/package-lock.json b/functions-templates/typescript/hello-world/package-lock.json index 2742305b98e..d7bdc525bbc 100644 --- a/functions-templates/typescript/hello-world/package-lock.json +++ b/functions-templates/typescript/hello-world/package-lock.json @@ -9,28 +9,28 @@ "version": "1.0.0", "license": "MIT", "dependencies": { - "@netlify/functions": "^3.0.4", + "@netlify/functions": "^5.1.0", "@types/node": "^22.0.0", "typescript": "^4.0.0" } }, "node_modules/@netlify/functions": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-3.0.4.tgz", - "integrity": "sha512-Ox8+ABI+nsLK+c4/oC5dpquXuEIjzfTlJrdQKgQijCsDQoje7inXFAtKDLvvaGvuvE+PVpMLwQcIUL6P9Ob1hQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-5.1.0.tgz", + "integrity": "sha512-LZtiQtf/QzPHIeNDZuIBxx04kmU7lCipWqZ26ejX7mYSB3yj2wvpZfF49kD8B8FoKTydSvgFmBpIcCO5FvpEXA==", "dependencies": { - "@netlify/serverless-functions-api": "1.36.0" + "@netlify/types": "2.2.0" }, "engines": { "node": ">=18.0.0" } }, - "node_modules/@netlify/serverless-functions-api": { - "version": "1.36.0", - "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.36.0.tgz", - "integrity": "sha512-z6okREyK8in0486a22Oro0k+YsuyEjDXJt46FpgeOgXqKJ9ElM8QPll0iuLBkpbH33ENiNbIPLd1cuClRQnhiw==", + "node_modules/@netlify/types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@netlify/types/-/types-2.2.0.tgz", + "integrity": "sha512-XOWlZ2wPpdRKkAOcQbjIf/Qz7L4RjcSVINVNQ9p3F6U8V6KSEOsB3fPrc6Ly8EOeJioHUepRPuzHzJE/7V5EsA==", "engines": { - "node": ">=18.0.0" + "node": "^18.14.0 || >=20" } }, "node_modules/@types/node": { @@ -61,17 +61,17 @@ }, "dependencies": { "@netlify/functions": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-3.0.4.tgz", - "integrity": "sha512-Ox8+ABI+nsLK+c4/oC5dpquXuEIjzfTlJrdQKgQijCsDQoje7inXFAtKDLvvaGvuvE+PVpMLwQcIUL6P9Ob1hQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-5.1.0.tgz", + "integrity": "sha512-LZtiQtf/QzPHIeNDZuIBxx04kmU7lCipWqZ26ejX7mYSB3yj2wvpZfF49kD8B8FoKTydSvgFmBpIcCO5FvpEXA==", "requires": { - "@netlify/serverless-functions-api": "1.36.0" + "@netlify/types": "2.2.0" } }, - "@netlify/serverless-functions-api": { - "version": "1.36.0", - "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.36.0.tgz", - "integrity": "sha512-z6okREyK8in0486a22Oro0k+YsuyEjDXJt46FpgeOgXqKJ9ElM8QPll0iuLBkpbH33ENiNbIPLd1cuClRQnhiw==" + "@netlify/types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@netlify/types/-/types-2.2.0.tgz", + "integrity": "sha512-XOWlZ2wPpdRKkAOcQbjIf/Qz7L4RjcSVINVNQ9p3F6U8V6KSEOsB3fPrc6Ly8EOeJioHUepRPuzHzJE/7V5EsA==" }, "@types/node": { "version": "22.18.11", diff --git a/functions-templates/typescript/hello-world/package.json b/functions-templates/typescript/hello-world/package.json index 00eea11d61b..b44fafd142e 100644 --- a/functions-templates/typescript/hello-world/package.json +++ b/functions-templates/typescript/hello-world/package.json @@ -14,7 +14,7 @@ "author": "Netlify", "license": "MIT", "dependencies": { - "@netlify/functions": "^3.0.4", + "@netlify/functions": "^5.1.0", "@types/node": "^22.0.0", "typescript": "^4.0.0" } diff --git a/functions-templates/typescript/scheduled-function/package.json b/functions-templates/typescript/scheduled-function/package.json index b75d54b8525..a682b78da8f 100644 --- a/functions-templates/typescript/scheduled-function/package.json +++ b/functions-templates/typescript/scheduled-function/package.json @@ -15,7 +15,7 @@ "author": "Netlify", "license": "MIT", "dependencies": { - "@netlify/functions": "^3.0.4", + "@netlify/functions": "^5.1.0", "@types/node": "^22.0.0", "typescript": "^4.5.5" } diff --git a/package-lock.json b/package-lock.json index 6df03d0efa9..53156e2fc0e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -115,7 +115,7 @@ "@bugsnag/js": "8.6.0", "@eslint/compat": "1.4.0", "@eslint/js": "9.36.0", - "@netlify/functions": "3.0.4", + "@netlify/functions": "5.1.0", "@netlify/types": "2.2.0", "@sindresorhus/slugify": "3.0.0", "@tsconfig/node18": "18.2.4", @@ -2954,12 +2954,13 @@ "license": "MIT" }, "node_modules/@netlify/functions": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-3.0.4.tgz", - "integrity": "sha512-Ox8+ABI+nsLK+c4/oC5dpquXuEIjzfTlJrdQKgQijCsDQoje7inXFAtKDLvvaGvuvE+PVpMLwQcIUL6P9Ob1hQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-5.1.0.tgz", + "integrity": "sha512-LZtiQtf/QzPHIeNDZuIBxx04kmU7lCipWqZ26ejX7mYSB3yj2wvpZfF49kD8B8FoKTydSvgFmBpIcCO5FvpEXA==", "dev": true, + "license": "MIT", "dependencies": { - "@netlify/serverless-functions-api": "1.36.0" + "@netlify/types": "2.2.0" }, "engines": { "node": ">=18.0.0" @@ -3503,15 +3504,6 @@ "node": "^18.14.0 || >=20" } }, - "node_modules/@netlify/serverless-functions-api": { - "version": "1.36.0", - "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.36.0.tgz", - "integrity": "sha512-z6okREyK8in0486a22Oro0k+YsuyEjDXJt46FpgeOgXqKJ9ElM8QPll0iuLBkpbH33ENiNbIPLd1cuClRQnhiw==", - "dev": true, - "engines": { - "node": ">=18.0.0" - } - }, "node_modules/@netlify/types": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/@netlify/types/-/types-2.2.0.tgz", diff --git a/package.json b/package.json index 71ddea53348..2e08d21e873 100644 --- a/package.json +++ b/package.json @@ -158,7 +158,7 @@ "@bugsnag/js": "8.6.0", "@eslint/compat": "1.4.0", "@eslint/js": "9.36.0", - "@netlify/functions": "3.0.4", + "@netlify/functions": "5.1.0", "@netlify/types": "2.2.0", "@sindresorhus/slugify": "3.0.0", "@tsconfig/node18": "18.2.4",