Skip to content

Comments

Release: Prerelease 10.3.0-alpha.8#33873

Open
github-actions[bot] wants to merge 113 commits intonext-releasefrom
version-non-patch-from-10.3.0-alpha.7
Open

Release: Prerelease 10.3.0-alpha.8#33873
github-actions[bot] wants to merge 113 commits intonext-releasefrom
version-non-patch-from-10.3.0-alpha.7

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Feb 19, 2026

This is an automated pull request that bumps the version from 10.3.0-alpha.7 to 10.3.0-alpha.8.
Once this pull request is merged, it will trigger a new release of version 10.3.0-alpha.8.
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:

  • 🐛 Bug: Next.js-Vite: Fix failing postcss mutation #33879
  • 🐛 Bug: React: Fix manifest stories empty when meta has no explicit title #33878 (will also be patched)
  • 🔧 Maintenance: Core: Revert Pull Request UI: Fix Copy button overlapping code in portrait mode #33420 from Maelryn/fix/copy-button-overlap #33877
  • ✨ Feature Request: Addon-Vitest: Add channel API to programmatically trigger test runs #33206
  • 🐛 Bug: A11y: Ensure popover dialogs have an ARIA label #33500
  • 🔧 Maintenance: Builder-Vite: Centralize Vite plugins for builder-vite and addon-vitest #33819
  • 🐛 Bug: UI: Fix Copy button overlapping code in portrait mode #33420
  • 🏗️ Build: Build: Fix missing traces in E2E step #33872
  • 🏗️ Build: CI: Gate nx workflow to main repo to prevent fork runs #33871

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.3.0-alpha.8

  • A11y: Ensure popover dialogs have an ARIA label - #33500, thanks gayanMatch!
  • Addon-Vitest: Add channel API to programmatically trigger test runs - #33206, thanks JReinhold!
  • Builder-Vite: Centralize Vite plugins for builder-vite and addon-vitest - #33819, thanks valentinpalkovic!
  • Core: Revert Pull Request UI: Fix Copy button overlapping code in portrait mode #33420 from Maelryn/fix/copy-button-overlap - #33877, thanks Sidnioulz!
  • Next.js-Vite: Fix failing postcss mutation - #33879, thanks valentinpalkovic!
  • React: Fix manifest stories empty when meta has no explicit title - #33878, thanks kasperpeulen!
  • UI: Fix Copy button overlapping code in portrait mode - #33420, thanks Maelryn!

JReinhold and others added 30 commits August 28, 2025 19:40
Fixes #23642

Increased paddingRight in syntaxhighlighter.tsx to 85px.
This prevents the code text from running under the absolute positioned "Copy" button when viewing in mobile/portrait modes.
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.3.0-alpha.7 branch from 8295192 to 0d39ab3 Compare February 19, 2026 15:15
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.3.0-alpha.7 branch from 0d39ab3 to 8ada012 Compare February 19, 2026 15:39
…s-have-a-dialog-role-and-an-aria-label

A11y: Ensure popover dialogs have an ARIA label
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.3.0-alpha.7 branch from 8ada012 to 5fca817 Compare February 19, 2026 15:56
JReinhold and others added 3 commits February 19, 2026 20:09
…cy between: ws token -> server channel -> loading all presets -> core preset creates ws token -> ...

Co-authored-by: Norbert de Langen <norbert@chromatic.com>
…-api

Addon-Vitest: Add channel API to programmatically trigger test runs
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.3.0-alpha.7 branch from 5fca817 to 178c665 Compare February 19, 2026 20:08
@JReinhold JReinhold added ci:daily Run the CI jobs that normally run in the daily job. freeze Freeze the Release PR with this label labels Feb 19, 2026
@JReinhold JReinhold self-assigned this Feb 19, 2026
@storybook-app-bot
Copy link

storybook-app-bot bot commented Feb 19, 2026

Package Benchmarks

Commit: 77a63dd, ran on 20 February 2026 at 11:54:31 UTC

The following packages have significant changes to their size or dependencies:

@storybook/addon-vitest

Before After Difference
Dependency count 2 2 0
Self size 391 KB 402 KB 🚨 +11 KB 🚨
Dependency size 338 KB 338 KB 0 B
Bundle Size Analyzer Link Link

@JReinhold JReinhold removed freeze Freeze the Release PR with this label ci:daily Run the CI jobs that normally run in the daily job. labels Feb 20, 2026
@JReinhold JReinhold removed their assignment Feb 20, 2026
Sidnioulz and others added 4 commits February 20, 2026 10:26
When a story file has no explicit `title` in its meta (the common case),
the CSF parser received 'No title' as fallback, producing wrong story IDs
(e.g. `no-title--logged-in` instead of `header--logged-in`). These IDs
didn't match the index entries, so `extractStories` filtered them all out,
resulting in empty `stories: []` in the manifest.

Use `entry.title` from the story index as fallback instead.
…on-overflow-pr

Core: Revert Pull Request #33420 from Maelryn/fix/copy-button-overlap
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.3.0-alpha.7 branch from 178c665 to 995a9d2 Compare February 20, 2026 10:11
…s-no-title

React: Fix manifest stories empty when meta has no explicit title
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.3.0-alpha.7 branch from 995a9d2 to dddc624 Compare February 20, 2026 10:52
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.3.0-alpha.7 branch from dddc624 to 77a63dd Compare February 20, 2026 11:05
@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 Feb 20, 2026
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.

8 participants