From 8ccdbb6fe5123bba5b2780e3561c6ab2fad71bd4 Mon Sep 17 00:00:00 2001 From: Lukas Holzer Date: Tue, 9 Jan 2024 16:00:06 +0100 Subject: [PATCH 1/4] feat: add new next runtime 5.0.0-beta behind a feature flag (#1293) --- site/plugins.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/site/plugins.json b/site/plugins.json index ae906b057..d6e5668e1 100644 --- a/site/plugins.json +++ b/site/plugins.json @@ -611,6 +611,10 @@ "repo": "https://github.com/netlify/next-runtime", "version": "4.41.2", "compatibility": [ + { + "version": "5.0.0-beta.0", + "featureFlag": "project_ceruledge_ui" + }, { "version": "4.41.3", "featureFlag": "build_plugins_use_prerelease" From fc68fc34980529cf540f21947235553e3396fc04 Mon Sep 17 00:00:00 2001 From: Lukas Holzer Date: Thu, 11 Jan 2024 13:25:42 +0100 Subject: [PATCH 2/4] feat: adapt the release constraints for next runtime 5.0.0-beta.0 (#1295) * feat: adapt the release constraints for next runtime 5.0.0-beta.0 * chore: update --- site/plugins.json | 7 ++++++- test/main.js | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/site/plugins.json b/site/plugins.json index d6e5668e1..05ac75013 100644 --- a/site/plugins.json +++ b/site/plugins.json @@ -613,7 +613,12 @@ "compatibility": [ { "version": "5.0.0-beta.0", - "featureFlag": "project_ceruledge_ui" + "featureFlag": "project_ceruledge_ui", + "overridePinnedVersion": ">=4.0.0", + "nodeVersion": ">=18.0.0", + "siteDependencies": { + "next": ">=13.5.0" + } }, { "version": "4.41.3", diff --git a/test/main.js b/test/main.js index e0ea1198e..86c2366b3 100644 --- a/test/main.js +++ b/test/main.js @@ -25,6 +25,7 @@ const COMPATIBILITY_ATTRIBUTES = new Set([ 'featureFlag', 'nodeVersion', 'siteDependencies', + 'overridePinnedVersion', ]) // Compare two versions by their major versions. From 36780d565ea7fa61a69125b17bc616fdc790a4ce Mon Sep 17 00:00:00 2001 From: Lukas Holzer Date: Fri, 12 Jan 2024 12:43:49 +0100 Subject: [PATCH 3/4] feat: update the beta of the next runtime (#1296) --- site/plugins.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/plugins.json b/site/plugins.json index 05ac75013..4547a0272 100644 --- a/site/plugins.json +++ b/site/plugins.json @@ -612,7 +612,7 @@ "version": "4.41.2", "compatibility": [ { - "version": "5.0.0-beta.0", + "version": "5.0.0-beta.1", "featureFlag": "project_ceruledge_ui", "overridePinnedVersion": ">=4.0.0", "nodeVersion": ">=18.0.0", From 321dc25f4301821c3f35d8356c8ade17ecfe361c Mon Sep 17 00:00:00 2001 From: "token-generator-app[bot]" <82042599+token-generator-app[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 12:45:36 +0100 Subject: [PATCH 4/4] chore(main): release 6.75.0 (#1294) Co-authored-by: token-generator-app[bot] <82042599+token-generator-app[bot]@users.noreply.github.com> --- CHANGELOG.md | 9 +++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d3f922ca..07832e66d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [6.75.0](https://github.com/netlify/plugins/compare/v6.74.0...v6.75.0) (2024-01-12) + + +### Features + +* adapt the release constraints for next runtime 5.0.0-beta.0 ([#1295](https://github.com/netlify/plugins/issues/1295)) ([fc68fc3](https://github.com/netlify/plugins/commit/fc68fc34980529cf540f21947235553e3396fc04)) +* add new next runtime 5.0.0-beta behind a feature flag ([#1293](https://github.com/netlify/plugins/issues/1293)) ([8ccdbb6](https://github.com/netlify/plugins/commit/8ccdbb6fe5123bba5b2780e3561c6ab2fad71bd4)) +* update the beta of the next runtime ([#1296](https://github.com/netlify/plugins/issues/1296)) ([36780d5](https://github.com/netlify/plugins/commit/36780d565ea7fa61a69125b17bc616fdc790a4ce)) + ## [6.74.0](https://github.com/netlify/plugins/compare/v6.73.0...v6.74.0) (2023-12-13) diff --git a/package-lock.json b/package-lock.json index 1713102ff..f51a620eb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@netlify/plugins-list", - "version": "6.74.0", + "version": "6.75.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@netlify/plugins-list", - "version": "6.74.0", + "version": "6.75.0", "license": "MIT", "devDependencies": { "@netlify/eslint-config-node": "^7.0.1", diff --git a/package.json b/package.json index f900f56a3..c75ff1adc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@netlify/plugins-list", - "version": "6.74.0", + "version": "6.75.0", "description": "List of Netlify plugins", "type": "module", "exports": "./index.js",