Compare commits

...

2 Commits

Author SHA1 Message Date
dependabot[bot]
68889d048d chore(deps): Bump @codemirror/state from 6.5.2 to 6.5.3 (#1614)
Bumps [@codemirror/state](https://github.com/codemirror/state) from
6.5.2 to 6.5.3.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/codemirror/state/blob/main/CHANGELOG.md"><code>@​codemirror/state</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>6.5.3 (2025-12-22)</h2>
<h3>Bug fixes</h3>
<p>Fix an issue where <code>RangeValue.eq</code> could get called with a
value of a different class.</p>
<p><code>EditorState.charCategorizer</code> now only uses the
highest-precedence set of word characters from the language data, to
allow overriding these.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b2cbf25cc3"><code>b2cbf25</code></a>
Mark version 6.5.3</li>
<li><a
href="386d55d3c2"><code>386d55d</code></a>
Make charCategorizer only use the highest-precedence set of word
chars</li>
<li><a
href="aa4ca3c99d"><code>aa4ca3c</code></a>
Document RangeCursor.goto</li>
<li><a
href="32c46fa82f"><code>32c46fa</code></a>
Don't call RangeValue.eq on values of different class</li>
<li><a
href="127f07c316"><code>127f07c</code></a>
Fix superfluous calls to boundChange</li>
<li><a
href="c24cde9d01"><code>c24cde9</code></a>
Remove some trailing whitespace</li>
<li><a
href="fc068eddf3"><code>fc068ed</code></a>
Fix mapPos documentation</li>
<li><a
href="83ce34df91"><code>83ce34d</code></a>
Switch from exclamation point to declare syntax for type-only
properties</li>
<li>See full diff in <a
href="https://github.com/codemirror/state/compare/6.5.2...6.5.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@codemirror/state&package-manager=npm_and_yarn&previous-version=6.5.2&new-version=6.5.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-16 14:01:06 +00:00
dependabot[bot]
92c34f7a75 chore(deps): Bump @codemirror/view from 6.39.6 to 6.39.10 (#1635)
Bumps [@codemirror/view](https://github.com/codemirror/view) from 6.39.6
to 6.39.10.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/codemirror/view/blob/main/CHANGELOG.md"><code>@​codemirror/view</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>6.39.10 (2026-01-13)</h2>
<h3>Bug fixes</h3>
<p>Fix a regression in the way widget are reused when content next to
them changes.</p>
<p>Make sure font metrics get recomputed on <code>fonts.ready</code>
even if the line height doesn't change.</p>
<p>Fix an issue where compositions next to a widget that create a new
text node could get needlessly interrupted during an editor update.</p>
<h2>6.39.9 (2026-01-06)</h2>
<h3>Bug fixes</h3>
<p>Fix a bug where <code>EditorSelection.cursor()</code> with a non-zero
<code>assoc</code> value would not be visually respected at soft-wrap
boundaries on initial view creation.</p>
<p>Fix error caused by hover tooltips running a scheduled timeout after
their editor has been destroyed.</p>
<p>Fix a bug that caused <code>EditorView.outerDecorations</code> to not
affect the content height map.</p>
<p>Fix an issue where composition near a widget could get unnecessarily
interrupted.</p>
<h2>6.39.8 (2025-12-30)</h2>
<h3>Bug fixes</h3>
<p>Fix a bug that cause <code>coordsAtPos</code> to use the dimensions
of widget buffers when there were more meaningful elements to use
nearby.</p>
<p>Fix a data structure corruption that could cause crashes during
viewport changes.</p>
<h2>6.39.7 (2025-12-24)</h2>
<h3>Bug fixes</h3>
<p>Fix a bug that could sometimes cause the document to become mangled
during composition.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="74c9e9b531"><code>74c9e9b</code></a>
Mark version 6.39.10</li>
<li><a
href="96566415a2"><code>9656641</code></a>
Fix another way widgets could be reused across a composition</li>
<li><a
href="ff312713bd"><code>ff31271</code></a>
Make sure font metrics get recomputed on font load</li>
<li><a
href="e9e5fe2b10"><code>e9e5fe2</code></a>
Only reuse widget tiles when the widget is precisely the same</li>
<li><a
href="41b978b5ff"><code>41b978b</code></a>
Mark version 6.39.9</li>
<li><a
href="7ad513e5dc"><code>7ad513e</code></a>
Avoid reusing DOM nodes across composition</li>
<li><a
href="2195af4154"><code>2195af4</code></a>
Remove some unnecessary exclamation point operators</li>
<li><a
href="0a2d822367"><code>0a2d822</code></a>
Properly include outerDecorations in height map structure</li>
<li><a
href="1524fb5482"><code>1524fb5</code></a>
Remove unused DOM type declaration</li>
<li><a
href="f6cb4593f6"><code>f6cb459</code></a>
Work around odd rounding issue in a test in MacOS Chrome</li>
<li>Additional commits viewable in <a
href="https://github.com/codemirror/view/compare/6.39.6...6.39.10">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@codemirror/view&package-manager=npm_and_yarn&previous-version=6.39.6&new-version=6.39.10)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-16 13:51:39 +00:00
2 changed files with 10 additions and 10 deletions

16
package-lock.json generated
View File

@@ -11,9 +11,9 @@
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lint": "^6.9.2",
"@codemirror/state": "^6.5.2",
"@codemirror/state": "^6.5.3",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.6",
"@codemirror/view": "^6.39.10",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
@@ -609,9 +609,9 @@
}
},
"node_modules/@codemirror/state": {
"version": "6.5.2",
"resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.5.2.tgz",
"integrity": "sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==",
"version": "6.5.3",
"resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.5.3.tgz",
"integrity": "sha512-MerMzJzlXogk2fxWFU1nKp36bY5orBG59HnPiz0G9nLRebWa0zXuv2siH6PLIHBvv5TH8CkQRqjBs0MlxCZu+A==",
"license": "MIT",
"dependencies": {
"@marijn/find-cluster-break": "^1.0.0"
@@ -630,9 +630,9 @@
}
},
"node_modules/@codemirror/view": {
"version": "6.39.6",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.39.6.tgz",
"integrity": "sha512-/N+SoP5NndJjkGInp3BwlUa3KQKD6bDo0TV6ep37ueAdQ7BVu/PqlZNywmgjCq0MQoZadZd8T+MZucSr7fktyQ==",
"version": "6.39.10",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.39.10.tgz",
"integrity": "sha512-QfT/PXhiiP76PxMnX0RQVPDQrqfRt9wr9QhInNHnEUu4PWoNS8QwwcIDEneXFChJv22y+Yu/Cz5lFMTPz+h16w==",
"license": "MIT",
"dependencies": {
"@codemirror/state": "^6.5.0",

View File

@@ -28,9 +28,9 @@
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lint": "^6.9.2",
"@codemirror/state": "^6.5.2",
"@codemirror/state": "^6.5.3",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.6",
"@codemirror/view": "^6.39.10",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",