Skip to content

Commit c96182b

Browse files
committed
🐛(frontend) fix list copy paste
When we copy paste a list, the pasted list is not formatted correctly. By pinning prosemirror-model to 1.25.0, we avoid this issue. We added "prosemirror-model" to the ignored dependencies of Renovate to avoid to have a bump until the patch on the Blocknote.js side.
1 parent e79d1d6 commit c96182b

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## Fixed
12+
13+
- 🐛(frontend) fix list copy paste #943
14+
1115
## [3.2.0] - 2025-05-05
1216

1317
## Added

renovate.json

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,14 @@
1111
},
1212
{
1313
"groupName": "allowed django versions",
14-
"matchManagers": [
15-
"pep621"
16-
],
17-
"matchPackageNames": [
18-
"Django"
19-
],
14+
"matchManagers": ["pep621"],
15+
"matchPackageNames": ["Django"],
2016
"allowedVersions": "<5.2"
2117
},
2218
{
2319
"groupName": "allowed redis versions",
24-
"matchManagers": [
25-
"pep621"
26-
],
27-
"matchPackageNames": [
28-
"redis"
29-
],
20+
"matchManagers": ["pep621"],
21+
"matchPackageNames": ["redis"],
3022
"allowedVersions": "<6.0.0"
3123
},
3224
{
@@ -36,6 +28,7 @@
3628
"matchPackageNames": [
3729
"eslint",
3830
"fetch-mock",
31+
"prosemirror-model",
3932
"node",
4033
"node-fetch",
4134
"workbox-webpack-plugin"

src/frontend/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"@typescript-eslint/eslint-plugin": "8.32.0",
3535
"@typescript-eslint/parser": "8.32.0",
3636
"eslint": "8.57.0",
37+
"prosemirror-model": "1.25.0",
3738
"react": "19.1.0",
3839
"react-dom": "19.1.0",
3940
"typescript": "5.8.3",

src/frontend/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11801,10 +11801,10 @@ prosemirror-menu@^1.2.4:
1180111801
prosemirror-history "^1.0.0"
1180211802
prosemirror-state "^1.0.0"
1180311803

11804-
prosemirror-model@^1.0.0, prosemirror-model@^1.20.0, prosemirror-model@^1.21.0, prosemirror-model@^1.23.0, prosemirror-model@^1.24.1, prosemirror-model@^1.25.0:
11805-
version "1.25.1"
11806-
resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.25.1.tgz#aeae9f1ec79fcaa76f6fc619800d91fbcf726870"
11807-
integrity sha512-AUvbm7qqmpZa5d9fPKMvH1Q5bqYQvAZWOGRvxsB6iFLyycvC9MwNemNVjHVrWgjaoxAfY8XVg7DbvQ/qxvI9Eg==
11804+
prosemirror-model@1.25.0, prosemirror-model@^1.0.0, prosemirror-model@^1.20.0, prosemirror-model@^1.21.0, prosemirror-model@^1.23.0, prosemirror-model@^1.24.1, prosemirror-model@^1.25.0:
11805+
version "1.25.0"
11806+
resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.25.0.tgz#c147113edc0718a14f03881e4c20367d0221f7af"
11807+
integrity sha512-/8XUmxWf0pkj2BmtqZHYJipTBMHIdVjuvFzMvEoxrtyGNmfvdhBiRwYt/eFwy2wA9DtBW3RLqvZnjurEkHaFCw==
1180811808
dependencies:
1180911809
orderedmap "^2.0.0"
1181011810

0 commit comments

Comments
 (0)