117 wires and counting

$ follow Vue.js

Keep up with Vue.js in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-10
stories 2

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Vue compiler-sfc restores await scope, test-utils moves to Vitest v5

By RepoJournal · Filed · About Vue.js · Composed from the cited sources · methodology

Vue's compiler-sfc no longer loses await scope when compiling out of nested blocks, and vuejs/test-utils has picked up Vitest 5.

vuejs/core landed a compiler-sfc fix that restores await scope when leaving nested blocks [1]. Previously, compiled output could drop the await context on the way out of a nested block; it now carries that scope back with it, which matters for SFCs that use top-level await inside conditionals and loops.

On the tooling side, vuejs/test-utils moved its coverage dependency from @vitest/coverage-v8 4.1.11 to 5.0.0 via Renovate [2]. This is a major-version bump of the coverage provider in the project's dev dependencies, so anyone consuming @vue/test-utils source or mirroring its test setup should expect the usual Vitest 5 breaking-change surface rather than treating it as a routine patch.

Quick answers

What shipped in Vue.js on September 10, 2026?
Vue's compiler-sfc no longer loses await scope when compiling out of nested blocks, and vuejs/test-utils has picked up Vitest 5. In total, 1 commits and 1 pull requests landed.
Who contributed to Vue.js on September 10, 2026?
2 developers shipped this update, including daiwei and renovate.
What were the notable Vue.js updates?
fix(compiler-sfc): restore await scope when leaving nested blocks and chore(deps): update vitest to v5.