You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/e2e-report.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ jobs:
43
43
version=${version:-latest}
44
44
OUTPUT_DIR="e2e-report/data"
45
45
OUTPUT_FILENAME="test-results.json"
46
-
echo "Downloading ${version} test results from run https://github.com/netlify/next-runtime/actions/runs/${{ steps.get-run-id.outputs.runId }}"
46
+
echo "Downloading ${version} test results from run https://github.com/opennextjs/opennextjs-netlify/actions/runs/${{ steps.get-run-id.outputs.runId }}"
47
47
rm "${OUTPUT_DIR}/${OUTPUT_FILENAME}"
48
48
artifact_name="${version}-test-results.json"
49
49
# NOTE: The artifact name is not necessarily the artifact *file* name. The file name here
`@netlify/plugin-nextjs@5 requires Next.js version ${SUPPORTED_NEXT_VERSIONS}, but found ${ctx.nextVersion}. Please upgrade your project's Next.js version.`,
60
+
`@opennextjs/netlify@5 requires Next.js version ${SUPPORTED_NEXT_VERSIONS}, but found ${ctx.nextVersion}. Please upgrade your project's Next.js version.`,
61
61
)
62
62
}
63
63
}
@@ -85,7 +85,7 @@ export async function verifyAdvancedAPIRoutes(ctx: PluginContext) {
85
85
86
86
if(unsupportedAPIRoutes.length!==0){
87
87
ctx.failBuild(
88
-
`@netlify/plugin-nextjs@5 does not support advanced API routes. The following API routes should be migrated to Netlify background or scheduled functions:\n${unsupportedAPIRoutes.map((apiRouteConfig)=>` - ${apiRouteConfig.apiRoute} (type: "${apiRouteConfig.config.type}")`).join('\n')}\n\nRefer to https://ntl.fyi/next-scheduled-bg-function-migration as migration example.`,
88
+
`@opennextjs/netlify@5 does not support advanced API routes. The following API routes should be migrated to Netlify background or scheduled functions:\n${unsupportedAPIRoutes.map((apiRouteConfig)=>` - ${apiRouteConfig.apiRoute} (type: "${apiRouteConfig.config.type}")`).join('\n')}\n\nRefer to https://ntl.fyi/next-scheduled-bg-function-migration as migration example.`,
'@netlify/plugin-nextjs@5 requires migration steps to support Netlify Forms. Refer to https://ntl.fyi/next-runtime-forms-migration for migration example.',
122
+
'@opennextjs/netlify@5 requires migration steps to support Netlify Forms. Refer to https://ntl.fyi/next-runtime-forms-migration for migration example.',
'@netlify/plugin-nextjs@5 does not support advanced API routes. The following API routes should be migrated to Netlify background or scheduled functions:',
29
+
'@opennextjs/netlify@5 does not support advanced API routes. The following API routes should be migrated to Netlify background or scheduled functions:',
Copy file name to clipboardExpand all lines: tests/integration/netlify-forms.test.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ it<FixtureTestContext>('should fail build when netlify forms are used', async (c
25
25
construnPluginPromise=runPlugin(ctx)
26
26
27
27
awaitexpect(runPluginPromise).rejects.toThrow(
28
-
'@netlify/plugin-nextjs@5 requires migration steps to support Netlify Forms. Refer to https://ntl.fyi/next-runtime-forms-migration for migration example.',
28
+
'@opennextjs/netlify@5 requires migration steps to support Netlify Forms. Refer to https://ntl.fyi/next-runtime-forms-migration for migration example.',
0 commit comments