Skip to content

Release: Prerelease 10.5.0-alpha.10#35302

Open
github-actions[bot] wants to merge 60 commits into
next-releasefrom
version-non-patch-from-10.5.0-alpha.9
Open

Release: Prerelease 10.5.0-alpha.10#35302
github-actions[bot] wants to merge 60 commits into
next-releasefrom
version-non-patch-from-10.5.0-alpha.9

Conversation

@github-actions

@github-actions github-actions Bot commented Jun 26, 2026

Copy link
Copy Markdown
Contributor

This is an automated pull request that bumps the version from `10.5.0-alpha.9` to `10.5.0-alpha.10`.
Once this pull request is merged, it will trigger a new release of version `10.5.0-alpha.10`.
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: Call link onClick before preventing default #35311
  • ✨ Feature Request: Review: Notify on review arrival instead of auto-navigating #35276
  • 🐛 Bug: A11y: Surface required args and keyboard-reachable Setup controls in ArgsTable #35306
  • ✨ Feature Request: UI: Hide onboarding menu with feature flag #35299
  • 🐛 Bug: Addon-Vitest: Subscribe for run completion before triggering it #35291
  • 🐛 Bug: Vue: Fix Unicode Default Values In Docs #34909
  • 🏗️ Build: VSCode: Do not reference removed config files #35319
  • 📝 Documentation: Docs: Clarify TanStack Query client tradeoffs #35314
  • 📝 Documentation: Docs: Document parameters.jsx.sortProps for preserving prop order in snippets #35191

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.5.0-alpha.10

  • A11y: Surface required args and keyboard-reachable Setup controls in ArgsTable - #35306, thanks Sidnioulz!
  • Addon-Vitest: Subscribe for run completion before triggering it - #35291, thanks tsushanth!
  • Next: Call link onClick before preventing default - #35311, thanks yatishgoel!
  • Review: Notify on review arrival instead of auto-navigating - #35276, thanks ghengeveld!
  • UI: Hide onboarding menu with feature flag - #35299, thanks Sidnioulz!
  • Vue: Fix Unicode Default Values In Docs - #34909, thanks Arunsiva003!

yatishgoel and others added 30 commits June 17, 2026 10:36
…snippets

Closes #23208

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Avoid re-collapsing chrome and re-applying filters on in-review navigation.
Centralize unseen/visited/notified tracking, auto-accept on review routes,
and notification slot deduplication in sessionStorage.
Track deferred review payloads internally and expose a notificationKey
so notification effects re-run when displayed or pending reviews change.
Defer superseding review updates, sync notification state to the store,
and clear arrival notifications on dismiss or pending accept.
Surface new reviews via the manager notification API instead of
auto-navigating away from the user's current canvas.
Replace auto-navigation on review push with the notification layer.
…pdates

Use the shared review store for the widget title and navigate via the
canonical review summary entry helper.
Reset the review store between stories, stabilize createdAt fixtures,
align assertions with Update navigation and router-based widget opens,
and wait for notification effects before asserting on mocks.
The story mocked addNotification without rendering NotificationList, so the
canvas showed no notification despite the play test passing. Use a harness
that mirrors sidebar notification state and assert the visible headline.
Thumbnail previews on the review summary emitted STORY_SPECIFIED, which the
manager treated as canvas navigation and replaced the URL. Treat review routes
as non-canvas and keep review viewMode in the main layout so the summary stays
mounted.
@github-actions

github-actions Bot commented Jun 26, 2026

Copy link
Copy Markdown
Contributor Author
Fails
🚫 This release PR still has unchecked tasks in its description. The release manager must complete all checklist items before merging.
🚫 Release PRs targeting latest-release or next-release must include the "ci:daily" label.

Generated by 🚫 dangerJS against 02247f0

yatishgoel and others added 3 commits June 27, 2026 12:10
- Added new test cases to verify onClick behavior with default prevention.
- Refactored handleClick to ensure onClick is called before navigation.
- Introduced utility functions for creating click events and retrieving onClick handlers.
…efore-trigger

Addon-Vitest: Subscribe for run completion before triggering it
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.5.0-alpha.9 branch from af63ab9 to 8ac9670 Compare June 29, 2026 08:45
…-query-docs

Docs: Clarify TanStack Query client tradeoffs
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.5.0-alpha.9 branch from 8ac9670 to ae2f045 Compare June 29, 2026 08:55
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.5.0-alpha.9 branch from ae2f045 to f9020e8 Compare June 29, 2026 10:53
ghengeveld and others added 2 commits June 29, 2026 14:18
…ed-hovered

A11y: Surface required args and keyboard-reachable Setup controls in ArgsTable
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.5.0-alpha.9 branch from f9020e8 to a8483ff Compare June 29, 2026 12:27
ghengeveld and others added 5 commits June 29, 2026 15:06
The merge from next dropped hasActiveFilters from story-index-filters but
left the import in stories.ts, breaking core:compile:production.
- Updated loaders to log actions for next/link.
- Added new test suite for next/link to verify link action logging on click.
- Introduced a new story for Link component to trigger link action.
…pdate.

Record the notified slot when a review is accepted and read pending state from the store at click time so layout-effect sync cannot re-post the sidebar toast.
Deferred superseding pushes on review routes already surface the Update banner, so suppress the sidebar notification and sync pending state to the store immediately.
Review: Notify on review arrival instead of auto-navigating
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.5.0-alpha.9 branch from a8483ff to 69ae851 Compare June 29, 2026 14:33
@storybook-bot storybook-bot force-pushed the version-non-patch-from-10.5.0-alpha.9 branch from 69ae851 to 02247f0 Compare June 29, 2026 17:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

release For PRs that trigger new releases. Automated

Projects

None yet

Development

Successfully merging this pull request may close these issues.

7 participants