[PR #2503] [CLOSED] chore(deps): bump @codemirror/view from 0.19.48 to 6.0.3 #3852

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

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2503
Author: @dependabot[bot]
Created: 7/11/2022
Status: Closed

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


📝 Commits (1)

  • 7367191 chore(deps): bump @codemirror/view from 0.19.48 to 6.0.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.0.3.

Changelog

Sourced from @​codemirror/view's changelog.

6.0.3 (2022-07-08)

Bug fixes

Fix a problem where posAtCoords could incorrectly return the start of the next line when querying positions between lines.

Fix an issue where registering a high-precedence keymap made keymap handling take precedence over other keydown event handlers.

Ctrl/Cmd-clicking can now remove ranges from a multi-range selection.

6.0.2 (2022-06-23)

Bug fixes

Fix a CSS issue that broke horizontal scroll width stabilization.

Fix a bug where defaultLineHeight could get an incorrect value in very narrow editors.

6.0.1 (2022-06-17)

Bug fixes

Avoid DOM selection corruption when the editor doesn't have focus but has selection and updates its content.

Fall back to dispatching by key code when a key event produces a non-ASCII character (so that Cyrillic and Arabic keyboards can still use bindings specified with Latin characters).

6.0.0 (2022-06-08)

New features

The new static EditorView.findFromDOM method can be used to retrieve an editor instance from its DOM structure.

Instead of passing a constructed state to the EditorView constructor, it is now also possible to inline the configuration options to the state in the view config object.

0.20.7 (2022-05-30)

Bug fixes

Fix an issue on Chrome Android where the DOM could fail to display the actual document after backspace.

Avoid an issue on Chrome Android where DOM changes were sometimes inappropriately replace by a backspace key effect due to spurious beforeinput events.

Fix a problem where the content element's width didn't cover the width of the actual content.

Work around a bug in Chrome 102 which caused wheel scrolling of the editor to be interrupted every few lines.

0.20.6 (2022-05-20)

Bug fixes

... (truncated)

Commits
  • 3378b37 Mark version 6.0.3
  • 7d9c3e5 Maintain main selection range when removing a range
  • 5a19aac Remove cursor on Cmd/Ctrl-click
  • e149f4b Use opacity rather than visibility to animate cursor.
  • 44a4da3 Make sure the keymap event handlers don't inherit precedence
  • fda9188 Recognize invalid caretRangeFromPoint results in Chrome
  • 9b91b35 Mark version 6.0.2
  • df6da4d Make sure dummy element used to measure text size doesn't get wrapped
  • b4e416e Fix line wrapping
  • 48b50c1 Set flexShrink on the content to 0
  • 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/2503 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 7/11/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/codemirror/view-6.0.3` --- ### 📝 Commits (1) - [`7367191`](https://github.com/hoppscotch/hoppscotch/commit/73671919ec84c100d7347e2bf0cecd72519cc458) chore(deps): bump @codemirror/view from 0.19.48 to 6.0.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.0.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.0.3 (2022-07-08)</h2> <h3>Bug fixes</h3> <p>Fix a problem where <code>posAtCoords</code> could incorrectly return the start of the next line when querying positions between lines.</p> <p>Fix an issue where registering a high-precedence keymap made keymap handling take precedence over other keydown event handlers.</p> <p>Ctrl/Cmd-clicking can now remove ranges from a multi-range selection.</p> <h2>6.0.2 (2022-06-23)</h2> <h3>Bug fixes</h3> <p>Fix a CSS issue that broke horizontal scroll width stabilization.</p> <p>Fix a bug where <code>defaultLineHeight</code> could get an incorrect value in very narrow editors.</p> <h2>6.0.1 (2022-06-17)</h2> <h3>Bug fixes</h3> <p>Avoid DOM selection corruption when the editor doesn't have focus but has selection and updates its content.</p> <p>Fall back to dispatching by key code when a key event produces a non-ASCII character (so that Cyrillic and Arabic keyboards can still use bindings specified with Latin characters).</p> <h2>6.0.0 (2022-06-08)</h2> <h3>New features</h3> <p>The new static <code>EditorView.findFromDOM</code> method can be used to retrieve an editor instance from its DOM structure.</p> <p>Instead of passing a constructed state to the <code>EditorView</code> constructor, it is now also possible to inline the configuration options to the state in the view config object.</p> <h2>0.20.7 (2022-05-30)</h2> <h3>Bug fixes</h3> <p>Fix an issue on Chrome Android where the DOM could fail to display the actual document after backspace.</p> <p>Avoid an issue on Chrome Android where DOM changes were sometimes inappropriately replace by a backspace key effect due to spurious beforeinput events.</p> <p>Fix a problem where the content element's width didn't cover the width of the actual content.</p> <p>Work around a bug in Chrome 102 which caused wheel scrolling of the editor to be interrupted every few lines.</p> <h2>0.20.6 (2022-05-20)</h2> <h3>Bug fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/codemirror/view/commit/3378b37224e5f04f76a44318dec8e47865c7ce83"><code>3378b37</code></a> Mark version 6.0.3</li> <li><a href="https://github.com/codemirror/view/commit/7d9c3e54396242d17b3164a0e244dcc234ee50ee"><code>7d9c3e5</code></a> Maintain main selection range when removing a range</li> <li><a href="https://github.com/codemirror/view/commit/5a19aac5cb21cb4b34b712df867e5ff2998b244e"><code>5a19aac</code></a> Remove cursor on Cmd/Ctrl-click</li> <li><a href="https://github.com/codemirror/view/commit/e149f4bfbbb0af81975941af8b0da3179d53d50e"><code>e149f4b</code></a> Use opacity rather than visibility to animate cursor.</li> <li><a href="https://github.com/codemirror/view/commit/44a4da36761fd78d72799fc60cd254261a3629e6"><code>44a4da3</code></a> Make sure the keymap event handlers don't inherit precedence</li> <li><a href="https://github.com/codemirror/view/commit/fda91888c8e60dc34268d8b896d60e951709dedb"><code>fda9188</code></a> Recognize invalid caretRangeFromPoint results in Chrome</li> <li><a href="https://github.com/codemirror/view/commit/9b91b35eafdee5b9148245bc137898e00cebcd29"><code>9b91b35</code></a> Mark version 6.0.2</li> <li><a href="https://github.com/codemirror/view/commit/df6da4da7ec9bcb132083dd4209c903a50e0b346"><code>df6da4d</code></a> Make sure dummy element used to measure text size doesn't get wrapped</li> <li><a href="https://github.com/codemirror/view/commit/b4e416e12239b125c508e228234d989ee4ede6a7"><code>b4e416e</code></a> Fix line wrapping</li> <li><a href="https://github.com/codemirror/view/commit/48b50c15ccc4c971da76543d92ea97b46e556d9f"><code>48b50c1</code></a> Set flexShrink on the content to 0</li> <li>Additional commits viewable in <a href="https://github.com/codemirror/view/compare/0.19.48...6.0.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.0.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:25:53 +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#3852
No description provided.