Skip to content

Comments

chore(deps): update codemirror to v6.12.1 - autoclosed#17

Closed
renovate[bot] wants to merge 1 commit intomainfrom
renovate/codemirror
Closed

chore(deps): update codemirror to v6.12.1 - autoclosed#17
renovate[bot] wants to merge 1 commit intomainfrom
renovate/codemirror

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 2, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@codemirror/language 6.11.06.12.1 age adoption passing confidence
@codemirror/state 6.5.26.5.4 age adoption passing confidence
@codemirror/view 6.36.66.39.15 age adoption passing confidence

Release Notes

codemirror/language (@​codemirror/language)

v6.12.1

Compare Source

Bug fixes

Improve finding inner language in syntax tree when the nested parse has been marked as bracketed.

v6.12.0

Compare Source

v6.11.3

Compare Source

Bug fixes

Make the stream parser user 4 times smaller chunks to reduce the amount of re-parsed code on changes.

v6.11.2

Compare Source

Bug fixes

Make sure folded ranges open when backspacing or deleting into them.

v6.11.1

Compare Source

Bug fixes

Fix an issue where indentation would sometimes miss nodes in mixed-language situations.

codemirror/state (@​codemirror/state)

v6.5.4

Compare Source

Bug fixes

Make SelectionRange.eq return false when the ranges have different goal columns.

v6.5.3

Compare Source

Bug fixes

Fix an issue where RangeValue.eq could get called with a value of a different class.

EditorState.charCategorizer now only uses the highest-precedence set of word characters from the language data, to allow overriding these.

codemirror/view (@​codemirror/view)

v6.39.15

Compare Source

Bug fixes

Fix a regression where the editor would forget previously measured line heights without good reason.

Fix an issue where scrolling the cursor into view sometimes wouldn't work on Chrome Android.

Fix a bug that broke composition inside of block wrappers.

v6.39.14

Compare Source

Bug fixes

Improve performance of posAtCoords on long lines.

Fix a regression where copy and cut in a shadow DOM on Safari would fall back to the native behavior, often copying the wrong text.

v6.39.13

Compare Source

Bug fixes

Fix an issue where a widget at start or end of line, when wrapped to cover that whole line, could block vertical cursor motion.

Fix an issue EditorView.moveVertically that would sometimes cause selection-extending vertical motion to get stuck on line wrapping points.

v6.39.12

Compare Source

Bug fixes

Fix a bug where the visual selection drawn by drawSelection could fail to update properly in some circumstances.

Fix a bug where PageUp/PageDown near the edge of the viewport might completely skip to the start/end of the document.

Fix a regression that caused mark decorations to be split on text node chunk boundaries again.

v6.39.11

Compare Source

Bug fixes

Avoid handling copy events for parent editors.

v6.39.10

Compare Source

Bug fixes

Fix a regression in the way widget are reused when content next to them changes.

Make sure font metrics get recomputed on fonts.ready even if the line height doesn't change.

Fix an issue where compositions next to a widget that create a new text node could get needlessly interrupted during an editor update.

v6.39.9

Compare Source

Bug fixes

Fix a bug where EditorSelection.cursor() with a non-zero assoc value would not be visually respected at soft-wrap boundaries on initial view creation.

Fix error caused by hover tooltips running a scheduled timeout after their editor has been destroyed.

Fix a bug that caused EditorView.outerDecorations to not affect the content height map.

Fix an issue where composition near a widget could get unnecessarily interrupted.

v6.39.8

Compare Source

Bug fixes

Fix a bug that cause coordsAtPos to use the dimensions of widget buffers when there were more meaningful elements to use nearby.

Fix a data structure corruption that could cause crashes during viewport changes.

v6.39.7

Compare Source

Bug fixes

Fix a bug that could sometimes cause the document to become mangled during composition.

v6.39.6

Compare Source

Bug fixes

Fix an issue when composing on the boundary of a decoration, where the text after the composition would get garbled.

v6.39.5

Compare Source

Bug fixes

Fix an issue where replaced widgets alone on a line weren't reused and didn't get their updateDOM method called.

Fix a bug where, when selecting full lines at the end of the document and inserting a character on Chrome, an inappropriate extra newline was inserted.

v6.39.4

Compare Source

Bug fixes

Fix a bug where paste events handlers on Chrome could fail to run when pasting on a blank line.

Fix a regression causing the native cursor to get stuck before block widgets with side>0.

Fix a crash in content DOM building after a block widget.

Fix a bug in posAtCoords that would in some circumstances make it return positions on the wrong side of a block widget.

v6.39.3

Compare Source

Bug fixes

Fix a bug that could corrupt the rendered document in some situations involving adjacent mark decorations of the same type.

v6.39.2

Compare Source

Bug fixes

Fix an issue where moveVertially was sometimes unable to escape lines with thick borders or padding.

v6.39.1

Compare Source

Bug fixes

Restore a workaround for a Chrome selection bug that had regressed in the previous release.

v6.39.0

Compare Source

Bug fixes

Properly handle bidirectional text in posAtCoords.

Avoid computing a zero character width (leading to divisions by zero) when the editor is hidden and the browser doesn't have a layout for it.

New features

The posAndSideAtCoords method is an extended version of posAtCoords that also tells you which side of the position the coordinates are associated with.

Add support for block wrappers, decoration-like things that allow extension code to create DOM nodes around groups of lines.

v6.38.8

Compare Source

Bug fixes

Improve handling of composition with multiple cursors on MacOS.

Fix an issue where computing a document position from screen coordinates would sometimes go wrong in right-to-left text.

v6.38.7

Compare Source

Bug fixes

Make detection of transformed tooltip parent elements (forcing absolute positioning) more robust on current browsers.

Avoid an issue where on Chrome and Safari, typing over a cross-line selection can replace widgets on the line after the selection with their plain text content.

Fix a bug that broke insertion of composed input at multiple cursors when the IME keeps the selection at the start of the composed text.

v6.38.6

Compare Source

Bug fixes

Work around a regression in Safari 26 that causes fragments of old selections to remain visible.

v6.38.5

Compare Source

Bug fixes

Avoid firing text changes that cover unchanged text on Android.

Fix an issue where the editor could, in some circumstances, insert a stray newline when typing over a document that ended in a block widget.

Work around an issue in Safari 26 that causes inappropriate scrolling on focus in some circumstances.

v6.38.4

Compare Source

Bug fixes

Work around a Chrome Android issue where the browser doesn't properly fire composition end events, leaving CodeMirror to believe the user was still composing.

v6.38.3

Compare Source

Bug fixes

Work around a rendering bug in Mobile Safari by completely hiding empty layers.

Fix vertical cursor motion in Chrome around decorations with bottom borders or margins.

Fix an issue that caused mark decorations longer than 512 characters to needlessly be split.

Move the cursor out of atomic ranges when text input happens.

v6.38.2

Compare Source

Bug fixes

Re-enable falling dispatching keys by key code for Cmd-Alt- combinations on macOS.

Make sure all pointer selections skip atomic ranges.

v6.38.1

Compare Source

Bug fixes

Make the keymap not dispatch Alt key combos on macOS by key code, because those are generally used to type special characters.

Fix a layout bug that could occur with very narrow editors.

v6.38.0

Compare Source

New features

Gutters can now specify that they should be displayed after the content (which would be to the right in a left-to-right layout).

v6.37.2

Compare Source

Bug fixes

Fix an issue where moving the cursor vertically from the one-but-last character on a line would sometimes move incorrectly on Safari.

Fix an issue causing coordinates between lines of text to sometimes be inappropriately placed at the end of the line by posAtCoords.

v6.37.1

Compare Source

Bug fixes

Properly add crelt as a dependency.

v6.37.0

Compare Source

New features

View plugins can now take an argument, in which case they must be instantiated with their of method in order to be added to a configuration.

The new showDialog function makes it easy to show a notification or prompt using a CodeMirror panel.

v6.36.8

Compare Source

Bug fixes

Make logException log errors to the console when onerror returns a falsy value.

Fix an issue in MatchDecorator causing updateDeco to sometimes not do the right thing for deletions.

v6.36.7

Compare Source

Bug fixes

Use the aria-placeholder attribute to communicate the placeholder text to screen readers.

Fix a crash when EditorView.composing or .compositionStarted are accessed during view initialization.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/codemirror branch from c88e44c to 647d524 Compare May 12, 2025 19:56
@renovate renovate bot changed the title fix(deps): update dependency @codemirror/view to v6.36.7 fix(deps): update dependency @codemirror/view to v6.36.8 May 12, 2025
@renovate renovate bot changed the title fix(deps): update dependency @codemirror/view to v6.36.8 fix(deps): update dependency @codemirror/view to v6.37.0 May 29, 2025
@renovate renovate bot force-pushed the renovate/codemirror branch from 647d524 to d0bc4ec Compare May 29, 2025 05:54
@renovate renovate bot changed the title fix(deps): update dependency @codemirror/view to v6.37.0 fix(deps): update dependency @codemirror/view to v6.37.1 May 30, 2025
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from 7c639a8 to 13fc3d0 Compare June 2, 2025 16:20
@renovate renovate bot changed the title fix(deps): update dependency @codemirror/view to v6.37.1 fix(deps): update codemirror to v6.11.1 Jun 2, 2025
@renovate renovate bot force-pushed the renovate/codemirror branch from 13fc3d0 to d8db948 Compare June 12, 2025 16:51
@renovate renovate bot force-pushed the renovate/codemirror branch from d8db948 to 56b0935 Compare June 27, 2025 12:33
@renovate renovate bot changed the title fix(deps): update codemirror to v6.11.1 fix(deps): update codemirror to v6.11.2 Jun 27, 2025
@renovate renovate bot force-pushed the renovate/codemirror branch from 56b0935 to 7aa8840 Compare July 15, 2025 07:44
@renovate renovate bot changed the title fix(deps): update codemirror to v6.11.2 fix(deps): update codemirror to v6.11.3 Aug 15, 2025
@renovate renovate bot force-pushed the renovate/codemirror branch from 7aa8840 to 842a6f3 Compare August 15, 2025 13:54
@renovate renovate bot force-pushed the renovate/codemirror branch from 842a6f3 to 63d2eac Compare September 8, 2025 00:15
@renovate renovate bot force-pushed the renovate/codemirror branch from 63d2eac to 9c4b0dd Compare September 22, 2025 10:30
@renovate renovate bot changed the title fix(deps): update codemirror to v6.11.3 chore(deps): update codemirror to v6.11.3 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/codemirror branch from 9c4b0dd to 5bd2b46 Compare September 28, 2025 20:55
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from b553d72 to 2bd10c9 Compare October 13, 2025 09:02
@renovate renovate bot force-pushed the renovate/codemirror branch from 2bd10c9 to 63581cc Compare October 21, 2025 10:44
@renovate renovate bot force-pushed the renovate/codemirror branch 3 times, most recently from 84b16f6 to ac452bd Compare November 17, 2025 12:42
@renovate renovate bot force-pushed the renovate/codemirror branch from ac452bd to 0bef0aa Compare November 18, 2025 10:50
@renovate renovate bot force-pushed the renovate/codemirror branch 4 times, most recently from 0a1e817 to a666867 Compare December 9, 2025 19:51
@renovate renovate bot force-pushed the renovate/codemirror branch from a666867 to f213979 Compare December 11, 2025 09:55
@renovate renovate bot force-pushed the renovate/codemirror branch from f213979 to 03f1af6 Compare December 12, 2025 10:07
@renovate renovate bot force-pushed the renovate/codemirror branch from 03f1af6 to 126049d Compare December 22, 2025 10:39
@renovate renovate bot changed the title chore(deps): update codemirror to v6.11.3 chore(deps): update codemirror to v6.12.0 Dec 22, 2025
@renovate renovate bot changed the title chore(deps): update codemirror to v6.12.0 chore(deps): update codemirror to v6.12.1 Dec 22, 2025
@renovate renovate bot force-pushed the renovate/codemirror branch 3 times, most recently from 02fecb3 to 9dd423b Compare December 24, 2025 13:36
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from 28c95d3 to 96c0cf1 Compare December 31, 2025 15:31
@renovate renovate bot force-pushed the renovate/codemirror branch 3 times, most recently from 13b597e to fe3c630 Compare January 13, 2026 16:42
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from 7db5968 to 3b0e790 Compare January 19, 2026 14:51
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from c619af6 to 650eb27 Compare February 2, 2026 19:15
@renovate renovate bot force-pushed the renovate/codemirror branch 3 times, most recently from c97b683 to f40e968 Compare February 12, 2026 17:53
@renovate renovate bot force-pushed the renovate/codemirror branch from f40e968 to 83d62c5 Compare February 17, 2026 20:02
@renovate renovate bot force-pushed the renovate/codemirror branch from 83d62c5 to 5190804 Compare February 20, 2026 09:30
@renovate renovate bot changed the title chore(deps): update codemirror to v6.12.1 chore(deps): update codemirror to v6.12.1 - autoclosed Feb 21, 2026
@renovate renovate bot closed this Feb 21, 2026
@renovate renovate bot deleted the renovate/codemirror branch February 21, 2026 10:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants