Skip to content

Commit 469bc63

Browse files
authored
Merge branch 'next' into sidnioulz/issue-14442-showAddonPanel
2 parents 8866976 + e3b728d commit 469bc63

File tree

112 files changed

+1623
-747
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+1623
-747
lines changed

.github/workflows/publish.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,17 @@ jobs:
189189
git commit -m "Update $VERSION_FILE for v${{ steps.version.outputs.current-version }}"
190190
git push origin main
191191
192+
- name: Create Sentry release
193+
if: steps.publish-needed.outputs.published == 'false'
194+
uses: sentry/action-release@v2
195+
env:
196+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
197+
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
198+
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
199+
with:
200+
release: ${{ steps.version.outputs.current-version }}
201+
environment: ${{ steps.is-prerelease.outputs.prerelease == 'true' && 'prerelease' || 'latest' }}
202+
192203
- name: Report job failure to Discord
193204
if: failure()
194205
env:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 9.1.4
2+
3+
- Angular: Properly merge builder options and browserTarget options - [#32272](https://github.com/storybookjs/storybook/pull/32272), thanks @kroeder!
4+
- Core: Optimize bundlesize, by reusing internal/babel in mocking-utils - [#32350](https://github.com/storybookjs/storybook/pull/32350), thanks @ndelangen!
5+
- Svelte & Vue: Add framework-specific `docgen` option to disable docgen processing - [#32319](https://github.com/storybookjs/storybook/pull/32319), thanks @copilot-swe-agent!
6+
- Svelte: Support `@sveltejs/vite-plugin-svelte` v6 - [#32320](https://github.com/storybookjs/storybook/pull/32320), thanks @JReinhold!
7+
18
## 9.1.3
29

310
- Docs: Move button in ArgsTable heading to fix screenreader announcements - [#32238](https://github.com/storybookjs/storybook/pull/32238), thanks @Sidnioulz!

CHANGELOG.prerelease.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 10.0.0-beta.2
2+
3+
- Build: Fix dts bundling external detection - [#32366](https://github.com/storybookjs/storybook/pull/32366), thanks @mrginglymus!
4+
- Codemod: Replace `globby` with `tinyglobby` - [#31407](https://github.com/storybookjs/storybook/pull/31407), thanks @benmccann!
5+
- Next.js-vite: Use `fileURLToPath` for module resolution in preset - [#32386](https://github.com/storybookjs/storybook/pull/32386), thanks @ndelangen!
6+
- Tags: Remove undocumented x-only tags - [#32360](https://github.com/storybookjs/storybook/pull/32360), thanks @shilman!
7+
- Vitest addon: Handle Playwright installation errors gracefully - [#32329](https://github.com/storybookjs/storybook/pull/32329), thanks @ndelangen!
8+
9+
## 10.0.0-beta.1
10+
11+
- AddonA11Y: Fix postinstall - [#32309](https://github.com/storybookjs/storybook/pull/32309), thanks @ndelangen!
12+
- Angular: Properly merge builder options and browserTarget options - [#32272](https://github.com/storybookjs/storybook/pull/32272), thanks @kroeder!
13+
- Core: Optimize bundlesize, by reusing internal/babel in mocking-utils - [#32350](https://github.com/storybookjs/storybook/pull/32350), thanks @ndelangen!
14+
- Core: Update tags filter UI - [#32343](https://github.com/storybookjs/storybook/pull/32343), thanks @ghengeveld!
15+
- Next.js: Avoid multiple webpack versions at runtime - [#32313](https://github.com/storybookjs/storybook/pull/32313), thanks @valentinpalkovic!
16+
- Next.js: Fix version mismatch error in Webpack - [#32306](https://github.com/storybookjs/storybook/pull/32306), thanks @valentinpalkovic!
17+
- Svelte & Vue: Add framework-specific `docgen` option to disable docgen processing - [#32319](https://github.com/storybookjs/storybook/pull/32319), thanks @copilot-swe-agent!
18+
- Svelte: Support `@sveltejs/vite-plugin-svelte` v6 - [#32320](https://github.com/storybookjs/storybook/pull/32320), thanks @JReinhold!
19+
- Update: Satellite repos after major version bump - [#32303](https://github.com/storybookjs/storybook/pull/32303), thanks @ndelangen!
20+
121
## 10.0.0-beta.0
222

323
- Core: Fix staticCopy not copying `index.html` to sub directory - [#32259](https://github.com/storybookjs/storybook/pull/32259), thanks @ndelangen!

MIGRATION.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- [Node.js 20.19+ or 22.12+ required](#nodejs-2019-or-2212-required)
88
- [Require `tsconfig.json` `moduleResolution` set to value that supports `types` condition](#require-tsconfigjson-moduleresolution-set-to-value-that-supports-types-condition)
99
- [`core.builder` configuration must be a fully resolved path](#corebuilder-configuration-must-be-a-fully-resolved-path)
10+
- [Removed x-only builtin tags](#removed-x-only-builtin-tags)
1011
- [From version 8.x to 9.0.0](#from-version-8x-to-900)
1112
- [Core Changes and Removals](#core-changes-and-removals)
1213
- [Dropped support for legacy packages](#dropped-support-for-legacy-packages)
@@ -580,6 +581,10 @@ export const core = {
580581
};
581582
```
582583

584+
#### Removed x-only builtin tags
585+
During development of Storybook [Tags](https://storybook.js.org/docs/writing-stories/tags), we created `dev-only`, `docs-only`, and `test-only` built-in tags. These tags were never documented and superseded by the currently-documented `dev`, `autodocs`, and `test` tags which provide more precise control. The outdated `x-only` tags are removed in 10.0.
586+
During development of Storybook [Tags](https://storybook.js.org/docs/writing-stories/tags), we created `dev-only`, `docs-only`, and `test-only` built-in tags. These tags were never documented and superceded by the currently-documented `dev`, `autodocs`, and `test` tags which provide more precise control. The outdated `x-only` tags are removed in 10.0.
587+
583588
## From version 8.x to 9.0.0
584589

585590
### Core Changes and Removals
@@ -1806,7 +1811,7 @@ These sections explain the rationale, and the required changes you might have to
18061811

18071812
### Deprecated `@storybook/testing-library` package
18081813

1809-
The `@storybook/testing-library` package has been deprecated with the release of Storybook 8.0, and we recommend using the `@storybook/test` package instead. If you're migrating manually, you'll need to install the new package and update your imports as follows:
1814+
The `@storybook/testing-library` package has been deprecated with the release of Storybook 8.0, and we recommend using the `@storybook/test` package instead. If you're migrating manually, you'll need to install the new package and update your imports as follows:
18101815

18111816
```diff
18121817
- import { userEvent } from '@storybook/testing-library';

code/.storybook/preview.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable depend/ban-dependencies */
21
import React, { type FC, Fragment, useEffect } from 'react';
32

43
import type { Channel } from 'storybook/internal/channels';
@@ -38,10 +37,12 @@ import { isChromatic } from './isChromatic';
3837
sb.mock('../core/template/stories/test/ModuleMocking.utils.ts');
3938
sb.mock('../core/template/stories/test/ModuleSpyMocking.utils.ts', { spy: true });
4039
sb.mock('../core/template/stories/test/ModuleAutoMocking.utils.ts');
40+
/* eslint-disable depend/ban-dependencies */
4141
sb.mock(import('lodash-es'));
4242
sb.mock(import('lodash-es/add'));
4343
sb.mock(import('lodash-es/sum'));
4444
sb.mock(import('uuid'));
45+
/* eslint-enable depend/ban-dependencies */
4546

4647
const { document } = global;
4748
globalThis.CONFIG_TYPE = 'DEVELOPMENT';

code/addons/a11y/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-a11y",
3-
"version": "10.0.0-beta.0",
3+
"version": "10.0.0-beta.2",
44
"description": "Storybook Addon A11y: Test UI component compliance with WCAG web accessibility standards",
55
"keywords": [
66
"a11y",

code/addons/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-docs",
3-
"version": "10.0.0-beta.0",
3+
"version": "10.0.0-beta.2",
44
"description": "Storybook Docs: Document UI components automatically with stories and MDX",
55
"keywords": [
66
"docs",

code/addons/jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-jest",
3-
"version": "10.0.0-beta.0",
3+
"version": "10.0.0-beta.2",
44
"description": "Storybook Jest addon: Show Jest report in Storybook's addon panel",
55
"keywords": [
66
"jest",

code/addons/links/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-links",
3-
"version": "10.0.0-beta.0",
3+
"version": "10.0.0-beta.2",
44
"description": "Storybook Links: Link stories together to build demos and prototypes with your UI components",
55
"keywords": [
66
"storybook",

code/addons/onboarding/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-onboarding",
3-
"version": "10.0.0-beta.0",
3+
"version": "10.0.0-beta.2",
44
"description": "Storybook Onboarding: Help new users learn how to write stories",
55
"keywords": [
66
"storybook",

0 commit comments

Comments
 (0)