[PR #2661] [CLOSED] chore(deps): bump @codemirror/view from 0.19.48 to 6.2.3 #3975

Closed
opened 2026-03-17 01:32:38 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2661
Author: @dependabot[bot]
Created: 9/12/2022
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/codemirror/view-6.2.3


📝 Commits (1)

  • 233418c chore(deps): bump @codemirror/view from 0.19.48 to 6.2.3

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 packages/hoppscotch-app/package.json (+1 -1)

📄 Description

Bumps @codemirror/view from 0.19.48 to 6.2.3.

Changelog

Sourced from @​codemirror/view's changelog.

6.2.3 (2022-09-08)

Bug fixes

Fix a bug where cursor motion, when starting from a non-empty selection range, could get stuck on atomic ranges in some circumstances.

Avoid triggering Chrome Android's text-duplication issue when a period is typed in the middle of a word.

6.2.2 (2022-08-31)

Bug fixes

Don't reset the selection for selection change events that were suppressed by a node view.

6.2.1 (2022-08-25)

Bug fixes

Don't use the global document variable to track focus, since that doesn't work in another window/frame.

Fix an issue where key handlers that didn't return true were sometimes called twice for the same keypress.

Avoid editing glitches when using deletion keys like ctrl-d on iOS.

Properly treat characters from the 'Arabic Presentation Forms-A' Unicode block as right-to-left.

Work around a Firefox bug that inserts text at the wrong point for specific cross-line selections.

6.2.0 (2022-08-05)

Bug fixes

Fix a bug where posAtCoords would return the wrong results for positions to the right of wrapped lines.

New features

The new EditorView.setRoot method can be used when an editor view is moved to a new document or shadow root.

6.1.4 (2022-08-04)

Bug fixes

Make selection-restoration on focus more reliable.

6.1.3 (2022-08-03)

Bug fixes

Fix a bug where a document that contains only non-printing characters would lead to bogus text measurements (and, from those, to crashing).

... (truncated)

Commits
  • 0a9bf6a Mark version 6.2.3
  • b7664d5 Fix misnamed property
  • 571ad08 Consistenly return boolean from DOMObserver.flush
  • 87162f7 Avoid triggering Chrome Android text duplication bug on compositionend
  • beebaba Use requestAnimationFrame for delayed flush
  • 1487cb8 Fix return type of queryPos
  • e3c298c Fix a bug in atomic range skipping
  • ddac2d2 Declare bound on type parameter to EditorView.plugin
  • ce7ca0b Mark version 6.2.2
  • 46bd8e0 Fix bad link
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/2661 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 9/12/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/codemirror/view-6.2.3` --- ### 📝 Commits (1) - [`233418c`](https://github.com/hoppscotch/hoppscotch/commit/233418c4aa1e51c5ebb607e4046078989e57eadf) chore(deps): bump @codemirror/view from 0.19.48 to 6.2.3 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-app/package.json` (+1 -1) </details> ### 📄 Description Bumps [@codemirror/view](https://github.com/codemirror/view) from 0.19.48 to 6.2.3. <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.2.3 (2022-09-08)</h2> <h3>Bug fixes</h3> <p>Fix a bug where cursor motion, when starting from a non-empty selection range, could get stuck on atomic ranges in some circumstances.</p> <p>Avoid triggering Chrome Android's text-duplication issue when a period is typed in the middle of a word.</p> <h2>6.2.2 (2022-08-31)</h2> <h3>Bug fixes</h3> <p>Don't reset the selection for selection change events that were suppressed by a node view.</p> <h2>6.2.1 (2022-08-25)</h2> <h3>Bug fixes</h3> <p>Don't use the global <code>document</code> variable to track focus, since that doesn't work in another window/frame.</p> <p>Fix an issue where key handlers that didn't return true were sometimes called twice for the same keypress.</p> <p>Avoid editing glitches when using deletion keys like ctrl-d on iOS.</p> <p>Properly treat characters from the 'Arabic Presentation Forms-A' Unicode block as right-to-left.</p> <p>Work around a Firefox bug that inserts text at the wrong point for specific cross-line selections.</p> <h2>6.2.0 (2022-08-05)</h2> <h3>Bug fixes</h3> <p>Fix a bug where <code>posAtCoords</code> would return the wrong results for positions to the right of wrapped lines.</p> <h3>New features</h3> <p>The new <code>EditorView.setRoot</code> method can be used when an editor view is moved to a new document or shadow root.</p> <h2>6.1.4 (2022-08-04)</h2> <h3>Bug fixes</h3> <p>Make selection-restoration on focus more reliable.</p> <h2>6.1.3 (2022-08-03)</h2> <h3>Bug fixes</h3> <p>Fix a bug where a document that contains only non-printing characters would lead to bogus text measurements (and, from those, to crashing).</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/codemirror/view/commit/0a9bf6a5cb308c6a2aab2ea5b7786d7f1d5dae43"><code>0a9bf6a</code></a> Mark version 6.2.3</li> <li><a href="https://github.com/codemirror/view/commit/b7664d5111140f1383fc66f8a55ec66c66813713"><code>b7664d5</code></a> Fix misnamed property</li> <li><a href="https://github.com/codemirror/view/commit/571ad082294b8bb7fe727bc94bce281386f348f9"><code>571ad08</code></a> Consistenly return boolean from DOMObserver.flush</li> <li><a href="https://github.com/codemirror/view/commit/87162f70d38cbb42f15ecf591d3b122f89930277"><code>87162f7</code></a> Avoid triggering Chrome Android text duplication bug on compositionend</li> <li><a href="https://github.com/codemirror/view/commit/beebaba9daab62d604a4edb0410234514b6569b4"><code>beebaba</code></a> Use requestAnimationFrame for delayed flush</li> <li><a href="https://github.com/codemirror/view/commit/1487cb80514aa4527f50d27b103b7fa73b9a8b2b"><code>1487cb8</code></a> Fix return type of queryPos</li> <li><a href="https://github.com/codemirror/view/commit/e3c298c5477e4581dc9c4514a5cc13c3b9a27e8a"><code>e3c298c</code></a> Fix a bug in atomic range skipping</li> <li><a href="https://github.com/codemirror/view/commit/ddac2d27f42839dc3d84f46ef8bc65d1a99c3140"><code>ddac2d2</code></a> Declare bound on type parameter to EditorView.plugin</li> <li><a href="https://github.com/codemirror/view/commit/ce7ca0b1539a5c8bae217806010954937e67b509"><code>ce7ca0b</code></a> Mark version 6.2.2</li> <li><a href="https://github.com/codemirror/view/commit/46bd8e0b0dec4215814e6e14f6f2145657dcd8ad"><code>46bd8e0</code></a> Fix bad link</li> <li>Additional commits viewable in <a href="https://github.com/codemirror/view/compare/0.19.48...6.2.3">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=0.19.48&new-version=6.2.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 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:32:38 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#3975
No description provided.