diff --git a/site/plugins.json b/site/plugins.json index 4271d3358..e5b19dfa7 100644 --- a/site/plugins.json +++ b/site/plugins.json @@ -615,7 +615,7 @@ "name": "Next.js ", "package": "@netlify/plugin-nextjs", "repo": "https://github.com/netlify/next-runtime", - "version": "5.11.6", + "version": "5.12.0", "compatibility": [ { "version": "5.7.0-ipx.0", @@ -627,7 +627,7 @@ } }, { - "version": "5.11.6", + "version": "5.12.0", "overridePinnedVersion": ">=4.0.0", "nodeVersion": ">=18.0.0", "siteDependencies": { @@ -1008,7 +1008,8 @@ "package": "@chiselstrike/netlify-plugin", "description": "Sync Netlify sites and ChiselStrike builds from code in the same Git repository.", "repo": "https://github.com/chiselstrike/netlify-plugin", - "version": "0.1.0" + "version": "0.1.0", + "status": "DEACTIVATED" }, { "name": "Netlify Bundle ENV", diff --git a/test/main.js b/test/main.js index 22431ae76..cf0638155 100644 --- a/test/main.js +++ b/test/main.js @@ -79,13 +79,13 @@ pluginsList.forEach((plugin) => { }) }) - test(`Plugin package should be published: ${packageName}`, async (t) => { - t.is(typeof version, 'string') - t.not(validVersion(version), null) - await t.notThrowsAsync(manifest(`${packageName}@${version}`)) - }) - if (status !== 'DEACTIVATED') { + test(`Plugin package should be published: ${packageName}`, async (t) => { + t.is(typeof version, 'string') + t.not(validVersion(version), null) + await t.notThrowsAsync(manifest(`${packageName}@${version}`)) + }) + test(`Plugin repository URL should be valid: ${packageName}`, async (t) => { await t.notThrowsAsync(got(repo)) })