Skip to content

v12.0.0

Choose a tag to compare

@doist-release-bot doist-release-bot released this 26 May 19:04
· 15 commits to main since this release

12.0.0 (2026-05-26)

⚠ BREAKING CHANGES

  • deps: linkifyjs, emoji-regex, and lodash-es must be declared
    by consumers as direct dependencies. npm 7+ auto-installs peer deps, so
    fresh installs work transparently; existing installs need to add the
    three packages explicitly to satisfy strict resolution (pnpm, etc.).

  • chore(deps): raise linkifyjs peer floor to ^4.3.2

@tiptap/extension-link, which ships in Typist's dependencies, requires
linkifyjs ^4.3.2 at runtime. The previous ^4.1.1 peer range let
consumers satisfy Typist's peer with 4.1.x or 4.2.x, which would force
npm to install a nested second copy of linkifyjs for Tiptap, defeating
the dedup goal of moving linkifyjs back to a peer dep in the first
place.

Features

  • deps: move shared application utilities back to peer dependencies (#1354) (08a8fd8), closes #1351