Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
311c268
Fix formatting in downgrade message for major version blocker
ndelangen Oct 16, 2025
2adce21
Addon Vitest: Support modifying mergeConfig on addon setup
yannbf Oct 17, 2025
1049588
Docs: Adjust Addon jest location
jonniebigodes Oct 17, 2025
aa5d4f6
fix
yannbf Oct 17, 2025
b6a3c4a
use git diffs on tests
yannbf Oct 17, 2025
f47e861
Merge pull request #32753 from storybookjs/yann/support-mergeconfig-v…
yannbf Oct 17, 2025
5347341
docs: hint about using "good first issue" for quick frontend contribu…
shahabhilash Oct 19, 2025
216d826
Docs: Update addon migration guide for 10.0
Sidnioulz Oct 10, 2025
c2b34da
Docs: Fix typos
Sidnioulz Oct 13, 2025
95d021b
Docs: Fix typos
Sidnioulz Oct 13, 2025
0f59035
Docs: Update addon migration guide with Kyle improvements
Sidnioulz Oct 20, 2025
6d7ff1d
Merge pull request #32714 from storybookjs/sidnioulz/addon-migration-…
vanessayuenn Oct 20, 2025
ec8becc
Update migration guide link in major version downgrade message
ndelangen Oct 20, 2025
354a48f
Merge branch 'next' into norbert/improve-downgrade-blocker-messaging
ndelangen Oct 20, 2025
b953830
use `next` version of test-runner
ndelangen Oct 20, 2025
e6129d7
Merge branch 'next' into shahabhilash-docs/add-good-first-issue-tip
jonniebigodes Oct 20, 2025
4d47a0d
Merge branch 'next' into docs_updates_to_addon_jest_location
jonniebigodes Oct 20, 2025
c24563d
Merge pull request #32755 from storybookjs/docs_updates_to_addon_jest…
jonniebigodes Oct 20, 2025
11fecb3
Merge branch 'next' into shahabhilash-docs/add-good-first-issue-tip
jonniebigodes Oct 20, 2025
dced9cb
Merge pull request #32769 from shahabhilash/shahabhilash-docs/add-goo…
jonniebigodes Oct 20, 2025
7b49365
Merge pull request #32745 from storybookjs/norbert/improve-downgrade-…
yannbf Oct 21, 2025
013435c
Merge branch 'next' into norbert/test-runner-bump
ndelangen Oct 21, 2025
8f66a21
Merge pull request #32773 from storybookjs/norbert/test-runner-bump
ndelangen Oct 21, 2025
6336aa0
When users wrap their addons using getAbsolutePath, node (sometimes?)…
ndelangen Oct 21, 2025
4611f75
Merge branch 'next' into norbert/add-manager-entrypoint-a11y
ndelangen Oct 21, 2025
cf268ca
Merge pull request #32780 from storybookjs/norbert/add-manager-entryp…
ndelangen Oct 21, 2025
7630168
Write changelog for 10.0.0-rc.0 [skip ci]
storybook-bot Oct 21, 2025
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
6 changes: 6 additions & 0 deletions CHANGELOG.prerelease.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 10.0.0-rc.0

- A11Y: Bugfix missing `manager.js` entry-file - [#32780](https://github.com/storybookjs/storybook/pull/32780), thanks @ndelangen!
- Addon Vitest: Support modifying mergeConfig on addon setup - [#32753](https://github.com/storybookjs/storybook/pull/32753), thanks @yannbf!
- CLI: Change message in downgrade-blocker - [#32745](https://github.com/storybookjs/storybook/pull/32745), thanks @ndelangen!

## 10.0.0-beta.13

- CLI: CSF factories codemod - support annotations in npx context - [#32741](https://github.com/storybookjs/storybook/pull/32741), thanks @yannbf!
Expand Down
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Contributors Guide
> Tip: If you want to make a fast contribution, check the “good first issue” label in the Issues tab for small frontend and docs tasks that are easy to fix directly on GitHub.


We welcome contributions of any type and skill level. As an open-source project, we believe in the power of community and welcome any contributions that help us improve Storybook. Whether you are a developer, designer, writer, or someone who wants to help, we'd love to have you on board. If you are interested in contributing, please read the following guidelines.

Expand Down Expand Up @@ -224,4 +226,4 @@ By executing this command, you can see which untracked or ignored files and dire

## Contributing to Storybook

For further advice on contributing, please refer to our [NEW contributing guide on the Storybook website](https://storybook.js.org/docs/contribute).
For further advice on contributing, please refer to our [NEW contributing guide on the Storybook website](https://storybook.js.org/docs/contribute).
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ For additional help, share your issue in [the repo's GitHub Discussions](https:/
| [events](https://github.com/storybookjs/addon-events) | Interactively fire events to components that respond to EventEmitter |
| [google-analytics](https://github.com/storybookjs/addon-google-analytics) | Reports google analytics on stories |
| [graphql](https://github.com/storybookjs/addon-graphql) | Query a GraphQL server within Storybook stories |
| [jest](code/addons/jest/) | View the results of components' unit tests in Storybook |
| [jest](https://github.com/storybookjs/addon-jest) | View the results of components' unit tests in Storybook |
| [links](code/addons/links/) | Create links between stories |
| [measure](code/core/src/measure/) | Visually inspect the layout and box model within the Storybook UI |
| [outline](code/core/src/outline/) | Visually debug the CSS layout and alignment within the Storybook UI |
Expand Down
1 change: 1 addition & 0 deletions code/addons/a11y/manager.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './dist/manager.js';
Loading