docs/releases/migration-guide-from-older-version.mdx
Storybook 9 improves performance, compatibility, and stability. Its key features include:
This guide is meant to help you upgrade from Storybook 8.x to 9.1 successfully!
<Callout variant="info"> **Migrating from Storybook 6 or 7?**We have prior migration guides for:
The rest of this guide will help you upgrade successfully, either automatically or manually. But first, there are some breaking changes in Storybook 9. Here are the most impactful changes you should know about before you go further:
experimental-addon-test to addon-vitestnextjs-vite framework stabilizedutil, assert and processIf any of these changes apply to your project, please read through the linked migration notes before continuing.
If any of these new requirements or changes are blockers for your project, we recommend to continue using Storybook 8.x.
You may wish to read the full migration notes before migrating. Or you can run the upgrade command below and we’ll try to take care of everything for you!
To upgrade your Storybook, run the upgrade command in the root of your repository:
<CodeSnippets path="storybook-upgrade.md" />This will:
To add Storybook to a project that isn’t currently using Storybook:
<CodeSnippets path="create-command.md" copyEvent="CreateCommandCopy" />This will:
The automatic upgrade should get your Storybook into a working state. If you encounter an error running Storybook after upgrading, here’s what to do:
doctor command to check for common issues (such as duplicate dependencies, incompatible addons, or mismatched versions) and see suggestions for fixing them.storybook with the dev command, try using the build command instead. Sometimes build errors are more legible than dev errors!If you prefer to debug yourself, here are a few useful things you can do to help narrow down the problem:
@storybook npm namespace (make sure you don't remove the storybook package). Community addons that work well with 8.x might not yet be compatible with 9.x, and this is the fastest way to isolate that possibility. If you find an addon that needs to be upgraded to work with Storybook 9, please post an issue on the addon’s repository, or better yet, a pull request to upgrade it!9.0.0-beta.56, you could set the version to 9.0.0-alpha.0 in your package.json and reinstall to verify that it still works (alpha.0 should be nearly identical to 8.6.x). If it works, you could then try 9.0.0-beta.0, then 9.0.0-beta.28 and so forth. Once you’ve isolated the bad release, read through its CHANGELOG entry and perhaps there’s a change that jumps out as the culprit. If you find the problem, please submit an issue or pull request to the Storybook monorepo and we’ll do our best to take care of it quickly.The following packages are no longer published. Instead they have been consolidated into Storybook's core package, storybook. If a consolidated package had exports, those are available via the replacement path in the table below. See the full migration notes for details.
| Removal | Replacement |
|---|---|
@storybook/addon-actions | storybook/actions |
@storybook/addon-backgrounds | N/A |
@storybook/addon-controls | N/A |
@storybook/addon-highlight | storybook/highlight |
@storybook/addon-interactions | N/A |
@storybook/addon-measure | N/A |
@storybook/addon-outline | N/A |
@storybook/addon-toolbars | N/A |
@storybook/addon-viewport | storybook/viewport |
@storybook/manager-api | storybook/manager-api |
@storybook/preview-api | storybook/preview-api |
@storybook/test | storybook/test |
@storybook/theming | storybook/theming |
The following packages have been consolidated and moved into an internal path to indicate that they are now for internal usage only. They will continue to work in 9.x releases, but will likely be removed in 10.0. See the full migration notes for details.
| Deprecation | Replacement |
|---|---|
@storybook/builder-manager | storybook/internal/builder-manager |
@storybook/channels | storybook/internal/channels |
@storybook/client-logger | storybook/internal/client-logger |
@storybook/components | storybook/internal/components |
@storybook/core-common | storybook/internal/common |
@storybook/core-events | storybook/internal/core-events |
@storybook/core-server | storybook/internal/core-server |
@storybook/csf-tools | storybook/internal/csf-tools |
@storybook/docs-tools | storybook/internal/docs-tools |
@storybook/manager | storybook/internal/manager |
@storybook/node-logger | storybook/internal/node-logger |
@storybook/preview | storybook/internal/preview |
@storybook/router | storybook/internal/router |
@storybook/telemetry | storybook/internal/telemetry |
@storybook/types | storybook/internal/types |
Addon authors may continue to use the internal packages, there is currently not yet any replacement.
In addition to the automigrations and manual migrations above, there are also optional migrations that you should consider. These are features that we’ve deprecated in Storybook 9 (but remain backwards compatible), or best practices that should help you be more productive in the future.
test-runner to addon-vitestaddon-vitest and the rest of the Storybook Test experience is designed to supercede the test-runner. It's faster and provides a better experience for writing and running tests. If your project uses React, Vue, or Svelte and is built with Vite, you should consider migrating to addon-vitest, by following the installation instructions.
There are many good reasons to convert your stories from CSF 2 to CSF 3. We provide a codemod which, in most cases, should automatically make the code changes for you (make sure to update the glob to fit your files):
<CodeSnippets path="storybook-migrate-csf-2-to-3.md" />