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-08-05
stories 39

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Vue Core Fixes Template Caching Regression, Slot Props Nullish Handling

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

Three critical compiler fixes landed in vuejs/core overnight, closing gaps in SSR template analysis, teleport transitions, and slot v-bind edge cases.

The compiler-sfc template usage cache was evicting and recomputing results incorrectly after transformation, causing SSR passes to miss v-model identifiers and template-only imports [1]. In parallel, transitions to teleport component children now apply correctly instead of breaking on render [2]. A third fix handles the nullish case for slot v-bind expressions, which was throwing TypeError even though null is accepted everywhere else in Vue's prop merging logic [3]. Dependencies ticked forward across both repos: eslint bumped to 10.8.0 [4], @swc/core to 1.15.47 [5], and jsdom to 30.0.1 in test-utils [6]. All three compiler fixes address real production edge cases that hit developers building with SSR, dynamic components, or passing conditional slot props.

Quick answers

What shipped in Vue.js on August 5, 2026?
Three critical compiler fixes landed in vuejs/core overnight, closing gaps in SSR template analysis, teleport transitions, and slot v-bind edge cases. In total, 15 commits and 24 pull requests landed.
Who contributed to Vue.js on August 5, 2026?
4 developers shipped this update, including edison1105, yangxiuxiu1115, viazovskyi585, and renovate.
What were the notable Vue.js updates?
fix(compiler-sfc): handle transformed template AST after cache invalidation, fix(transition): support transition to teleport component child, and fix(slots): handle nullish v-bind slot props.