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-07-14
stories 7

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

VITEPRESS REWIRES URL HANDLING FOR CONSISTENCY ACROSS SSR

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

The route is now the single source of truth for hash state, eliminating a parallel tracking system that behaved differently on server and client.

VitePress shipped a breaking refactor [1] that consolidates URL hash management into the route object itself, replacing the standalone `useData().hash` ref that maintained its own listener. This fixes a subtle SSR inconsistency where the current URL wasn't observed uniformly across server and client renders. The `isActive()` function now takes hash as an argument instead of reading `location.hash` at call time, making it pure and safe for server-side use. Alongside this, language switching now preserves query parameters [2], so filter state and search queries persist when users change locale. Image path normalization was tightened [3] to keep relative paths cleaner, and the `enhanceApp` hook gained expanded documentation [4] showing more integration patterns for app-level customization.

Quick answers

What shipped in Vue.js on July 14, 2026?
The route is now the single source of truth for hash state, eliminating a parallel tracking system that behaved differently on server and client. In total, 4 commits and 3 pull requests landed.
Who contributed to Vue.js on July 14, 2026?
2 developers shipped this update, including Divyansh Singh and bluwy.
What were the notable Vue.js updates?
refactor!: make the route the single source of truth for the URL hash, fix(theme): preserve url params when switching languages (#5312), and refactor: improve relative image path normalization.