Skip to content

Commit 0bf15c2

Browse files
authored
fix: bump next-runtime to 5.12.0 (#1429)
* fix: bump next-runtime to 5.12.0 * fix: deactivate @chiselstrike/netlify-plugin as npm package is no longer available * test: don't check if plugin is on npm when it's DEACTIVATED
1 parent dd6505a commit 0bf15c2

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

site/plugins.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@
615615
"name": "Next.js ",
616616
"package": "@netlify/plugin-nextjs",
617617
"repo": "https://github.com/netlify/next-runtime",
618-
"version": "5.11.6",
618+
"version": "5.12.0",
619619
"compatibility": [
620620
{
621621
"version": "5.7.0-ipx.0",
@@ -627,7 +627,7 @@
627627
}
628628
},
629629
{
630-
"version": "5.11.6",
630+
"version": "5.12.0",
631631
"overridePinnedVersion": ">=4.0.0",
632632
"nodeVersion": ">=18.0.0",
633633
"siteDependencies": {
@@ -1008,7 +1008,8 @@
10081008
"package": "@chiselstrike/netlify-plugin",
10091009
"description": "Sync Netlify sites and ChiselStrike builds from code in the same Git repository.",
10101010
"repo": "https://github.com/chiselstrike/netlify-plugin",
1011-
"version": "0.1.0"
1011+
"version": "0.1.0",
1012+
"status": "DEACTIVATED"
10121013
},
10131014
{
10141015
"name": "Netlify Bundle ENV",

test/main.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ pluginsList.forEach((plugin) => {
7979
})
8080
})
8181

82-
test(`Plugin package should be published: ${packageName}`, async (t) => {
83-
t.is(typeof version, 'string')
84-
t.not(validVersion(version), null)
85-
await t.notThrowsAsync(manifest(`${packageName}@${version}`))
86-
})
87-
8882
if (status !== 'DEACTIVATED') {
83+
test(`Plugin package should be published: ${packageName}`, async (t) => {
84+
t.is(typeof version, 'string')
85+
t.not(validVersion(version), null)
86+
await t.notThrowsAsync(manifest(`${packageName}@${version}`))
87+
})
88+
8989
test(`Plugin repository URL should be valid: ${packageName}`, async (t) => {
9090
await t.notThrowsAsync(got(repo))
9191
})

0 commit comments

Comments
 (0)