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", diff --git a/site/plugins.json b/site/plugins.json index ae906b057..4547a0272 100644 --- a/site/plugins.json +++ b/site/plugins.json @@ -611,6 +611,15 @@ "repo": "https://github.com/netlify/next-runtime", "version": "4.41.2", "compatibility": [ + { + "version": "5.0.0-beta.1", + "featureFlag": "project_ceruledge_ui", + "overridePinnedVersion": ">=4.0.0", + "nodeVersion": ">=18.0.0", + "siteDependencies": { + "next": ">=13.5.0" + } + }, { "version": "4.41.3", "featureFlag": "build_plugins_use_prerelease" 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.