Merge pull request #30989 from storybookjs/valentin/update-autoblock-and-documentation

Documentation: Update migration documentation
This commit is contained in:
Valentin Palkovic 2025-03-31 09:39:01 +02:00 committed by GitHub
commit e6441cb9db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -861,9 +861,9 @@ export default {
#### Next.js = Require v14 and up
Storybook has dropped support for Next.js versions below 14. The minimum supported version is now Next.js 14.
Storybook has dropped support for Next.js versions below 14.1. The minimum supported version is now Next.js 14.1.
If you're using an older version of Next.js, you'll need to upgrade to Next.js 14 or newer to use the latest version of Storybook.
If you're using an older version of Next.js, you'll need to upgrade to Next.js 14.1 or newer to use the latest version of Storybook.
For help upgrading your Next.js application, see the [Next.js upgrade guide](https://nextjs.org/docs/app/building-your-application/upgrading).

View File

@ -5,7 +5,7 @@ import { dedent } from 'ts-dedent';
import { createBlocker } from './types';
const minimalVersionsMap = {
'@angular/core': '15.0.0',
'@angular/core': '18.0.0',
'react-scripts': '5.0.0',
'@storybook/preact-webpack5': '9.0.0',
'@storybook/preset-preact-webpack': '9.0.0',
@ -86,7 +86,7 @@ export const blocker = createBlocker({
`;
case '@angular/core':
return dedent`
Support for Angular < 15 has been removed.
Support for Angular < 18 has been removed.
Please see the migration guide for more information:
${picocolors.yellow('https://angular.io/guide/update-to-version-15')}
@ -94,7 +94,7 @@ export const blocker = createBlocker({
`;
case 'next':
return dedent`
Support for Next.js < 13.5 has been removed.
Support for Next.js < 14.1 has been removed.
Please see the migration guide for more information:
${picocolors.yellow(
'https://nextjs.org/docs/pages/building-your-application/upgrading/version-13'