@doist/typist 11.0.1 → 12.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## [12.0.0](https://github.com/Doist/typist/compare/v11.0.1...v12.0.0) (2026-05-26)
2
+
3
+ ### ⚠ BREAKING CHANGES
4
+
5
+ * **deps:** linkifyjs, emoji-regex, and lodash-es must be declared
6
+ by consumers as direct dependencies. npm 7+ auto-installs peer deps, so
7
+ fresh installs work transparently; existing installs need to add the
8
+ three packages explicitly to satisfy strict resolution (pnpm, etc.).
9
+
10
+ * chore(deps): raise linkifyjs peer floor to ^4.3.2
11
+
12
+ @tiptap/extension-link, which ships in Typist's dependencies, requires
13
+ linkifyjs ^4.3.2 at runtime. The previous ^4.1.1 peer range let
14
+ consumers satisfy Typist's peer with 4.1.x or 4.2.x, which would force
15
+ npm to install a nested second copy of linkifyjs for Tiptap, defeating
16
+ the dedup goal of moving linkifyjs back to a peer dep in the first
17
+ place.
18
+
19
+ ### Features
20
+
21
+ * **deps:** move shared application utilities back to peer dependencies ([#1354](https://github.com/Doist/typist/issues/1354)) ([08a8fd8](https://github.com/Doist/typist/commit/08a8fd83b42592ad1a2441d88817ea01029fc9b8)), closes [#1351](https://github.com/Doist/typist/issues/1351)
22
+
1
23
  ## [11.0.1](https://github.com/Doist/typist/compare/v11.0.0...v11.0.1) (2026-05-26)
2
24
 
3
25
  ### Bug Fixes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@doist/typist",
3
3
  "description": "The mighty Tiptap-based rich-text editor React component that powers Doist products.",
4
- "version": "11.0.1",
4
+ "version": "12.0.0",
5
5
  "license": "MIT",
6
6
  "homepage": "https://typist.doist.dev/",
7
7
  "repository": {
@@ -87,9 +87,6 @@
87
87
  "@tiptap/pm": "2.27.2",
88
88
  "@tiptap/react": "2.27.2",
89
89
  "@tiptap/suggestion": "2.27.2",
90
- "emoji-regex": "10.6.0",
91
- "linkifyjs": "4.3.3",
92
- "lodash-es": "4.17.23",
93
90
  "mdast-util-gfm-autolink-literal": "2.0.1",
94
91
  "mdast-util-gfm-strikethrough": "2.0.0",
95
92
  "micromark-extension-gfm-autolink-literal": "2.1.0",
@@ -156,6 +153,9 @@
156
153
  "vitest": "4.1.7"
157
154
  },
158
155
  "peerDependencies": {
156
+ "emoji-regex": "^10.2.1",
157
+ "linkifyjs": "^4.3.2",
158
+ "lodash-es": "^4.17.21",
159
159
  "react": "^18.0.0",
160
160
  "react-dom": "^18.0.0"
161
161
  }