Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

fix(deps): update codemirror #636

Closed
wants to merge 3 commits into from
Closed

fix(deps): update codemirror #636

wants to merge 3 commits into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 8, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@codemirror/autocomplete 6.9.1 -> 6.11.1 age adoption passing confidence
@codemirror/commands 6.3.0 -> 6.3.3 age adoption passing confidence
@codemirror/language 6.9.1 -> 6.10.0 age adoption passing confidence
@codemirror/search 6.5.4 -> 6.5.5 age adoption passing confidence
@codemirror/state 6.2.1 -> 6.4.0 age adoption passing confidence
@codemirror/view 6.21.2 -> 6.23.0 age adoption passing confidence

Release Notes

codemirror/autocomplete (@​codemirror/autocomplete)

v6.11.1

Compare Source

Bug fixes

Fix a bug that caused typing over closed brackets after pressing enter to still not work in many situations.

v6.11.0

Compare Source

Bug fixes

Fix an issue that would prevent typing over closed brackets after starting a new line with enter.

New features

Additional elements rendered in completion options with addToOptions are now given access to the editor view.

v6.10.2

Compare Source

Bug fixes

Fix a bug that caused updateSyncTime to always delay the initial population of the tooltip.

v6.10.1

Compare Source

Bug fixes

Fix a bug where picking a selection with the mouse could use the wrong completion if the completion list was updated after being opened.

v6.10.0

Compare Source

New features

The new autocompletion configuration option updateSyncTime allows control over how long fast sources are held back waiting for slower completion sources.

v6.9.2

Compare Source

Bug fixes

Fix a bug in completeAnyWord that could cause it to generate invalid regular expressions and crash.

codemirror/commands (@​codemirror/commands)

v6.3.3

Compare Source

Bug fixes

Fix an issue causing cursor motion commands to not dispatch a transaction when the change only affects cursor associativity.

v6.3.2

Compare Source

Bug fixes

Fix a regression that caused deleteCharBackward to sometimes delete a large chunk of text.

v6.3.1

Compare Source

Bug fixes

When undoing, store the selection after the undone change with the redo event, so that redoing restores it.

deleteCharBackward will no longer delete variant selector characters as separate characters.

codemirror/language (@​codemirror/language)

v6.10.0

Compare Source

New features

The new bidiIsolates extension can be used to wrap syntactic elements where this is appropriate in an element that isolates their text direction, avoiding weird ordering of neutral characters on direction boundaries.

v6.9.3

Compare Source

Bug fixes

Fix an issue in StreamLanguage where it ran out of node type ids if you repeatedly redefined a language with the same token table.

v6.9.2

Compare Source

Bug fixes

Allow StreamParser tokens get multiple highlighting tags.

codemirror/search (@​codemirror/search)

v6.5.5

Compare Source

Bug fixes

Fix a bug that caused codes like \n to be unescaped in strings inserted via replace placeholders like $&.

Use the keybinding Mod-Alt-g for gotoLine to the search keymap, to make it usable for people whose keyboard layout uses Alt/Option-g to type some character.

codemirror/state (@​codemirror/state)

v6.4.0

Compare Source

Bug fixes

When multiple ranges in a single range set overlap, put the smaller ones inside the bigger ones, so that overlapping decorations don't break up each other's elements when coming from the same source.

New features

Selection and selection range eq methods now support an optional argument that makes them also compare by cursor associativity.

The RangeSet.join function can be used to join multiple range sets together.

v6.3.3

Compare Source

Bug fixes

Fix an issue where Text.slice and Text.replace could return objects with incorrect length when the given from/to values were out of range for the text.

v6.3.2

Compare Source

Bug fixes

Make sure transactions cannot add multiple selections when allowMultipleSelections is false.

Fix a bug that caused Text.iterLines to not return empty lines at the end of the iterated ranges.

v6.3.1

Compare Source

Bug fixes

Give the tag property on FacetReader the type of the output type parameter to force TypeScript to infer the proper type when converting from Facet to FacetReader.

v6.3.0

Compare Source

New features

The new FacetReader type provides a way to export a read-only handle to a Facet.

codemirror/view (@​codemirror/view)

v6.23.0

Compare Source

Bug fixes

Work around odd iOS Safari behavior when doing select all.

Fix a composition interruption when an widget is inserted next to the cursor.

Fix a crash in bidirectional cursor motion.

Simplify visual motion through bidirectional text, fix several corner cases where it would work badly.

Fix a bug that broke some bidi isolates not on the first line of the document.

New features

EditorView.bidiIsolatedRanges now supports automatically determining the direction of the range if not provided by the decoration.

EditorView.visualLineSide can be used to find the visual end or start of a line with bidirectional text.

The new EditorView.outerDecorations facet can be used to provide decorations that should always be at the bottom of the precedence stack.

v6.22.3

Compare Source

Bug fixes

Fix a bug that could cause tooltips to be unnecessarily be positioned absolutely.

Make sure that, when an editor creates tooltips immediately on initialization, the editor is attached to the document when their mount callback is called.

v6.22.2

Compare Source

Bug fixes

Fix an issue in the bidirectional motion that could cause the cursor to get stuck in a loop when a zero-width non-joiner char was placed on a direction boundary.

Fix a bug that corrupts the editor's internal view tree data structure on some types of edits, putting the editor in a broken state.

v6.22.1

Compare Source

Bug fixes

Call widget destroy methods when the entire editor is destroyed or reset.

Work around an issue on Safari on macOS Sonoma that made the native cursor visible even when drawSelection is enabled.

Fix an issue where, on some browsers, the screenreader announced text ended up in the printed document.

Fix a bug where a hover tooltip could stick around even though the pointer was no longer on the editor when it was moved out over the tooltip.

Fix an issue where hover tooltips could close when moving the mouse onto them due to mouse position rounding issues.

v6.22.0

Compare Source

Bug fixes

Exceptions raised by update listeners are now routed to the configured exception sink, if any.

Fix an issue where passing large scroll margins to scrollIntoView would cause the measure loop to fail to terminate.

Widgets that are draggable (and allow drag events through in their ignoreEvent implementation) can now use the editor's built-in drag/drop behavior.

New features

The new scrollTo option to EditorView allows an initial scroll position to be provided.

The new EditorView.scrollSnapshot method returns an effect that can be used to reset to a previous scroll position.

v6.21.4

Compare Source

Bug fixes

Support the offset, getCoords, overlap, and resize properties on hover tooltips, as long as they aren't given conflicting values when there are multiple active hover tooltips.

Fix a bug that caused tooltips in the default configuration to be positioned incorrectly on Chrome when the editor was transformed.

v6.21.3

Compare Source

Bug fixes

Fix an issue that caused coordsForChar to return the wrong rectangle for characters after a line wrap in Safari.

Make the context menu work when clicking below the content in a fixed-height editor.

Tooltips that have been put below/above their target position because there is no room on their default side now stay there on further updates.


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Mend Renovate. View repository job log here.

@netlify
Copy link

netlify bot commented Mar 8, 2023

Deploy Preview for staticjscms ready!

Name Link
🔨 Latest commit 7c99960
🔍 Latest deploy log https://app.netlify.com/sites/staticjscms/deploys/6595c9e5486baa00081692a9
😎 Deploy Preview https://deploy-preview-636.staticcms.org
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@netlify
Copy link

netlify bot commented Mar 8, 2023

Deploy Preview for demo-staticjscms ready!

Name Link
🔨 Latest commit 7c99960
🔍 Latest deploy log https://app.netlify.com/sites/demo-staticjscms/deploys/6595c9e55ad5dd00085754c0
😎 Deploy Preview https://deploy-preview-636.demo.staticcms.org
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@codecov
Copy link

codecov bot commented Mar 8, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (a97d4ea) 55.87% compared to head (7c99960) 55.87%.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #636   +/-   ##
=======================================
  Coverage   55.87%   55.87%           
=======================================
  Files         259      259           
  Lines       12314    12314           
  Branches     3089     3089           
=======================================
  Hits         6880     6880           
  Misses       5027     5027           
  Partials      407      407           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/codemirror branch from 1940808 to 1e72c32 Compare March 10, 2023 16:34
@renovate renovate bot changed the title fix(deps): update dependency @codemirror/view to v6.9.2 fix(deps): update codemirror Mar 10, 2023
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from 4323756 to 48a6160 Compare March 21, 2023 11:16
@renovate renovate bot force-pushed the renovate/codemirror branch from 48a6160 to eb578cf Compare March 28, 2023 10:48
@renovate renovate bot force-pushed the renovate/codemirror branch 5 times, most recently from d0647cb to 24b9635 Compare April 17, 2023 16:21
@renovate renovate bot force-pushed the renovate/codemirror branch 4 times, most recently from 73ee0c3 to a866b58 Compare April 21, 2023 03:28
@renovate renovate bot changed the title fix(deps): update codemirror fix(deps): update codemirror - autoclosed Apr 21, 2023
@renovate renovate bot closed this Apr 21, 2023
@renovate renovate bot deleted the renovate/codemirror branch April 21, 2023 04:21
@renovate renovate bot changed the title fix(deps): update codemirror - autoclosed fix(deps): update codemirror Apr 22, 2023
@renovate renovate bot reopened this Apr 22, 2023
@renovate renovate bot restored the renovate/codemirror branch April 22, 2023 02:40
@renovate renovate bot changed the title fix(deps): update codemirror fix(deps): update dependency @codemirror/view to v6.9.6 Apr 22, 2023
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from 57d7b03 to f9963c8 Compare April 25, 2023 12:25
@renovate renovate bot changed the title fix(deps): update dependency @codemirror/view to v6.9.6 fix(deps): update codemirror Apr 25, 2023
@renovate renovate bot force-pushed the renovate/codemirror branch from f9963c8 to 2282373 Compare April 27, 2023 12:21
@renovate renovate bot force-pushed the renovate/codemirror branch 4 times, most recently from f6652e9 to 3f8b998 Compare September 25, 2023 10:03
@renovate renovate bot force-pushed the renovate/codemirror branch 4 times, most recently from ad2dc79 to 4fa3f21 Compare October 6, 2023 15:19
@renovate renovate bot force-pushed the renovate/codemirror branch 4 times, most recently from e6a04c3 to b3f0e08 Compare October 13, 2023 07:11
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from 3df33d1 to 01dd7dd Compare October 24, 2023 11:22
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from 6edec54 to 4c65b14 Compare November 3, 2023 13:09
@renovate renovate bot force-pushed the renovate/codemirror branch from 4c65b14 to 2bf224f Compare November 9, 2023 12:34
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from 7da91c8 to 9bbf9fa Compare November 30, 2023 16:12
@renovate renovate bot force-pushed the renovate/codemirror branch 2 times, most recently from cd9a94f to 02c280a Compare December 8, 2023 21:12
@renovate renovate bot force-pushed the renovate/codemirror branch from 02c280a to 2622015 Compare December 13, 2023 14:03
@renovate renovate bot force-pushed the renovate/codemirror branch from 2622015 to 86016d6 Compare December 28, 2023 20:01
@renovate renovate bot force-pushed the renovate/codemirror branch from 86016d6 to 4c2c8d2 Compare January 3, 2024 20:17
Copy link
Contributor Author

renovate bot commented Jan 3, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@KaneFreeman KaneFreeman closed this Jan 3, 2024
@KaneFreeman KaneFreeman deleted the renovate/codemirror branch January 3, 2024 21:16
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant