Skip to content

Release: Prerelease 10.4.0-alpha.6#34360

Merged
valentinpalkovic merged 91 commits into
next-releasefrom
version-non-patch-from-10.4.0-alpha.5
Mar 31, 2026
Merged

Release: Prerelease 10.4.0-alpha.6#34360
valentinpalkovic merged 91 commits into
next-releasefrom
version-non-patch-from-10.4.0-alpha.5

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot commented Mar 27, 2026

This is an automated pull request that bumps the version from 10.4.0-alpha.5 to 10.4.0-alpha.6.
Once this pull request is merged, it will trigger a new release of version 10.4.0-alpha.6.
If you're not a core maintainer with permissions to release you can ignore this pull request.

To do

Before merging the PR, there are a few QA steps to go through:

  • Add the "freeze" label to this PR, to ensure it doesn't get automatically forced pushed by new changes.
  • Add the "ci:daily" label to this PR, to trigger the full test suite to run on this PR.

And for each change below:

  1. Ensure the change is appropriate for the version bump. E.g. patch release should only contain patches, not new or de-stabilizing features. If a change is not appropriate, revert the PR.
  2. Ensure the PR is labeled correctly with one of: "BREAKING CHANGE", "feature request", "bug", "maintenance", "dependencies", "documentation", "build", "unknown".
  3. Ensure the PR title is correct, and follows the format "[Area]: [Summary]", e.g. "React: Fix hooks in CSF3 render functions". If it is not correct, change the title in the PR.
    • Areas include: React, Vue, Core, Docs, Controls, etc.
    • First word of summary indicates the type: “Add”, “Fix”, “Upgrade”, etc.
    • The entire title should fit on a line

This is a list of all the PRs merged and commits pushed directly to next, that will be part of this release:

  • 🔧 Maintenance: Maintenance: Use errorToErrorLike in boot-test-runner for consistent stack deduplication #34385
  • 🐛 Bug: React-Docgen: Add tsconfig fallback chain and warning for monorepos #34353
  • 🔧 Maintenance: Maintenance: Extract getBuilderOptions helper across framewo… #34260
  • ✨ Feature Request: Builder-Vite: Add onModuleGraphChange method #34323
  • 🔧 Maintenance: Vite: Use vite hook filter for performance improvements #34022
  • 🐛 Bug: React-Docgen: Try .tsx fallback when resolving .js ESM imports in docgen resolvers #34393 (will also be patched)
  • 🐛 Bug: Onboarding: Fix checklist MDX instructions #33193
  • 🔧 Maintenance: Maintenance: Add assertions outside step incorrectly nested in interactions panel #34296
  • 🐛 Bug: CSF4: Fix duplicate preview loading issue in Vitest #34361 (will also be patched)
  • 🐛 Bug: UI: Fix mobile navigation when renderLabel returns a React node #34262
  • 🐛 Bug: CLI: Prompt for init crash reports #34316 (will also be patched)
  • ✨ Feature Request: CLI: Add automigrate check for 'storybook' package name conflict #34290
  • 🏗️ Build: Maintenance: Add comprehensive test coverage for utils.ts #32907
  • 📝 Documentation: Docs: Add troubleshooting for react-docgen-typescript in monorepos #33841 (will also be patched)
  • 🏗️ Build: Build: Actually disable formatting of version json files #34363
  • 📝 Documentation: Docs: Update Node version in CI examples #34349

If you've made any changes doing the above QA (change PR titles, revert PRs), manually trigger a re-generation of this PR with this workflow and wait for it to finish. It will wipe your progress in this to do, which is expected.

Feel free to manually commit any changes necessary to this branch after you've done the last re-generation, following the Make Manual Changes section in the docs, especially if you're making changes to the changelog.

When everything above is done:


Generated changelog

10.4.0-alpha.6

  • Builder-Vite: Add onModuleGraphChange method - #34323, thanks ghengeveld!
  • CLI: Add automigrate check for 'storybook' package name conflict - #34290, thanks whdjh!
  • CLI: Prompt for init crash reports - #34316, thanks JReinhold!
  • CSF4: Fix duplicate preview loading issue in Vitest - #34361, thanks valentinpalkovic!
  • Maintenance: Add assertions outside step incorrectly nested in interactions panel - #34296, thanks majiayu000!
  • Maintenance: Extract getBuilderOptions helper across framewo… - #34260, thanks alex-js-ltd!
  • Maintenance: Use errorToErrorLike in boot-test-runner for consistent stack deduplication - #34385, thanks mixelburg!
  • Onboarding: Fix checklist MDX instructions - #33193, thanks kylegach!
  • React-Docgen: Add tsconfig fallback chain and warning for monorepos - #34353, thanks viditkbhatnagar!
  • React-Docgen: Try .tsx fallback when resolving .js ESM imports in docgen resolvers - #34393, thanks mixelburg!
  • UI: Fix mobile navigation when renderLabel returns a React node - #34262, thanks Nathan54Villaume!
  • Vite: Use vite hook filter for performance improvements - #34022, thanks huang-julien!

ar-saeedi and others added 30 commits October 31, 2025 14:10
- Add 13 test cases for groupBy and invariant functions
- Cover edge cases, type narrowing, and lazy evaluation
- Achieve 100% coverage for utils.ts utility functions

Tests include:
- groupBy: various key types, empty arrays, index handling
- invariant: lazy messages, type assertions, edge cases
Add FAQ entry explaining why inherited props (e.g. MUI ButtonProps) are
missing when importing components from workspace packages, and how to
fix it by adding workspace source files to the `include` option.
When renderLabel returns a React node instead of a string, the mobile navigation bottom bar displays [object Object] due to template literal string coercion. This checks the return type and falls back to .name when the result is not a string, matching the behavior the user expects.

Closes #34261
When a project's package.json name is 'storybook', it shadows the real
storybook package in node_modules within npm/pnpm/yarn workspaces,
causing 'Cannot find module storybook/internal/...' errors.

This adds a notification-type automigrate fix that warns users and
suggests renaming their package.

Related to #28725

Made-with: Cursor
Update .eslintrc and no-stories-of rule documentation to use
double quotes consistently across all code snippets.

Made-with: Cursor
…anel

The bug where assertions outside of a Step appeared nested inside the Step
(#19401) has been resolved by the core restructuring. Add regression tests
to guard against the issue recurring:

- Instrumenter test: verify calls after an interceptable async step have
  correct ancestors (not nested under the step)
- Panel test: verify collapsing a step does not hide subsequent waitFor
  and its children

Signed-off-by: majiayu000 <1835304752@qq.com>
- Added `buildModuleGraph` function to create a module graph from Vite's module nodes.
- Introduced `onModuleGraphChange` to allow listeners to react to changes in the module graph.
- Created comprehensive tests for module graph behavior in `index.test.ts`.
- Updated type definitions to include `ModuleGraph` and `ModuleNode` for better type safety.
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.4.0-alpha.5 branch from 12819a3 to b345274 Compare March 30, 2026 09:53
Builder-Vite: Add onModuleGraphChange method
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.4.0-alpha.5 branch from b345274 to 2fd0577 Compare March 30, 2026 10:31
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.4.0-alpha.5 branch from 2fd0577 to c75f5eb Compare March 30, 2026 14:56
…warning-24585

React-Docgen: Add tsconfig fallback chain and warning for monorepos
Test: Add comprehensive test coverage for utils.ts
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.4.0-alpha.5 branch from c75f5eb to 1f2f505 Compare March 31, 2026 10:03
valentinpalkovic and others added 2 commits March 31, 2026 14:39
…lization

Maintenance: Use errorToErrorLike in boot-test-runner for consistent stack deduplication
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.4.0-alpha.5 branch from 1f2f505 to 29f3272 Compare March 31, 2026 12:42
@valentinpalkovic valentinpalkovic added ci:daily Run the CI jobs that normally run in the daily job. freeze Freeze the Release PR with this label labels Mar 31, 2026
@valentinpalkovic valentinpalkovic merged commit ccffddb into next-release Mar 31, 2026
294 of 298 checks passed
@valentinpalkovic valentinpalkovic deleted the version-non-patch-from-10.4.0-alpha.5 branch March 31, 2026 13:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ci:daily Run the CI jobs that normally run in the daily job. freeze Freeze the Release PR with this label release For PRs that trigger new releases. Automated

Projects

None yet

Development

Successfully merging this pull request may close these issues.