105 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-31
stories 6

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

VitePress eagerly resolves $frontmatter expressions

By RepoJournal · Filed · About Vue.js

VitePress now resolves $frontmatter expressions during markdown rendering, making titles available to tools like local search that never run Vue.

VitePress now resolves `$frontmatter` expressions like `{{ $frontmatter.title }}` during markdown rendering, so tools that never run Vue, such as local search, see the resolved value instead of the raw expression [1]. The follow-up hardens the eager frontmatter interpolation implementation with fixes for `v-pre` handling, where any HTML block merely containing the text `v-pre` previously turned the feature off for the rest of the page [2]. The new scanner correctly tracks real `v-pre` scopes in raw HTML, for blocks and inline tags alike [2]. Additionally, VitePress replaced the deprecated `lodash.template` with eta [3], which is purely a dependency swap with no behavior change. Both the feature and its hardening landed as commits authored with Claude Fable 5 [4][5], and one description notes it adds a test for each correctness gap found in the review [2].

Quick answers

What shipped in Vue.js on August 31, 2026?
VitePress now resolves $frontmatter expressions during markdown rendering, making titles available to tools like local search that never run Vue. In total, 3 commits and 3 pull requests landed.
Who contributed to Vue.js on August 31, 2026?
2 developers shipped this update, including brc-dd and btea.
What were the notable Vue.js updates?
feat: resolve `$frontmatter` expressions while rendering markdown, fix: harden eager frontmatter interpolation, and chore: replace `lodash.template` with eta.