Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 8.4 docs #234

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions apps/frontpage/content/releases/8.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: 'Storybook 8.4 - October 2024'
---

Storybook 8.4 comes with a ton of exciting new features designed to give you the best experience developing, testing, and debugging tests in the browser!

▶️ Unified UI for component testing
5️⃣ Svelte 5 and Svelte CSF support
⚛️ React Native Storybook 8 release
🏷️ Tags-based filtering to organize your Storybook
🫧 Dependency cleanup to reduce install footprint
💯 Hundreds more improvements

Browse the [changelogs](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) for the full list of changes.

---

There are no breaking changes, but you can refer to our
[Migration guide](https://storybook.js.org/docs/migration-guide) to upgrade from
pre-8.0 of Storybook.
5 changes: 4 additions & 1 deletion apps/frontpage/scripts/raw-redirects
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,7 @@
/docs/contribute/new-snippets /docs/contribute/documentation/new-snippets 308

# 8.2
/docs/writing-tests/interaction-testing /docs/writing-tests/component-testing/ 308
/docs/writing-tests/interaction-testing /docs/writing-tests/component-testing/ 308

# 8.4
/docs/writing-tests/vitest-plugin /docs/writing-tests/test-addon/ 308
16 changes: 8 additions & 8 deletions packages/utils/src/docs-versions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ export interface DocsVersion {
**/
export const docsVersions: DocsVersion[] = [
{
label: 'Version 8.3',
id: '8.3',
label: 'Version 8.4',
id: '8.4',
branch: 'main',
},
// {
// label: 'Version 8.4 (beta)',
// id: '8.4',
// branch: 'next',
// preRelease: true,
// },
{
label: 'Version 8.5 (alpha)',
id: '8.5',
branch: 'next',
preRelease: true,
},
{
label: 'Version 7',
id: '7.6',
Expand Down