@doist/typist 11.0.0 → 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.
- package/CHANGELOG.md +29 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
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
|
+
|
|
23
|
+
## [11.0.1](https://github.com/Doist/typist/compare/v11.0.0...v11.0.1) (2026-05-26)
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **deps:** update dependency linkifyjs to v4.3.3 ([#1352](https://github.com/Doist/typist/issues/1352)) ([7024a5b](https://github.com/Doist/typist/commit/7024a5b3349445354a1c483736e141d94200305a))
|
|
28
|
+
* **deps:** update dependency turndown to v7.2.4 ([#1353](https://github.com/Doist/typist/issues/1353)) ([2f83d11](https://github.com/Doist/typist/commit/2f83d11721881d0e5d607c40fdb148c0baf8ad94))
|
|
29
|
+
|
|
1
30
|
## [11.0.0](https://github.com/Doist/typist/compare/v10.0.3...v11.0.0) (2026-05-26)
|
|
2
31
|
|
|
3
32
|
### ⚠ BREAKING CHANGES
|
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": "
|
|
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.2",
|
|
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",
|
|
@@ -100,7 +97,7 @@
|
|
|
100
97
|
"remark-breaks": "4.0.0",
|
|
101
98
|
"remark-parse": "11.0.0",
|
|
102
99
|
"remark-rehype": "11.1.2",
|
|
103
|
-
"turndown": "7.2.
|
|
100
|
+
"turndown": "7.2.4",
|
|
104
101
|
"unified": "11.0.5",
|
|
105
102
|
"unist-util-is": "6.0.1",
|
|
106
103
|
"unist-util-remove": "4.0.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
|
}
|