Skip to content

Commit

Permalink
Lock version of @codemirror/view to prevent potential issues with K…
Browse files Browse the repository at this point in the history
…orean character input (#890)

With recent updates to @codemirror/view, there is a potential issue
where the input of Korean consonants and vowels may lead to incorrect
position updates, even though it is not currently occurring.

To mitigate the risk of future incidents, it is necessary to explicitly
lock the version of @codemirror/view and related packages to prevent
unintended upgrades due to Semantic Versioning.
  • Loading branch information
devleejb authored Sep 3, 2024
1 parent 7ba78ef commit 18ad89f
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 57 deletions.
6 changes: 3 additions & 3 deletions examples/vanilla-codemirror6/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
"vite": "^5.0.12"
},
"dependencies": {
"@codemirror/commands": "^6.1.2",
"@codemirror/commands": "6.1.2",
"@codemirror/highlight": "^0.19.8",
"@codemirror/lang-markdown": "^6.0.2",
"@codemirror/language-data": "^6.1.0",
"@codemirror/state": "^6.1.2",
"@codemirror/view": "^6.3.1",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "6.23.1",
"codemirror": "^6.0.1",
"yorkie-js-sdk": "workspace:*"
}
Expand Down
113 changes: 59 additions & 54 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 18ad89f

Please sign in to comment.