|
7 | 7 | - [Node.js 20.19+ or 22.12+ required](#nodejs-2019-or-2212-required)
|
8 | 8 | - [Require `tsconfig.json` `moduleResolution` set to value that supports `types` condition](#require-tsconfigjson-moduleresolution-set-to-value-that-supports-types-condition)
|
9 | 9 | - [`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) |
10 | 11 | - [From version 8.x to 9.0.0](#from-version-8x-to-900)
|
11 | 12 | - [Core Changes and Removals](#core-changes-and-removals)
|
12 | 13 | - [Dropped support for legacy packages](#dropped-support-for-legacy-packages)
|
@@ -580,6 +581,10 @@ export const core = {
|
580 | 581 | };
|
581 | 582 | ```
|
582 | 583 |
|
| 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 | + |
583 | 588 | ## From version 8.x to 9.0.0
|
584 | 589 |
|
585 | 590 | ### Core Changes and Removals
|
@@ -1806,7 +1811,7 @@ These sections explain the rationale, and the required changes you might have to
|
1806 | 1811 |
|
1807 | 1812 | ### Deprecated `@storybook/testing-library` package
|
1808 | 1813 |
|
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: |
1810 | 1815 |
|
1811 | 1816 | ```diff
|
1812 | 1817 | - import { userEvent } from '@storybook/testing-library';
|
|
0 commit comments