Skip to content

Release: Prerelease 10.6.0-alpha.9 - #36039

Merged
ndelangen merged 52 commits into
next-releasefrom
version-non-patch-from-10.6.0-alpha.8
Aug 26, 2026
Merged

Release: Prerelease 10.6.0-alpha.9#36039
ndelangen merged 52 commits into
next-releasefrom
version-non-patch-from-10.6.0-alpha.8

Conversation

@github-actions

@github-actions github-actions Bot commented Aug 25, 2026

Copy link
Copy Markdown
Contributor

This is an automated pull request that bumps the version from `10.6.0-alpha.8` to `10.6.0-alpha.9`.
Once this pull request is merged, it will trigger a new release of version `10.6.0-alpha.9`.
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: Vue: Rearchitecture Story snippet generation #36044
  • 🐛 Bug: Angular: Decide the migration's zone.js import from the dependency tree #36008
  • 🔧 Maintenance: Vue: Raise the vue-component-meta floor to ^3.3.9 #36040
  • 🐛 Bug: Core: Keep Tabs memo out of an esbuild joined var #36038
  • 🔧 Maintenance: CLI: Render the same toolset output as MCP #36029
  • ✨ Feature Request: Core: Allow token-only WebSocket upgrade without Origin #35980
  • 🏗️ Build: Vue: Fix setup statement slicing on Windows #36049
  • 🏗️ Build: Evals: Clean up and restructure #35703

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.6.0-alpha.9

  • Angular: Decide the migration's zone.js import from the dependency tree - #36008, thanks valentinpalkovic!
  • CLI: Render the same toolset output as MCP - #36029, thanks kasperpeulen!
  • Core: Allow token-only WebSocket upgrade without Origin - #35980, thanks JReinhold!
  • Core: Keep Tabs memo out of an esbuild joined var - #36038, thanks ndelangen!
  • Vue: Raise the vue-component-meta floor to ^3.3.9 - #36040, thanks seanogdev!
  • Vue: Rearchitecture Story snippet generation - #36044, thanks huang-julien!

ghengeveld and others added 27 commits August 2, 2026 00:06
… when launch/preview helpers are used out of context
Archive ports that only restate 801/802/804/803/810, plus duplicate prompt
shapes. Keep async mocks, story drift, tool-param, preview, and vitest-CLI
coverage on the latest matrix.
Token-only and other token failures now respond with 401 Unauthorized.
Invalid Origin still returns 403 Forbidden. Tests spy on handleUpgrade
instead of replacing the method.
destroy() can drop a still-queued 401/403 write, so rejected upgrades
now end() the socket after the status line. Real TCP tests cover both
statuses.
The angular-vite framework and the angular-to-angular-vite migration both
read a Storybook builder target's `zoneless` option, and they disagreed
about what its absence means. `resolveZoneless` reads an absent option as
zoneless; the migration read the same absence as zone-based and wrote a
static `import 'zone.js'` into preview.ts.

A target that declares nothing is the common case, and it is exactly what
the migration itself writes, so a freshly migrated project landed on the
one disagreeing row by construction: the framework excluded zone.js from
`optimizeDeps` while the preview imported it anyway. With no `zone.js`
dependency that import cannot resolve and every story fails; with one, the
app runs zoneless and logs NG0914 on every load.

The dependency tree is the signal that survives an option nobody wrote, so
the migration now writes the import when the project declares `zone.js`,
and warns instead of writing when a target says `zoneless: false` in a
project that has no `zone.js` to import. The framework's `?? true` stays as
it is - removing the migration's competing default is what makes the two
agree.
Each transport starts a heartbeat interval that only clears when the
WebSocketServer closes. Tests now call close() so those timers do not leak.
close() is now idempotent and removes the process SIGTERM handler it
registered, so tests and repeated construction do not leak listeners.
…ccess

The TypeScript 7 package check reports TS2341 on transport.socket. Route those spies through a double assertion so the tests still cover upgrade handling.
Keep this PR's eval restructure and 9xx deletions. Apply next's renamed
workflow tools (docs-show, review-create, stories-preview, test-run).
esbuild minifySyntax was emitting `var TabErrorBoundary = class extends ..., Tabs = memo(...)`. Webpack innerGraph drops the memo binding from that shape, so production Next.js webpack docs throw `memo is not defined`.
…de-token-only-900b

Core: Allow token-only WebSocket upgrade without Origin
@github-actions github-actions Bot added the release For PRs that trigger new releases. Automated label Aug 25, 2026
ndelangen and others added 2 commits August 25, 2026 12:04
Typed function params reject the old selected/id null defaults, which also left an unused ts-expect-error.
Make setup requests authorize required upgrades and direct documentation lookups through Storybook before source inspection.
…raph-tabs-memo

Core: Keep Tabs memo out of an esbuild joined var
@storybook-bot
storybook-bot force-pushed the version-non-patch-from-10.6.0-alpha.8 branch from ffa7aa3 to 5874371 Compare August 25, 2026 12:39
@storybook-bot
storybook-bot force-pushed the version-non-patch-from-10.6.0-alpha.8 branch from 5874371 to cf24e90 Compare August 25, 2026 18:34
@storybook-bot
storybook-bot force-pushed the version-non-patch-from-10.6.0-alpha.8 branch from cf24e90 to 89b89be Compare August 26, 2026 08:32
Vue: Rearchitecture Story snippet generation
@storybook-bot
storybook-bot force-pushed the version-non-patch-from-10.6.0-alpha.8 branch from 89b89be to 0749196 Compare August 26, 2026 08:47
@ndelangen ndelangen self-assigned this Aug 26, 2026
@ndelangen ndelangen added ci:daily Run the CI jobs that normally run in the daily job. freeze Freeze the Release PR with this label labels Aug 26, 2026
@storybook-app-bot

storybook-app-bot Bot commented Aug 26, 2026

Copy link
Copy Markdown
Contributor

Package Benchmarks

Commit: 1bcdcd5, ran on 26 August 2026 at 10:47:37 UTC

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

@storybook/vue3-vite

Before After Difference
Dependency count 94 94 0
Self size 32 KB 32 KB 🎉 -24 B 🎉
Dependency size 18.50 MB 18.52 MB 🚨 +21 KB 🚨
Bundle Size Analyzer Link Link

@storybook/vue3

Before After Difference
Dependency count 90 90 0
Self size 161 KB 181 KB 🚨 +21 KB 🚨
Dependency size 18.10 MB 18.10 MB 0 B
Bundle Size Analyzer Link Link

@ndelangen ndelangen removed the freeze Freeze the Release PR with this label label Aug 26, 2026
@storybook-bot
storybook-bot force-pushed the version-non-patch-from-10.6.0-alpha.8 branch from 0749196 to 1bcdcd5 Compare August 26, 2026 10:32
@ndelangen ndelangen added the freeze Freeze the Release PR with this label label Aug 26, 2026
@ndelangen
ndelangen merged commit f198ba5 into next-release Aug 26, 2026
300 of 301 checks passed
@ndelangen
ndelangen deleted the version-non-patch-from-10.6.0-alpha.8 branch August 26, 2026 11:13
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.

9 participants