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-09-17
stories 24

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

looseEqual handles cycles, v-once children unmount correctly

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

Two Vue core bug fixes close out stack overflows and leaked v-once children, alongside a security bump to vitest 4.1.11 and grouped dependency updates.

fix(shared): handle circular references in looseEqual vuejs/core

by ondrhn

Since the Map and Set recursion landed in looseEqual, a <select v-model> whose option values are Sets of mutually referencing objects threw "RangeError: Maximum call stack size exceeded" during mount. looseEqual now threads a stack of object pairs through the recursion and treats a revisited pair as equal, so cyclic structures no longer recurse forever.

fix(runtime-core): unmount v-once children after parent rerenders vuejs/core

by onmax

Unmounting a parent after it rerendered could skip a component nested inside v-once; the fix preserves the block's hasOnce marker across updates and the cache index when cloning vnodes. Teardown now clears only the current component's cache, so removing one slot instance cannot invalidate another, which is the failure reported in nuxt/nuxt#32154.

chore(deps): update dependency vitest to v4.1.11 [security] vuejs/core

by renovate

Renovate's flagged security update moves vitest from 4.1.10 to 4.1.11 in the test toolchain. It affects the repo's own test runs, not the published Vue packages, but worth taking on your next dependency sync if you mirror the core setup.

chore(deps): update pnpm to v12 vuejs/core

by renovate

The package manager pinned for the repo jumps from pnpm 11.19.0 to 12.4.2, the largest of three dependency PRs open against core. Contributor checkouts and CI both ride on the same lockstep bump.

chore(deps): update all non-major dependencies vuejs/core

by renovate

The routine non-major sweep rounds out the queue, touching @types/node and friends; nothing there changes runtime behavior for consumers of the published packages.

Quick answers

What shipped in Vue.js on September 17, 2026?
Two Vue core bug fixes close out stack overflows and leaked v-once children, alongside a security bump to vitest 4.1.11 and grouped dependency updates. In total, 7 commits and 17 pull requests landed.
Who contributed to Vue.js on September 17, 2026?
3 developers shipped this update, including renovate, ondrhn, and onmax.
What were the notable Vue.js updates?
fix(shared): handle circular references in looseEqual, fix(runtime-core): unmount v-once children after parent rerenders, and chore(deps): update dependency vitest to v4.1.11 [security].