diff --git a/CHANGELOG.prerelease.md b/CHANGELOG.prerelease.md
index b9883dc793e7..11c0c137f628 100644
--- a/CHANGELOG.prerelease.md
+++ b/CHANGELOG.prerelease.md
@@ -1,3 +1,11 @@
+## 8.0.0-alpha.5
+
+- Core: Remove the `-s` flag from build & dev - [#25266](https://github.com/storybookjs/storybook/pull/25266), thanks [@ndelangen](https://github.com/ndelangen)!
+- Core: Skip no-framework error when ignorePreview=true - [#25286](https://github.com/storybookjs/storybook/pull/25286), thanks [@ndelangen](https://github.com/ndelangen)!
+- Core: Unique outputDir/cacheDir for each configDir - [#25264](https://github.com/storybookjs/storybook/pull/25264), thanks [@ndelangen](https://github.com/ndelangen)!
+- Dependencies: Semver dependency fixes - [#25283](https://github.com/storybookjs/storybook/pull/25283), thanks [@ndelangen](https://github.com/ndelangen)!
+- NextJS: Mock out `server-only` package for RSC - [#25263](https://github.com/storybookjs/storybook/pull/25263), thanks [@shilman](https://github.com/shilman)!
+
## 8.0.0-alpha.4
- API: Remove stories.json support - [#25236](https://github.com/storybookjs/storybook/pull/25236), thanks [@shilman](https://github.com/shilman)!
diff --git a/MIGRATION.md b/MIGRATION.md
index 787e893df979..c69c72a1fc66 100644
--- a/MIGRATION.md
+++ b/MIGRATION.md
@@ -549,7 +549,7 @@ To summarize:
#### typescript.skipBabel deprecated
-We will remove the `typescript.skipBabel` option in Storybook 8.0.0. Please use `typescirpt.skipCompiler` instead.
+We will remove the `typescript.skipBabel` option in Storybook 8.0.0. Please use `typescript.skipCompiler` instead.
#### Primary doc block accepts of prop
diff --git a/code/addons/a11y/README.md b/code/addons/a11y/README.md
index 7ff0d885ec0a..64730ef61033 100755
--- a/code/addons/a11y/README.md
+++ b/code/addons/a11y/README.md
@@ -193,6 +193,10 @@ export const inaccessible = () => (
);
```
+## Automate accessibility tests with test runner
+
+The test runner does not apply any rules that you have set on your stories by default. You can configure the runner to correctly apply the rules by [following the guide on the Storybook docs](https://storybook.js.org/docs/writing-tests/accessibility-testing#automate-accessibility-tests-with-test-runner).
+
## Roadmap
- Make UI accessible
diff --git a/code/addons/a11y/package.json b/code/addons/a11y/package.json
index a62171ca2e40..d951986511cc 100644
--- a/code/addons/a11y/package.json
+++ b/code/addons/a11y/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-a11y",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Test component compliance with web accessibility standards",
"keywords": [
"a11y",
diff --git a/code/addons/actions/package.json b/code/addons/actions/package.json
index da85fef889d0..b0c35163d7d6 100644
--- a/code/addons/actions/package.json
+++ b/code/addons/actions/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-actions",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Get UI feedback when an action is performed on an interactive element",
"keywords": [
"storybook",
diff --git a/code/addons/backgrounds/package.json b/code/addons/backgrounds/package.json
index bad8d53c24be..2133e680bd20 100644
--- a/code/addons/backgrounds/package.json
+++ b/code/addons/backgrounds/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-backgrounds",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Switch backgrounds to view components in different settings",
"keywords": [
"addon",
diff --git a/code/addons/controls/package.json b/code/addons/controls/package.json
index 8580c7c8c910..9af8033cb9ef 100644
--- a/code/addons/controls/package.json
+++ b/code/addons/controls/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-controls",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Interact with component inputs dynamically in the Storybook UI",
"keywords": [
"addon",
diff --git a/code/addons/docs/package.json b/code/addons/docs/package.json
index ba80d582f9f4..84eb2c858ec2 100644
--- a/code/addons/docs/package.json
+++ b/code/addons/docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-docs",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Document component usage and properties in Markdown",
"keywords": [
"addon",
diff --git a/code/addons/essentials/package.json b/code/addons/essentials/package.json
index 8844085a5834..ab47a59356b8 100644
--- a/code/addons/essentials/package.json
+++ b/code/addons/essentials/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-essentials",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Curated addons to bring out the best of Storybook",
"keywords": [
"addon",
diff --git a/code/addons/gfm/package.json b/code/addons/gfm/package.json
index 357ab8cae1ed..0794b44e106a 100644
--- a/code/addons/gfm/package.json
+++ b/code/addons/gfm/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-mdx-gfm",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "GitHub Flavored Markdown in Storybook",
"keywords": [
"addon",
diff --git a/code/addons/highlight/package.json b/code/addons/highlight/package.json
index 4da655f3e8cc..7ee96e846df2 100644
--- a/code/addons/highlight/package.json
+++ b/code/addons/highlight/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-highlight",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Highlight DOM nodes within your stories",
"keywords": [
"storybook-addons",
diff --git a/code/addons/interactions/package.json b/code/addons/interactions/package.json
index a221e1c71695..2b81da285f7c 100644
--- a/code/addons/interactions/package.json
+++ b/code/addons/interactions/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-interactions",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Automate, test and debug user interactions",
"keywords": [
"storybook-addons",
diff --git a/code/addons/jest/package.json b/code/addons/jest/package.json
index 030b19ae4b25..a17caffadef5 100644
--- a/code/addons/jest/package.json
+++ b/code/addons/jest/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-jest",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "React storybook addon that show component jest report",
"keywords": [
"addon",
diff --git a/code/addons/links/package.json b/code/addons/links/package.json
index 28d53b499f82..ea391377950e 100644
--- a/code/addons/links/package.json
+++ b/code/addons/links/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-links",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Link stories together to build demos and prototypes with your UI components",
"keywords": [
"addon",
diff --git a/code/addons/measure/package.json b/code/addons/measure/package.json
index ed43ed640a78..572484818054 100644
--- a/code/addons/measure/package.json
+++ b/code/addons/measure/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-measure",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Inspect layouts by visualizing the box model",
"keywords": [
"storybook-addons",
diff --git a/code/addons/outline/package.json b/code/addons/outline/package.json
index f0816abfe222..179dce716baf 100644
--- a/code/addons/outline/package.json
+++ b/code/addons/outline/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-outline",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Outline all elements with CSS to help with layout placement and alignment",
"keywords": [
"storybook-addons",
diff --git a/code/addons/storysource/package.json b/code/addons/storysource/package.json
index a2c0a79d15ff..8545b0d959dd 100644
--- a/code/addons/storysource/package.json
+++ b/code/addons/storysource/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-storysource",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "View a story’s source code to see how it works and paste into your app",
"keywords": [
"addon",
diff --git a/code/addons/themes/package.json b/code/addons/themes/package.json
index d06cacc7c11a..bbac31861023 100644
--- a/code/addons/themes/package.json
+++ b/code/addons/themes/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-themes",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Switch between multiple themes for you components in Storybook",
"keywords": [
"css",
diff --git a/code/addons/toolbars/package.json b/code/addons/toolbars/package.json
index 4b6b4912baef..3a8e32e9ca5c 100644
--- a/code/addons/toolbars/package.json
+++ b/code/addons/toolbars/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-toolbars",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Create your own toolbar items that control story rendering",
"keywords": [
"addon",
diff --git a/code/addons/viewport/package.json b/code/addons/viewport/package.json
index a5277fd1b8f3..c110c4fba7f9 100644
--- a/code/addons/viewport/package.json
+++ b/code/addons/viewport/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-viewport",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Build responsive components by adjusting Storybook’s viewport size and orientation",
"keywords": [
"addon",
diff --git a/code/builders/builder-manager/package.json b/code/builders/builder-manager/package.json
index 528677690f64..e2e435f837b1 100644
--- a/code/builders/builder-manager/package.json
+++ b/code/builders/builder-manager/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/builder-manager",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook manager builder",
"keywords": [
"storybook"
diff --git a/code/builders/builder-vite/package.json b/code/builders/builder-vite/package.json
index c8ecb6885ea4..e0459493dbd2 100644
--- a/code/builders/builder-vite/package.json
+++ b/code/builders/builder-vite/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/builder-vite",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "A plugin to run and build Storybooks with Vite",
"homepage": "https://github.com/storybookjs/storybook/tree/next/code/builders/builder-vite/#readme",
"bugs": {
diff --git a/code/builders/builder-webpack5/package.json b/code/builders/builder-webpack5/package.json
index cb2b8fe3d02b..e38893b42bcd 100644
--- a/code/builders/builder-webpack5/package.json
+++ b/code/builders/builder-webpack5/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/builder-webpack5",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook framework-agnostic API",
"keywords": [
"storybook"
diff --git a/code/frameworks/angular/package.json b/code/frameworks/angular/package.json
index 1f532e8e7d2f..ef030dd8bf55 100644
--- a/code/frameworks/angular/package.json
+++ b/code/frameworks/angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/angular",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Angular: Develop Angular components in isolation with hot reloading.",
"keywords": [
"storybook",
diff --git a/code/frameworks/ember/package.json b/code/frameworks/ember/package.json
index bfb7e1d3ff36..c843c7712cde 100644
--- a/code/frameworks/ember/package.json
+++ b/code/frameworks/ember/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/ember",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Ember: Develop Ember Component in isolation with Hot Reloading.",
"homepage": "https://github.com/storybookjs/storybook/tree/next/code/frameworks/ember",
"bugs": {
diff --git a/code/frameworks/html-vite/package.json b/code/frameworks/html-vite/package.json
index f29f15677862..010de8d6a3dd 100644
--- a/code/frameworks/html-vite/package.json
+++ b/code/frameworks/html-vite/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/html-vite",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for HTML and Vite: Develop HTML in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/html-webpack5/package.json b/code/frameworks/html-webpack5/package.json
index da35b84d27f9..825bccbf896d 100644
--- a/code/frameworks/html-webpack5/package.json
+++ b/code/frameworks/html-webpack5/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/html-webpack5",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/nextjs/package.json b/code/frameworks/nextjs/package.json
index 2c259c547563..ed10bbe5c119 100644
--- a/code/frameworks/nextjs/package.json
+++ b/code/frameworks/nextjs/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/nextjs",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Next.js",
"keywords": [
"storybook",
diff --git a/code/frameworks/preact-vite/package.json b/code/frameworks/preact-vite/package.json
index bccba8083910..d9a44ff4fc49 100644
--- a/code/frameworks/preact-vite/package.json
+++ b/code/frameworks/preact-vite/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preact-vite",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Preact and Vite: Develop Preact components in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/preact-webpack5/package.json b/code/frameworks/preact-webpack5/package.json
index 5ed8ab87fd28..7b49a2845fad 100644
--- a/code/frameworks/preact-webpack5/package.json
+++ b/code/frameworks/preact-webpack5/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preact-webpack5",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Preact: Develop Preact Component in isolation.",
"keywords": [
"storybook"
diff --git a/code/frameworks/react-vite/package.json b/code/frameworks/react-vite/package.json
index ec13392db394..58bba3326b45 100644
--- a/code/frameworks/react-vite/package.json
+++ b/code/frameworks/react-vite/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/react-vite",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for React and Vite: Develop React components in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/react-webpack5/package.json b/code/frameworks/react-webpack5/package.json
index 44da3c642162..c63b840d6071 100644
--- a/code/frameworks/react-webpack5/package.json
+++ b/code/frameworks/react-webpack5/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/react-webpack5",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/server-webpack5/package.json b/code/frameworks/server-webpack5/package.json
index 06bdc2b2bbe9..959f06e435b7 100644
--- a/code/frameworks/server-webpack5/package.json
+++ b/code/frameworks/server-webpack5/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/server-webpack5",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Server: View HTML snippets from a server in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/svelte-vite/package.json b/code/frameworks/svelte-vite/package.json
index 9dedf2eaf71b..d8abba1f31d1 100644
--- a/code/frameworks/svelte-vite/package.json
+++ b/code/frameworks/svelte-vite/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/svelte-vite",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Svelte and Vite: Develop Svelte components in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/svelte-webpack5/package.json b/code/frameworks/svelte-webpack5/package.json
index bd7c166692e6..7c5441c1989f 100644
--- a/code/frameworks/svelte-webpack5/package.json
+++ b/code/frameworks/svelte-webpack5/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/svelte-webpack5",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Svelte: Develop Svelte Component in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/sveltekit/package.json b/code/frameworks/sveltekit/package.json
index f52a2a20e564..d3330cb5cfb7 100644
--- a/code/frameworks/sveltekit/package.json
+++ b/code/frameworks/sveltekit/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/sveltekit",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for SvelteKit",
"keywords": [
"storybook",
diff --git a/code/frameworks/vue3-vite/package.json b/code/frameworks/vue3-vite/package.json
index 37d491119993..ece127b9e626 100644
--- a/code/frameworks/vue3-vite/package.json
+++ b/code/frameworks/vue3-vite/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/vue3-vite",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Vue3 and Vite: Develop Vue3 components in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/vue3-webpack5/package.json b/code/frameworks/vue3-webpack5/package.json
index 184583a7cf14..d588c430fe39 100644
--- a/code/frameworks/vue3-webpack5/package.json
+++ b/code/frameworks/vue3-webpack5/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/vue3-webpack5",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Vue 3: Develop Vue 3 Components in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/web-components-vite/package.json b/code/frameworks/web-components-vite/package.json
index f72f47547052..1c860ecda8e8 100644
--- a/code/frameworks/web-components-vite/package.json
+++ b/code/frameworks/web-components-vite/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/web-components-vite",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for web-components and Vite: Develop Web Components in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/frameworks/web-components-webpack5/package.json b/code/frameworks/web-components-webpack5/package.json
index d41a40ea985a..9e7ff1aca558 100644
--- a/code/frameworks/web-components-webpack5/package.json
+++ b/code/frameworks/web-components-webpack5/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/web-components-webpack5",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for web-components: View web components snippets in isolation with Hot Reloading.",
"keywords": [
"lit",
diff --git a/code/lib/channels/package.json b/code/lib/channels/package.json
index 5faa33d3f95f..41f915238947 100644
--- a/code/lib/channels/package.json
+++ b/code/lib/channels/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/channels",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "",
"keywords": [
"storybook"
diff --git a/code/lib/cli-sb/package.json b/code/lib/cli-sb/package.json
index f336503e3e29..f4598c113a4c 100644
--- a/code/lib/cli-sb/package.json
+++ b/code/lib/cli-sb/package.json
@@ -1,6 +1,6 @@
{
"name": "sb",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook CLI",
"keywords": [
"storybook"
diff --git a/code/lib/cli-storybook/package.json b/code/lib/cli-storybook/package.json
index 4aa75cf6a4a1..483f4a14819a 100644
--- a/code/lib/cli-storybook/package.json
+++ b/code/lib/cli-storybook/package.json
@@ -1,6 +1,6 @@
{
"name": "storybook",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook CLI",
"keywords": [
"storybook"
diff --git a/code/lib/cli/package.json b/code/lib/cli/package.json
index d4493a1bc4ad..bfaba5b57ace 100644
--- a/code/lib/cli/package.json
+++ b/code/lib/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/cli",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook's CLI - install, dev, build, upgrade, and more",
"keywords": [
"cli",
diff --git a/code/lib/cli/src/versions.ts b/code/lib/cli/src/versions.ts
index 49bb12768570..25a82dcb02a4 100644
--- a/code/lib/cli/src/versions.ts
+++ b/code/lib/cli/src/versions.ts
@@ -1,83 +1,83 @@
// auto generated file, do not edit
export default {
- '@storybook/addon-a11y': '8.0.0-alpha.4',
- '@storybook/addon-actions': '8.0.0-alpha.4',
- '@storybook/addon-backgrounds': '8.0.0-alpha.4',
- '@storybook/addon-controls': '8.0.0-alpha.4',
- '@storybook/addon-docs': '8.0.0-alpha.4',
- '@storybook/addon-essentials': '8.0.0-alpha.4',
- '@storybook/addon-highlight': '8.0.0-alpha.4',
- '@storybook/addon-interactions': '8.0.0-alpha.4',
- '@storybook/addon-jest': '8.0.0-alpha.4',
- '@storybook/addon-links': '8.0.0-alpha.4',
- '@storybook/addon-mdx-gfm': '8.0.0-alpha.4',
- '@storybook/addon-measure': '8.0.0-alpha.4',
- '@storybook/addon-outline': '8.0.0-alpha.4',
- '@storybook/addon-storysource': '8.0.0-alpha.4',
- '@storybook/addon-themes': '8.0.0-alpha.4',
- '@storybook/addon-toolbars': '8.0.0-alpha.4',
- '@storybook/addon-viewport': '8.0.0-alpha.4',
- '@storybook/angular': '8.0.0-alpha.4',
- '@storybook/blocks': '8.0.0-alpha.4',
- '@storybook/builder-manager': '8.0.0-alpha.4',
- '@storybook/builder-vite': '8.0.0-alpha.4',
- '@storybook/builder-webpack5': '8.0.0-alpha.4',
- '@storybook/channels': '8.0.0-alpha.4',
- '@storybook/cli': '8.0.0-alpha.4',
- '@storybook/client-logger': '8.0.0-alpha.4',
- '@storybook/codemod': '8.0.0-alpha.4',
- '@storybook/components': '8.0.0-alpha.4',
- '@storybook/core-common': '8.0.0-alpha.4',
- '@storybook/core-events': '8.0.0-alpha.4',
- '@storybook/core-server': '8.0.0-alpha.4',
- '@storybook/core-webpack': '8.0.0-alpha.4',
- '@storybook/csf-plugin': '8.0.0-alpha.4',
- '@storybook/csf-tools': '8.0.0-alpha.4',
- '@storybook/docs-tools': '8.0.0-alpha.4',
- '@storybook/ember': '8.0.0-alpha.4',
- '@storybook/html': '8.0.0-alpha.4',
- '@storybook/html-vite': '8.0.0-alpha.4',
- '@storybook/html-webpack5': '8.0.0-alpha.4',
- '@storybook/instrumenter': '8.0.0-alpha.4',
- '@storybook/manager': '8.0.0-alpha.4',
- '@storybook/manager-api': '8.0.0-alpha.4',
- '@storybook/nextjs': '8.0.0-alpha.4',
- '@storybook/node-logger': '8.0.0-alpha.4',
- '@storybook/preact': '8.0.0-alpha.4',
- '@storybook/preact-vite': '8.0.0-alpha.4',
- '@storybook/preact-webpack5': '8.0.0-alpha.4',
- '@storybook/preset-create-react-app': '8.0.0-alpha.4',
- '@storybook/preset-html-webpack': '8.0.0-alpha.4',
- '@storybook/preset-preact-webpack': '8.0.0-alpha.4',
- '@storybook/preset-react-webpack': '8.0.0-alpha.4',
- '@storybook/preset-server-webpack': '8.0.0-alpha.4',
- '@storybook/preset-svelte-webpack': '8.0.0-alpha.4',
- '@storybook/preset-vue3-webpack': '8.0.0-alpha.4',
- '@storybook/preset-web-components-webpack': '8.0.0-alpha.4',
- '@storybook/preview': '8.0.0-alpha.4',
- '@storybook/preview-api': '8.0.0-alpha.4',
- '@storybook/react': '8.0.0-alpha.4',
- '@storybook/react-dom-shim': '8.0.0-alpha.4',
- '@storybook/react-vite': '8.0.0-alpha.4',
- '@storybook/react-webpack5': '8.0.0-alpha.4',
- '@storybook/router': '8.0.0-alpha.4',
- '@storybook/server': '8.0.0-alpha.4',
- '@storybook/server-webpack5': '8.0.0-alpha.4',
- '@storybook/source-loader': '8.0.0-alpha.4',
- '@storybook/svelte': '8.0.0-alpha.4',
- '@storybook/svelte-vite': '8.0.0-alpha.4',
- '@storybook/svelte-webpack5': '8.0.0-alpha.4',
- '@storybook/sveltekit': '8.0.0-alpha.4',
- '@storybook/telemetry': '8.0.0-alpha.4',
- '@storybook/test': '8.0.0-alpha.4',
- '@storybook/theming': '8.0.0-alpha.4',
- '@storybook/types': '8.0.0-alpha.4',
- '@storybook/vue3': '8.0.0-alpha.4',
- '@storybook/vue3-vite': '8.0.0-alpha.4',
- '@storybook/vue3-webpack5': '8.0.0-alpha.4',
- '@storybook/web-components': '8.0.0-alpha.4',
- '@storybook/web-components-vite': '8.0.0-alpha.4',
- '@storybook/web-components-webpack5': '8.0.0-alpha.4',
- sb: '8.0.0-alpha.4',
- storybook: '8.0.0-alpha.4',
+ '@storybook/addon-a11y': '8.0.0-alpha.5',
+ '@storybook/addon-actions': '8.0.0-alpha.5',
+ '@storybook/addon-backgrounds': '8.0.0-alpha.5',
+ '@storybook/addon-controls': '8.0.0-alpha.5',
+ '@storybook/addon-docs': '8.0.0-alpha.5',
+ '@storybook/addon-essentials': '8.0.0-alpha.5',
+ '@storybook/addon-highlight': '8.0.0-alpha.5',
+ '@storybook/addon-interactions': '8.0.0-alpha.5',
+ '@storybook/addon-jest': '8.0.0-alpha.5',
+ '@storybook/addon-links': '8.0.0-alpha.5',
+ '@storybook/addon-mdx-gfm': '8.0.0-alpha.5',
+ '@storybook/addon-measure': '8.0.0-alpha.5',
+ '@storybook/addon-outline': '8.0.0-alpha.5',
+ '@storybook/addon-storysource': '8.0.0-alpha.5',
+ '@storybook/addon-themes': '8.0.0-alpha.5',
+ '@storybook/addon-toolbars': '8.0.0-alpha.5',
+ '@storybook/addon-viewport': '8.0.0-alpha.5',
+ '@storybook/angular': '8.0.0-alpha.5',
+ '@storybook/blocks': '8.0.0-alpha.5',
+ '@storybook/builder-manager': '8.0.0-alpha.5',
+ '@storybook/builder-vite': '8.0.0-alpha.5',
+ '@storybook/builder-webpack5': '8.0.0-alpha.5',
+ '@storybook/channels': '8.0.0-alpha.5',
+ '@storybook/cli': '8.0.0-alpha.5',
+ '@storybook/client-logger': '8.0.0-alpha.5',
+ '@storybook/codemod': '8.0.0-alpha.5',
+ '@storybook/components': '8.0.0-alpha.5',
+ '@storybook/core-common': '8.0.0-alpha.5',
+ '@storybook/core-events': '8.0.0-alpha.5',
+ '@storybook/core-server': '8.0.0-alpha.5',
+ '@storybook/core-webpack': '8.0.0-alpha.5',
+ '@storybook/csf-plugin': '8.0.0-alpha.5',
+ '@storybook/csf-tools': '8.0.0-alpha.5',
+ '@storybook/docs-tools': '8.0.0-alpha.5',
+ '@storybook/ember': '8.0.0-alpha.5',
+ '@storybook/html': '8.0.0-alpha.5',
+ '@storybook/html-vite': '8.0.0-alpha.5',
+ '@storybook/html-webpack5': '8.0.0-alpha.5',
+ '@storybook/instrumenter': '8.0.0-alpha.5',
+ '@storybook/manager': '8.0.0-alpha.5',
+ '@storybook/manager-api': '8.0.0-alpha.5',
+ '@storybook/nextjs': '8.0.0-alpha.5',
+ '@storybook/node-logger': '8.0.0-alpha.5',
+ '@storybook/preact': '8.0.0-alpha.5',
+ '@storybook/preact-vite': '8.0.0-alpha.5',
+ '@storybook/preact-webpack5': '8.0.0-alpha.5',
+ '@storybook/preset-create-react-app': '8.0.0-alpha.5',
+ '@storybook/preset-html-webpack': '8.0.0-alpha.5',
+ '@storybook/preset-preact-webpack': '8.0.0-alpha.5',
+ '@storybook/preset-react-webpack': '8.0.0-alpha.5',
+ '@storybook/preset-server-webpack': '8.0.0-alpha.5',
+ '@storybook/preset-svelte-webpack': '8.0.0-alpha.5',
+ '@storybook/preset-vue3-webpack': '8.0.0-alpha.5',
+ '@storybook/preset-web-components-webpack': '8.0.0-alpha.5',
+ '@storybook/preview': '8.0.0-alpha.5',
+ '@storybook/preview-api': '8.0.0-alpha.5',
+ '@storybook/react': '8.0.0-alpha.5',
+ '@storybook/react-dom-shim': '8.0.0-alpha.5',
+ '@storybook/react-vite': '8.0.0-alpha.5',
+ '@storybook/react-webpack5': '8.0.0-alpha.5',
+ '@storybook/router': '8.0.0-alpha.5',
+ '@storybook/server': '8.0.0-alpha.5',
+ '@storybook/server-webpack5': '8.0.0-alpha.5',
+ '@storybook/source-loader': '8.0.0-alpha.5',
+ '@storybook/svelte': '8.0.0-alpha.5',
+ '@storybook/svelte-vite': '8.0.0-alpha.5',
+ '@storybook/svelte-webpack5': '8.0.0-alpha.5',
+ '@storybook/sveltekit': '8.0.0-alpha.5',
+ '@storybook/telemetry': '8.0.0-alpha.5',
+ '@storybook/test': '8.0.0-alpha.5',
+ '@storybook/theming': '8.0.0-alpha.5',
+ '@storybook/types': '8.0.0-alpha.5',
+ '@storybook/vue3': '8.0.0-alpha.5',
+ '@storybook/vue3-vite': '8.0.0-alpha.5',
+ '@storybook/vue3-webpack5': '8.0.0-alpha.5',
+ '@storybook/web-components': '8.0.0-alpha.5',
+ '@storybook/web-components-vite': '8.0.0-alpha.5',
+ '@storybook/web-components-webpack5': '8.0.0-alpha.5',
+ sb: '8.0.0-alpha.5',
+ storybook: '8.0.0-alpha.5',
};
diff --git a/code/lib/client-logger/package.json b/code/lib/client-logger/package.json
index 157ba7ae1020..baf663a3a7a6 100644
--- a/code/lib/client-logger/package.json
+++ b/code/lib/client-logger/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/client-logger",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "",
"keywords": [
"storybook"
diff --git a/code/lib/codemod/package.json b/code/lib/codemod/package.json
index f3dda81527b1..1c745d055ff4 100644
--- a/code/lib/codemod/package.json
+++ b/code/lib/codemod/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/codemod",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "A collection of codemod scripts written with JSCodeshift",
"keywords": [
"storybook"
diff --git a/code/lib/core-common/package.json b/code/lib/core-common/package.json
index 12485ad7e4b4..7a3c1b087205 100644
--- a/code/lib/core-common/package.json
+++ b/code/lib/core-common/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/core-common",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook framework-agnostic API",
"keywords": [
"storybook"
diff --git a/code/lib/core-events/package.json b/code/lib/core-events/package.json
index 8ed6a52ddfaa..54a3c2cd2896 100644
--- a/code/lib/core-events/package.json
+++ b/code/lib/core-events/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/core-events",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Event names used in storybook core",
"keywords": [
"storybook"
diff --git a/code/lib/core-server/package.json b/code/lib/core-server/package.json
index 2fb8d372ff28..b12fe37ae249 100644
--- a/code/lib/core-server/package.json
+++ b/code/lib/core-server/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/core-server",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook framework-agnostic API",
"keywords": [
"storybook"
diff --git a/code/lib/core-webpack/package.json b/code/lib/core-webpack/package.json
index cdc7af4d91dd..cba0e22e48ea 100644
--- a/code/lib/core-webpack/package.json
+++ b/code/lib/core-webpack/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/core-webpack",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook framework-agnostic API",
"keywords": [
"storybook"
diff --git a/code/lib/csf-plugin/package.json b/code/lib/csf-plugin/package.json
index c5a678fc8250..185efb166797 100644
--- a/code/lib/csf-plugin/package.json
+++ b/code/lib/csf-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/csf-plugin",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Enrich CSF files via static analysis",
"keywords": [
"storybook"
diff --git a/code/lib/csf-tools/package.json b/code/lib/csf-tools/package.json
index 9fac705c1766..b8d58d1e7b2d 100644
--- a/code/lib/csf-tools/package.json
+++ b/code/lib/csf-tools/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/csf-tools",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Parse and manipulate CSF and Storybook config files",
"keywords": [
"storybook"
diff --git a/code/lib/docs-tools/package.json b/code/lib/docs-tools/package.json
index 183f44090005..d5745cdaadc0 100644
--- a/code/lib/docs-tools/package.json
+++ b/code/lib/docs-tools/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/docs-tools",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Shared utility functions for frameworks to implement docs",
"keywords": [
"storybook"
diff --git a/code/lib/instrumenter/package.json b/code/lib/instrumenter/package.json
index 7b959d261b69..8db3b33e4dfa 100644
--- a/code/lib/instrumenter/package.json
+++ b/code/lib/instrumenter/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/instrumenter",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "",
"keywords": [
"storybook"
diff --git a/code/lib/manager-api/package.json b/code/lib/manager-api/package.json
index 5a9c979c9e16..3c2db98451d3 100644
--- a/code/lib/manager-api/package.json
+++ b/code/lib/manager-api/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/manager-api",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Core Storybook Manager API & Context",
"keywords": [
"storybook"
diff --git a/code/lib/manager-api/src/version.ts b/code/lib/manager-api/src/version.ts
index d8c01196cc97..1065b862dca0 100644
--- a/code/lib/manager-api/src/version.ts
+++ b/code/lib/manager-api/src/version.ts
@@ -1 +1 @@
-export const version = '8.0.0-alpha.4';
+export const version = '8.0.0-alpha.5';
diff --git a/code/lib/node-logger/package.json b/code/lib/node-logger/package.json
index 0665c34bb0b8..d77ce7c5439d 100644
--- a/code/lib/node-logger/package.json
+++ b/code/lib/node-logger/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/node-logger",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "",
"keywords": [
"storybook"
diff --git a/code/lib/preview-api/package.json b/code/lib/preview-api/package.json
index 79b6f15a5afa..b4bce180dc25 100644
--- a/code/lib/preview-api/package.json
+++ b/code/lib/preview-api/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preview-api",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "",
"keywords": [
"storybook"
diff --git a/code/lib/preview/package.json b/code/lib/preview/package.json
index e915b1cf7e4d..a3aa0f54ad91 100644
--- a/code/lib/preview/package.json
+++ b/code/lib/preview/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preview",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "",
"keywords": [
"storybook"
diff --git a/code/lib/react-dom-shim/package.json b/code/lib/react-dom-shim/package.json
index bd3b107a83f8..0fabfac14483 100644
--- a/code/lib/react-dom-shim/package.json
+++ b/code/lib/react-dom-shim/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/react-dom-shim",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "",
"keywords": [
"storybook"
diff --git a/code/lib/router/package.json b/code/lib/router/package.json
index 08744e7192e3..bf53c9486835 100644
--- a/code/lib/router/package.json
+++ b/code/lib/router/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/router",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Core Storybook Router",
"keywords": [
"storybook"
diff --git a/code/lib/source-loader/package.json b/code/lib/source-loader/package.json
index ee5d0745df13..5680040c33c7 100644
--- a/code/lib/source-loader/package.json
+++ b/code/lib/source-loader/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/source-loader",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Source loader",
"keywords": [
"lib",
diff --git a/code/lib/telemetry/package.json b/code/lib/telemetry/package.json
index 382868ca56ca..2d273baae418 100644
--- a/code/lib/telemetry/package.json
+++ b/code/lib/telemetry/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/telemetry",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Telemetry logging for crash reports and usage statistics",
"keywords": [
"storybook"
diff --git a/code/lib/test/package.json b/code/lib/test/package.json
index ccbf58aea9a3..4977b44c0c2e 100644
--- a/code/lib/test/package.json
+++ b/code/lib/test/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/test",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "",
"keywords": [
"storybook"
diff --git a/code/lib/theming/package.json b/code/lib/theming/package.json
index 01cb4665f94d..234dc86976a9 100644
--- a/code/lib/theming/package.json
+++ b/code/lib/theming/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/theming",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Core Storybook Components",
"keywords": [
"storybook"
diff --git a/code/lib/types/package.json b/code/lib/types/package.json
index f96b1bacb750..8eba56ce78bc 100644
--- a/code/lib/types/package.json
+++ b/code/lib/types/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/types",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Core Storybook TS Types",
"keywords": [
"storybook"
diff --git a/code/package.json b/code/package.json
index 2f60707b53b9..6c3ff4745889 100644
--- a/code/package.json
+++ b/code/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/root",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"private": true,
"description": "Storybook root",
"homepage": "https://storybook.js.org/",
diff --git a/code/presets/create-react-app/package.json b/code/presets/create-react-app/package.json
index 9a5f30a1b3c2..13411ebf33a6 100644
--- a/code/presets/create-react-app/package.json
+++ b/code/presets/create-react-app/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preset-create-react-app",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Create React App preset",
"keywords": [
"storybook"
diff --git a/code/presets/html-webpack/package.json b/code/presets/html-webpack/package.json
index f7bd2136473b..ec63833fe6f7 100644
--- a/code/presets/html-webpack/package.json
+++ b/code/presets/html-webpack/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preset-html-webpack",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/presets/preact-webpack/package.json b/code/presets/preact-webpack/package.json
index 5337cd7fc1bd..e430127e413c 100644
--- a/code/presets/preact-webpack/package.json
+++ b/code/presets/preact-webpack/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preset-preact-webpack",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Preact: Develop Preact Component in isolation.",
"keywords": [
"storybook"
diff --git a/code/presets/react-webpack/package.json b/code/presets/react-webpack/package.json
index 5f53ffa47e32..42457e27d994 100644
--- a/code/presets/react-webpack/package.json
+++ b/code/presets/react-webpack/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preset-react-webpack",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for React: Develop React Component in isolation with Hot Reloading",
"keywords": [
"storybook"
diff --git a/code/presets/server-webpack/package.json b/code/presets/server-webpack/package.json
index f6230eb99452..253017711ca3 100644
--- a/code/presets/server-webpack/package.json
+++ b/code/presets/server-webpack/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preset-server-webpack",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Server: View HTML snippets from a server in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/presets/svelte-webpack/package.json b/code/presets/svelte-webpack/package.json
index c600ccf22708..f8ad27912e63 100644
--- a/code/presets/svelte-webpack/package.json
+++ b/code/presets/svelte-webpack/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preset-svelte-webpack",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Svelte: Develop Svelte Component in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/presets/vue3-webpack/package.json b/code/presets/vue3-webpack/package.json
index 81cf91bd55a5..c5e9d67c2087 100644
--- a/code/presets/vue3-webpack/package.json
+++ b/code/presets/vue3-webpack/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preset-vue3-webpack",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for Vue 3: Develop Vue 3 Components in isolation with Hot Reloading.",
"keywords": [
"storybook"
diff --git a/code/presets/web-components-webpack/package.json b/code/presets/web-components-webpack/package.json
index d81881d241c4..43e7f784170b 100644
--- a/code/presets/web-components-webpack/package.json
+++ b/code/presets/web-components-webpack/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preset-web-components-webpack",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook for web-components: View web components snippets in isolation with Hot Reloading.",
"keywords": [
"lit",
diff --git a/code/renderers/html/package.json b/code/renderers/html/package.json
index 932080a04f56..9fecf06b8fea 100644
--- a/code/renderers/html/package.json
+++ b/code/renderers/html/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/html",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook HTML renderer",
"keywords": [
"storybook"
diff --git a/code/renderers/preact/package.json b/code/renderers/preact/package.json
index b2674fdf89bd..1a2b75d77c5d 100644
--- a/code/renderers/preact/package.json
+++ b/code/renderers/preact/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/preact",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook Preact renderer",
"keywords": [
"storybook"
diff --git a/code/renderers/react/package.json b/code/renderers/react/package.json
index 9ac2e9253e44..b49b1b48d39d 100644
--- a/code/renderers/react/package.json
+++ b/code/renderers/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/react",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook React renderer",
"keywords": [
"storybook"
diff --git a/code/renderers/server/package.json b/code/renderers/server/package.json
index 908b0fd9efb6..16b6fb4c3f2b 100644
--- a/code/renderers/server/package.json
+++ b/code/renderers/server/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/server",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook Server renderer",
"keywords": [
"storybook"
diff --git a/code/renderers/svelte/package.json b/code/renderers/svelte/package.json
index 590a81540589..2c7ceeefef1e 100644
--- a/code/renderers/svelte/package.json
+++ b/code/renderers/svelte/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/svelte",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook Svelte renderer",
"keywords": [
"storybook"
diff --git a/code/renderers/vue3/package.json b/code/renderers/vue3/package.json
index 9fb1fe52e4c5..beccc0f8a1f6 100644
--- a/code/renderers/vue3/package.json
+++ b/code/renderers/vue3/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/vue3",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook Vue 3 renderer",
"keywords": [
"storybook"
diff --git a/code/renderers/web-components/package.json b/code/renderers/web-components/package.json
index e43e1a46de15..a14f941475a3 100644
--- a/code/renderers/web-components/package.json
+++ b/code/renderers/web-components/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/web-components",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook web-components renderer",
"keywords": [
"lit",
diff --git a/code/ui/blocks/package.json b/code/ui/blocks/package.json
index 3584ccf12534..ed0f5f5c144d 100644
--- a/code/ui/blocks/package.json
+++ b/code/ui/blocks/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/blocks",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Storybook Doc Blocks",
"keywords": [
"storybook"
diff --git a/code/ui/components/package.json b/code/ui/components/package.json
index b406cdfe20d9..f56cf5480e52 100644
--- a/code/ui/components/package.json
+++ b/code/ui/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/components",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Core Storybook Components",
"keywords": [
"storybook"
diff --git a/code/ui/manager/package.json b/code/ui/manager/package.json
index 46ceaa8859b6..2ed814f9dbd4 100644
--- a/code/ui/manager/package.json
+++ b/code/ui/manager/package.json
@@ -1,6 +1,6 @@
{
"name": "@storybook/manager",
- "version": "8.0.0-alpha.4",
+ "version": "8.0.0-alpha.5",
"description": "Core Storybook UI",
"keywords": [
"storybook"
diff --git a/docs/api/doc-block-controls.md b/docs/api/doc-block-controls.md
index d199c1f3ec99..fa753933cb31 100644
--- a/docs/api/doc-block-controls.md
+++ b/docs/api/doc-block-controls.md
@@ -31,7 +31,7 @@ import * as ButtonStories from './Button.stories'
-The Controls doc block will only have functioning UI controls if you have also installed and registered [`@storybook/addon-controls`](../essentials/controls.md) (included in [`@storybook/addon-essentials`](../essentials/index.md)).
+The Controls doc block will only have functioning UI controls if you have also installed and registered [`@storybook/addon-controls`](../essentials/controls.md) (included in [`@storybook/addon-essentials`](../essentials/index.md)) and haven't turned off inline stories with the [`inline`](./doc-block-story.md#inline) configuration option.
diff --git a/docs/api/doc-block-source.md b/docs/api/doc-block-source.md
index c4a460050430..1c4c68c50517 100644
--- a/docs/api/doc-block-source.md
+++ b/docs/api/doc-block-source.md
@@ -98,6 +98,18 @@ Light mode is only supported when the `Source` block is rendered independently.
+
+
+### `excludeDecorators`
+
+Type: `boolean`
+
+Default: `parameters.docs.source.excludeDecorators`
+
+Determines if [decorators](../writing-stories/decorators.md) are rendered in the source code snippet.
+
+
+
### `format`
Type: `boolean | 'dedent' | BuiltInParserName`
diff --git a/docs/api/doc-block-story.md b/docs/api/doc-block-story.md
index 0a3470429ace..179d683a2f4a 100644
--- a/docs/api/doc-block-story.md
+++ b/docs/api/doc-block-story.md
@@ -96,6 +96,12 @@ Default: `parameters.docs.story.inline` or `true` (for [supported frameworks](..
Determines whether the story is rendered `inline` (in the same browser frame as the other docs content) or in an iframe.
+
+
+Setting the `inline` option to false will prevent the associated [controls](./doc-block-controls.md) from updating the story within the documentation page. This is a known limitation of the current implementation and will be addressed in a future release.
+
+
+
### `meta`
Type: CSF file exports
diff --git a/docs/versions/next.json b/docs/versions/next.json
index 060cd5ca7efd..5244617df4d6 100644
--- a/docs/versions/next.json
+++ b/docs/versions/next.json
@@ -1 +1 @@
-{"version":"8.0.0-alpha.4","info":{"plain":"- API: Remove stories.json support - [#25236](https://github.com/storybookjs/storybook/pull/25236), thanks [@shilman](https://github.com/shilman)!\n- Addon Docs: Remove `react` peer dependency - [#24881](https://github.com/storybookjs/storybook/pull/24881), thanks [@JReinhold](https://github.com/JReinhold)!\n- Addon-docs: Support `` and `` in source viewer - [#19785](https://github.com/storybookjs/storybook/pull/19785), thanks [@zhyd1997](https://github.com/zhyd1997)!\n- Angular: Add random attribute to bootstrapped selector - [#24972](https://github.com/storybookjs/storybook/pull/24972), thanks [@Marklb](https://github.com/Marklb)!\n- Angular: Reduce the warnings from `ts-loader` via stricter list of `includes` - [#24531](https://github.com/storybookjs/storybook/pull/24531), thanks [@ndelangen](https://github.com/ndelangen)!\n- Blocks: Render colors in the same order as provided - [#25001](https://github.com/storybookjs/storybook/pull/25001), thanks [@kaelig](https://github.com/kaelig)!\n- CLI: Add prompt-only automigrate asking for react-removal - [#25215](https://github.com/storybookjs/storybook/pull/25215), thanks [@ndelangen](https://github.com/ndelangen)!\n- CLI: No longer add react in init - [#25196](https://github.com/storybookjs/storybook/pull/25196), thanks [@ndelangen](https://github.com/ndelangen)!\n- Core: Set bundle target to `node18` - [#25239](https://github.com/storybookjs/storybook/pull/25239), thanks [@shilman](https://github.com/shilman)!\n- SvelteKit: Fix missing `$app` modules - [#25132](https://github.com/storybookjs/storybook/pull/25132), thanks [@paoloricciuti](https://github.com/paoloricciuti)!\n- SvelteKit: Support 2.0 modules with mocks - [#25244](https://github.com/storybookjs/storybook/pull/25244), thanks [@paoloricciuti](https://github.com/paoloricciuti)!\n- UI: Embed `react-textarea-autosize` types - [#25235](https://github.com/storybookjs/storybook/pull/25235), thanks [@ndelangen](https://github.com/ndelangen)!"}}
+{"version":"8.0.0-alpha.5","info":{"plain":"- Core: Remove the `-s` flag from build & dev - [#25266](https://github.com/storybookjs/storybook/pull/25266), thanks [@ndelangen](https://github.com/ndelangen)!\n- Core: Skip no-framework error when ignorePreview=true - [#25286](https://github.com/storybookjs/storybook/pull/25286), thanks [@ndelangen](https://github.com/ndelangen)!\n- Core: Unique outputDir/cacheDir for each configDir - [#25264](https://github.com/storybookjs/storybook/pull/25264), thanks [@ndelangen](https://github.com/ndelangen)!\n- Dependencies: Semver dependency fixes - [#25283](https://github.com/storybookjs/storybook/pull/25283), thanks [@ndelangen](https://github.com/ndelangen)!\n- NextJS: Mock out `server-only` package for RSC - [#25263](https://github.com/storybookjs/storybook/pull/25263), thanks [@shilman](https://github.com/shilman)!"}}
diff --git a/docs/writing-docs/autodocs.md b/docs/writing-docs/autodocs.md
index 96c42c8ba831..4e066de59f64 100644
--- a/docs/writing-docs/autodocs.md
+++ b/docs/writing-docs/autodocs.md
@@ -286,6 +286,10 @@ Additionally, if you're developing using TypeScript, you may need to update Stor
If you're still encountering issues, we recommend reaching out to the community using the default communication channels (e.g., [GitHub discussions](https://github.com/storybookjs/storybook/discussions/new?category=help)).
+### The controls are not updating the story within the auto-generated documentation
+
+If you turned off inline rendering for your stories via the [`inline`](../api/doc-block-story.md#inline) configuration option, you would run into a situation where the associated controls are not updating the story within the documentation page. This is a known limitation of the current implementation and will be addressed in a future release.
+
#### Learn more about Storybook documentation
- Autodocs for creating documentation for your stories
diff --git a/docs/writing-docs/mdx.md b/docs/writing-docs/mdx.md
index bd31e66374a0..cfe98b9bc4a7 100644
--- a/docs/writing-docs/mdx.md
+++ b/docs/writing-docs/mdx.md
@@ -455,6 +455,10 @@ Additionally, if you're working with VSCode, you can add the [MDX extension](htt
If you're still encountering issues, we recommend reaching out to the community using the default communication channels (e.g., [GitHub discussions](https://github.com/storybookjs/storybook/discussions/new?category=help)).
+### The controls are not updating the story within the MDX documentation page
+
+If you turned off inline rendering for your stories via the [`inline`](../api/doc-block-story.md#inline) configuration option, you would run into a situation where the associated controls are not updating the story within the documentation page. This is a known limitation of the current implementation and will be addressed in a future release.
+
#### Learn more about Storybook documentation
- [Autodocs](./autodocs.md) for creating documentation for your stories