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-16
stories 37

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

COMPILER FIXES PLUG MEMORY LEAKS IN SLOT RENDERING

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

Vue core shipped back-to-back fixes for two critical memory leaks in slot handling that could silently corrupt component state and leak rendering buffers on errors.

Two separate memory leaks landed in the compiler and runtime this cycle. The first [1] separates compiler-injected slot branch keys from user-facing scoped slot props, fixing a bug where conditional slot outlets would corrupt passed arrays by merging internal metadata into the rendered props object. The second [2] unwinds dangling block state when slot content throws during rendering, preventing stale rendering data from being retained after exceptions. Both are edge cases that ship silently in production until they accumulate. A third fix [3] removes a package dependency cycle in the server renderer that could cause build issues in certain module resolution orders. On the maintenance front, conventional-changelog bumped to v8 [4], bringing breaking changes worth reviewing in your changelog generation pipeline. Lock file maintenance across create-vue [5] keeps the scaffolder current.

Quick answers

What shipped in Vue.js on July 16, 2026?
Vue core shipped back-to-back fixes for two critical memory leaks in slot handling that could silently corrupt component state and leak rendering buffers on errors. In total, 15 commits, 21 pull requests, and 1 releases landed.
Who contributed to Vue.js on July 16, 2026?
5 developers shipped this update, including DaZuiZui, cernymatej, Haoqun Jiang, renovate, and Divyansh Singh.
What were the notable Vue.js updates?
fix(compiler-core): avoid leaking slot branch keys, fix(runtime-core): unwind dangling blocks when slot content throws, and fix(server-renderer): remove package dependency cycle (#15063).