@doist/typist 9.0.1 → 9.0.3
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 +17 -0
- package/CONTRIBUTING.md +32 -2
- package/package.json +49 -54
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [9.0.3](https://github.com/Doist/typist/compare/v9.0.2...v9.0.3) (2026-02-25)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- test prerelease workflow ([#1219](https://github.com/Doist/typist/issues/1219)) ([f5a9e05](https://github.com/Doist/typist/commit/f5a9e058e022e3caa9709d2df9b48a41d77a4c8e))
|
|
6
|
+
- test prerelease workflow (take 2) ([#1222](https://github.com/Doist/typist/issues/1222)) ([6eb32ab](https://github.com/Doist/typist/commit/6eb32abfaeb6d2d47069bad53984e34893a6248f))
|
|
7
|
+
- test prerelease workflow (take 3) ([#1225](https://github.com/Doist/typist/issues/1225)) ([7dd6258](https://github.com/Doist/typist/commit/7dd62582462194412ec5b272959575f87d286b14))
|
|
8
|
+
- test prerelease workflow (take 4) ([#1227](https://github.com/Doist/typist/issues/1227)) ([48fdcad](https://github.com/Doist/typist/commit/48fdcad8da26690fc4d6f6a800dc9027ee1a9705))
|
|
9
|
+
- test prerelease workflow (take 5) ([#1229](https://github.com/Doist/typist/issues/1229)) ([7b706c0](https://github.com/Doist/typist/commit/7b706c053df877a142ca868581f60f4213713db8))
|
|
10
|
+
- test prerelease workflow (take 6) ([#1231](https://github.com/Doist/typist/issues/1231)) ([674bbcd](https://github.com/Doist/typist/commit/674bbcd23e48dec129a4ccba09cd4f79756d8a41))
|
|
11
|
+
|
|
12
|
+
## [9.0.2](https://github.com/Doist/typist/compare/v9.0.1...v9.0.2) (2026-02-19)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **deps:** update tiptap packages to v2.27.2 ([#1190](https://github.com/Doist/typist/issues/1190)) ([9fd3a34](https://github.com/Doist/typist/commit/9fd3a3494a1844a6f9e13793fd78775171cfa3a5))
|
|
17
|
+
|
|
1
18
|
## [9.0.1](https://github.com/Doist/typist/compare/v9.0.0...v9.0.1) (2026-01-13)
|
|
2
19
|
|
|
3
20
|
### Bug Fixes
|
package/CONTRIBUTING.md
CHANGED
|
@@ -18,7 +18,9 @@ Every significant change is documented in the [CHANGELOG.md](CHANGELOG.md) file.
|
|
|
18
18
|
|
|
19
19
|
## Branch Organization
|
|
20
20
|
|
|
21
|
-
Submit all changes directly to the [main](https://github.com/doist/typist/tree/main) branch. We
|
|
21
|
+
Submit all changes directly to the [main](https://github.com/doist/typist/tree/main) branch. We do our best to keep `main` in good shape, with all tests passing.
|
|
22
|
+
|
|
23
|
+
For pre-release testing, the `next` branch is used to publish pre-release versions to npm before promoting to stable. See [Release Process](#release-process-core-team-only) for details.
|
|
22
24
|
|
|
23
25
|
## Proposing a Change
|
|
24
26
|
|
|
@@ -64,7 +66,35 @@ After cloning Typist and installing all dependencies, several commands are at yo
|
|
|
64
66
|
|
|
65
67
|
### Release Process (core team only)
|
|
66
68
|
|
|
67
|
-
The release process for Typist is
|
|
69
|
+
The release process for Typist is fully automated with [`semantic-release`](https://github.com/semantic-release/semantic-release). Pushing to `main` (after CI passes) triggers a stable release automatically.
|
|
70
|
+
|
|
71
|
+
#### Pre-releases
|
|
72
|
+
|
|
73
|
+
To test features before publishing a stable release:
|
|
74
|
+
|
|
75
|
+
1. **Sync `next` with `main`** if they are out of sync, before starting new work:
|
|
76
|
+
|
|
77
|
+
```sh
|
|
78
|
+
git checkout next
|
|
79
|
+
git merge main -m "chore: sync next with main [skip ci]"
|
|
80
|
+
git push origin next
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
2. **Develop on a feature branch** based off `next` and open a PR targeting `next`.
|
|
84
|
+
|
|
85
|
+
3. **Automatic pre-release:** Each PR merge into `next` triggers CI → a pre-release version (e.g., `9.1.0-next.1`) is published to the `@next` dist-tag on npm and GitHub Packages.
|
|
86
|
+
|
|
87
|
+
4. **Promote to stable:** When ready, open a PR to merge `next` into `main`. The PR title must follow [Conventional Commits](https://www.conventionalcommits.org/) (e.g., `feat: ...`, `fix: ...`) as it determines the version bump for the stable release.
|
|
88
|
+
|
|
89
|
+
5. **Sync `next` with `main`** after the stable release, to pull back the release commit:
|
|
90
|
+
|
|
91
|
+
```sh
|
|
92
|
+
git checkout next
|
|
93
|
+
git merge main -m "chore: sync next with main [skip ci]"
|
|
94
|
+
git push origin next
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
> **Note:** The `CHANGELOG.md` is only updated for stable releases on `main`. Pre-releases still get GitHub release notes and npm publication.
|
|
68
98
|
|
|
69
99
|
### Visual Studio Code
|
|
70
100
|
|
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": "9.0.
|
|
4
|
+
"version": "9.0.3",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://typist.doist.dev/",
|
|
7
7
|
"repository": "https://github.com/Doist/typist",
|
|
@@ -46,66 +46,61 @@
|
|
|
46
46
|
"validate:pre-push": "run-s test"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@tiptap/core": "2.27.
|
|
50
|
-
"@tiptap/extension-blockquote": "2.27.
|
|
51
|
-
"@tiptap/extension-bold": "2.27.
|
|
52
|
-
"@tiptap/extension-bullet-list": "2.27.
|
|
53
|
-
"@tiptap/extension-character-count": "2.27.
|
|
54
|
-
"@tiptap/extension-code": "2.27.
|
|
55
|
-
"@tiptap/extension-code-block": "2.27.
|
|
56
|
-
"@tiptap/extension-document": "2.27.
|
|
57
|
-
"@tiptap/extension-dropcursor": "2.27.
|
|
58
|
-
"@tiptap/extension-gapcursor": "2.27.
|
|
59
|
-
"@tiptap/extension-hard-break": "2.27.
|
|
60
|
-
"@tiptap/extension-heading": "2.27.
|
|
61
|
-
"@tiptap/extension-history": "2.27.
|
|
62
|
-
"@tiptap/extension-horizontal-rule": "2.27.
|
|
63
|
-
"@tiptap/extension-image": "2.27.
|
|
64
|
-
"@tiptap/extension-italic": "2.27.
|
|
65
|
-
"@tiptap/extension-link": "2.27.
|
|
66
|
-
"@tiptap/extension-list-item": "2.27.
|
|
67
|
-
"@tiptap/extension-list-keymap": "2.27.
|
|
68
|
-
"@tiptap/extension-ordered-list": "2.27.
|
|
69
|
-
"@tiptap/extension-paragraph": "2.27.
|
|
70
|
-
"@tiptap/extension-placeholder": "2.27.
|
|
71
|
-
"@tiptap/extension-strike": "2.27.
|
|
72
|
-
"@tiptap/extension-task-item": "2.27.
|
|
73
|
-
"@tiptap/extension-task-list": "2.27.
|
|
74
|
-
"@tiptap/extension-text": "2.27.
|
|
75
|
-
"@tiptap/extension-text-style": "2.27.
|
|
76
|
-
"@tiptap/extension-typography": "2.27.
|
|
77
|
-
"@tiptap/pm": "2.27.
|
|
78
|
-
"@tiptap/react": "2.27.
|
|
79
|
-
"@tiptap/suggestion": "2.27.
|
|
49
|
+
"@tiptap/core": "2.27.2",
|
|
50
|
+
"@tiptap/extension-blockquote": "2.27.2",
|
|
51
|
+
"@tiptap/extension-bold": "2.27.2",
|
|
52
|
+
"@tiptap/extension-bullet-list": "2.27.2",
|
|
53
|
+
"@tiptap/extension-character-count": "2.27.2",
|
|
54
|
+
"@tiptap/extension-code": "2.27.2",
|
|
55
|
+
"@tiptap/extension-code-block": "2.27.2",
|
|
56
|
+
"@tiptap/extension-document": "2.27.2",
|
|
57
|
+
"@tiptap/extension-dropcursor": "2.27.2",
|
|
58
|
+
"@tiptap/extension-gapcursor": "2.27.2",
|
|
59
|
+
"@tiptap/extension-hard-break": "2.27.2",
|
|
60
|
+
"@tiptap/extension-heading": "2.27.2",
|
|
61
|
+
"@tiptap/extension-history": "2.27.2",
|
|
62
|
+
"@tiptap/extension-horizontal-rule": "2.27.2",
|
|
63
|
+
"@tiptap/extension-image": "2.27.2",
|
|
64
|
+
"@tiptap/extension-italic": "2.27.2",
|
|
65
|
+
"@tiptap/extension-link": "2.27.2",
|
|
66
|
+
"@tiptap/extension-list-item": "2.27.2",
|
|
67
|
+
"@tiptap/extension-list-keymap": "2.27.2",
|
|
68
|
+
"@tiptap/extension-ordered-list": "2.27.2",
|
|
69
|
+
"@tiptap/extension-paragraph": "2.27.2",
|
|
70
|
+
"@tiptap/extension-placeholder": "2.27.2",
|
|
71
|
+
"@tiptap/extension-strike": "2.27.2",
|
|
72
|
+
"@tiptap/extension-task-item": "2.27.2",
|
|
73
|
+
"@tiptap/extension-task-list": "2.27.2",
|
|
74
|
+
"@tiptap/extension-text": "2.27.2",
|
|
75
|
+
"@tiptap/extension-text-style": "2.27.2",
|
|
76
|
+
"@tiptap/extension-typography": "2.27.2",
|
|
77
|
+
"@tiptap/pm": "2.27.2",
|
|
78
|
+
"@tiptap/react": "2.27.2",
|
|
79
|
+
"@tiptap/suggestion": "2.27.2",
|
|
80
80
|
"prosemirror-codemark": "0.4.2"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@doist/eslint-config": "12.0.0",
|
|
84
84
|
"@doist/prettier-config": "4.0.1",
|
|
85
|
-
"@doist/reactist": "
|
|
85
|
+
"@doist/reactist": "30.0.1",
|
|
86
86
|
"@mdx-js/react": "3.1.1",
|
|
87
87
|
"@semantic-release/changelog": "6.0.3",
|
|
88
88
|
"@semantic-release/exec": "7.1.0",
|
|
89
89
|
"@semantic-release/git": "10.0.1",
|
|
90
|
-
"@storybook/addon-a11y": "
|
|
91
|
-
"@storybook/addon-
|
|
92
|
-
"@storybook/
|
|
93
|
-
"@storybook/csf": "0.1.13",
|
|
94
|
-
"@storybook/manager-api": "8.6.14",
|
|
95
|
-
"@storybook/mdx2-csf": "1.1.0",
|
|
96
|
-
"@storybook/react": "8.6.15",
|
|
97
|
-
"@storybook/react-vite": "8.6.15",
|
|
90
|
+
"@storybook/addon-a11y": "10.2.10",
|
|
91
|
+
"@storybook/addon-docs": "10.2.10",
|
|
92
|
+
"@storybook/react-vite": "10.2.10",
|
|
98
93
|
"@testing-library/dom": "10.4.1",
|
|
99
94
|
"@testing-library/jest-dom": "6.9.1",
|
|
100
|
-
"@testing-library/react": "16.3.
|
|
95
|
+
"@testing-library/react": "16.3.2",
|
|
101
96
|
"@types/hast": "3.0.4",
|
|
102
97
|
"@types/lodash-es": "4.17.12",
|
|
103
|
-
"@types/react": "18.3.
|
|
98
|
+
"@types/react": "18.3.28",
|
|
104
99
|
"@types/react-dom": "18.3.7",
|
|
105
100
|
"@types/react-syntax-highlighter": "15.5.13",
|
|
106
101
|
"@types/turndown": "5.0.6",
|
|
107
102
|
"@types/unist": "3.0.3",
|
|
108
|
-
"@vitejs/plugin-react": "5.1.
|
|
103
|
+
"@vitejs/plugin-react": "5.1.4",
|
|
109
104
|
"boring-avatars": "2.0.4",
|
|
110
105
|
"classnames": "2.5.1",
|
|
111
106
|
"conventional-changelog-conventionalcommits": "9.1.0",
|
|
@@ -114,18 +109,18 @@
|
|
|
114
109
|
"eslint-formatter-codeframe": "7.32.2",
|
|
115
110
|
"eslint-import-resolver-typescript": "3.10.1",
|
|
116
111
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
117
|
-
"eslint-plugin-storybook": "
|
|
112
|
+
"eslint-plugin-storybook": "10.2.10",
|
|
118
113
|
"eslint-plugin-unicorn": "56.0.1",
|
|
119
114
|
"eslint-plugin-vitest": "0.4.1",
|
|
120
115
|
"eslint-plugin-vitest-globals": "1.5.0",
|
|
121
|
-
"github-markdown-css": "5.
|
|
116
|
+
"github-markdown-css": "5.9.0",
|
|
122
117
|
"husky": "9.1.7",
|
|
123
118
|
"ignore-sync": "8.0.0",
|
|
124
119
|
"is-ci": "4.1.0",
|
|
125
|
-
"jsdom": "
|
|
120
|
+
"jsdom": "28.1.0",
|
|
126
121
|
"lint-staged": "16.2.7",
|
|
127
|
-
"npm-run-all-next": "1.1.
|
|
128
|
-
"prettier": "3.
|
|
122
|
+
"npm-run-all-next": "1.1.6",
|
|
123
|
+
"prettier": "3.8.1",
|
|
129
124
|
"react": "18.3.1",
|
|
130
125
|
"react-dom": "18.3.1",
|
|
131
126
|
"react-icons": "5.5.0",
|
|
@@ -134,15 +129,15 @@
|
|
|
134
129
|
"react-use-event-hook": "0.9.6",
|
|
135
130
|
"rehype-raw": "7.0.0",
|
|
136
131
|
"remark-gfm": "4.0.1",
|
|
137
|
-
"rimraf": "6.1.
|
|
138
|
-
"semantic-release": "25.0.
|
|
139
|
-
"storybook": "
|
|
132
|
+
"rimraf": "6.1.3",
|
|
133
|
+
"semantic-release": "25.0.3",
|
|
134
|
+
"storybook": "10.2.10",
|
|
140
135
|
"storybook-css-modules": "1.0.8",
|
|
141
136
|
"tippy.js": "6.3.7",
|
|
142
|
-
"type-fest": "5.
|
|
137
|
+
"type-fest": "5.4.4",
|
|
143
138
|
"typescript": "5.9.3",
|
|
144
139
|
"typescript-plugin-css-modules": "5.2.0",
|
|
145
|
-
"vitest": "4.0.
|
|
140
|
+
"vitest": "4.0.18"
|
|
146
141
|
},
|
|
147
142
|
"peerDependencies": {
|
|
148
143
|
"emoji-regex": "^10.2.1",
|