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-15
stories 13

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

VITEPRESS KILLS LAYOUT SHIFT WITH AUTO IMAGE SIZING

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

VitePress now automatically adds width and height attributes to local images, eliminating cumulative layout shift without a single developer keystroke.

The flagship feature shipping in VitePress [1] uses a custom markdown-it plugin powered by the image-size package to compute dimensions for local and public images before render time. This solves a real pain point: layout thrashing on image load. Remote images are skipped due to fetch complexity, a pragmatic call that keeps the solution lightweight. On the maintenance front, VitePress is also cleaning house [2] by removing an aggressive stackTraceLimit Infinity setting that was a temporary workaround for shiki twoslash and outlived its usefulness. The create-vue scaffold tool added support for nub package manager detection [3], fixing a misdetection bug where nub installations were falling back to npm instead of recognizing the Rust CLI's pnpm-compatible command grammar. Minor dependency bumps and workflow digest updates continue rolling across both repos [4], keeping the ecosystem current.

Quick answers

What shipped in Vue.js on July 15, 2026?
VitePress now automatically adds width and height attributes to local images, eliminating cumulative layout shift without a single developer keystroke. In total, 5 commits and 8 pull requests landed.
Who contributed to Vue.js on July 15, 2026?
3 developers shipped this update, including bluwy, renovate, and Colin McDonnell.
What were the notable Vue.js updates?
feat: auto-add width/height to local images to avoid layout shift, fix: remove stackTraceLimit Infinity for DEBUG (#5318), and feat: detect nub package manager (#1066).