@doist/typist 9.0.2 → 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 +11 -0
- package/CONTRIBUTING.md +32 -2
- package/package.json +8 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
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
|
+
|
|
1
12
|
## [9.0.2](https://github.com/Doist/typist/compare/v9.0.1...v9.0.2) (2026-02-19)
|
|
2
13
|
|
|
3
14
|
### 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",
|
|
@@ -87,14 +87,9 @@
|
|
|
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.17",
|
|
97
|
-
"@storybook/react-vite": "8.6.17",
|
|
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
95
|
"@testing-library/react": "16.3.2",
|
|
@@ -114,7 +109,7 @@
|
|
|
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",
|
|
@@ -125,7 +120,7 @@
|
|
|
125
120
|
"jsdom": "28.1.0",
|
|
126
121
|
"lint-staged": "16.2.7",
|
|
127
122
|
"npm-run-all-next": "1.1.6",
|
|
128
|
-
"prettier": "3.
|
|
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",
|
|
@@ -136,10 +131,10 @@
|
|
|
136
131
|
"remark-gfm": "4.0.1",
|
|
137
132
|
"rimraf": "6.1.3",
|
|
138
133
|
"semantic-release": "25.0.3",
|
|
139
|
-
"storybook": "
|
|
134
|
+
"storybook": "10.2.10",
|
|
140
135
|
"storybook-css-modules": "1.0.8",
|
|
141
136
|
"tippy.js": "6.3.7",
|
|
142
|
-
"type-fest": "5.4.
|
|
137
|
+
"type-fest": "5.4.4",
|
|
143
138
|
"typescript": "5.9.3",
|
|
144
139
|
"typescript-plugin-css-modules": "5.2.0",
|
|
145
140
|
"vitest": "4.0.18"
|