This repository was archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
chore(deps): update dependency @codemirror/autocomplete to v6 #60
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/codemirror-autocomplete-6.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
bee4eb2 to
9b6f510
Compare
9b6f510 to
296b70a
Compare
296b70a to
d3a44df
Compare
d3a44df to
df2a3fb
Compare
df2a3fb to
5e3d11f
Compare
5e3d11f to
00f6879
Compare
00f6879 to
652a0c3
Compare
652a0c3 to
10a8d8c
Compare
10a8d8c to
ea059b6
Compare
ea059b6 to
64f1c15
Compare
64f1c15 to
23eeb22
Compare
23eeb22 to
55b92f3
Compare
55b92f3 to
17fe41f
Compare
17fe41f to
634c0e0
Compare
634c0e0 to
1481c1b
Compare
1481c1b to
2970156
Compare
2970156 to
3952a5b
Compare
3952a5b to
be82bf9
Compare
be82bf9 to
5fda76e
Compare
5fda76e to
85f259d
Compare
85f259d to
ebd128d
Compare
ebd128d to
a11a9e1
Compare
a11a9e1 to
96f9a9a
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
None yet
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.19.3->6.16.0Release Notes
codemirror/autocomplete (@codemirror/autocomplete)
v6.16.0Compare Source
New features
The new
activateOnCompletionoption allows autocompletion to be configured to chain completion activation for some types of completions.v6.15.0Compare Source
New features
The new
filterStrictoption can be used to turn off fuzzy matching of completions.v6.14.0Compare Source
New features
Completion results can now define a
mapmethod that can be used to adjust position-dependent information for document changes.v6.13.0Compare Source
New features
Completions may now provide 'commit characters' that, when typed, commit the completion before inserting the character.
v6.12.0Compare Source
Bug fixes
Make sure snippet completions also set
userEventtoinput.complete.Fix a crash when the editor lost focus during an update and autocompletion was active.
Fix a crash when using a snippet that has only one field, but multiple instances of that field.
New features
The new
activateOnTypingDelayoption allows control over the debounce time before the completions are queried when the user types.v6.11.1Compare Source
Bug fixes
Fix a bug that caused typing over closed brackets after pressing enter to still not work in many situations.
v6.11.0Compare 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
addToOptionsare now given access to the editor view.v6.10.2Compare Source
Bug fixes
Fix a bug that caused
updateSyncTimeto always delay the initial population of the tooltip.v6.10.1Compare 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.0Compare Source
New features
The new autocompletion configuration option
updateSyncTimeallows control over how long fast sources are held back waiting for slower completion sources.v6.9.2Compare Source
Bug fixes
Fix a bug in
completeAnyWordthat could cause it to generate invalid regular expressions and crash.v6.9.1Compare Source
Bug fixes
Make sure the cursor is scrolled into view after inserting completion text.
Make sure scrolling completions into view doesn't get confused when the tooltip is scaled.
v6.9.0Compare Source
New features
Completions may now provide a
displayLabelproperty that overrides the way they are displayed in the completion list.v6.8.1Compare Source
Bug fixes
acceptCompletionnow returns false (allowing other handlers to take effect) when the completion popup is open but disabled.v6.8.0Compare Source
New features
The result of
Completion.infomay now include adestroymethod that will be called when the tooltip is removed.v6.7.1Compare Source
Bug fixes
Fix a bug that cause incorrect ordering of completions when some results covered input text and others didn't.
v6.7.0Compare Source
New features
The new
hasNextSnippetFieldandhasPrevSnippetFieldfunctions can be used to figure out if the snippet-field-motion commands apply to a given state.v6.6.1Compare Source
Bug fixes
Fix a bug that made the editor use the completion's original position, rather than its current position, when changes happened in the document while a result was active.
v6.6.0Compare Source
Bug fixes
Fix a bug in
insertCompletionTextthat caused it to replace the wrong range when a result set'stofell after the cursor.New features
Functions returned by
snippetcan now be called without a completion object.v6.5.1Compare Source
Bug fixes
Keep completions open when interaction with an info tooltip moves focus out of the editor.
v6.5.0Compare Source
Bug fixes
When
closeBracketsskips a bracket, it now generates a change that overwrites the bracket.Replace the entire selected range when picking a completion with a non-cursor selection active.
New features
Completions can now provide a
sectionfield that is used to group them into sections.The new
positionInfooption can be used to provide custom logic for positioning the info tooltips.v6.4.2Compare Source
Bug fixes
Fix a bug where the apply method created by
snippetdidn't add apickedCompletionannotation to the transactions it created.v6.4.1Compare Source
Bug fixes
Don't consider node names in trees that aren't the same language as the one at the completion position in
ifInandifNotIn.Make sure completions that exactly match the input get a higher score than those that don't (so that even if the latter has a score boost, it ends up lower in the list).
v6.4.0Compare Source
Bug fixes
Fix an issue where the extension would sometimes try to draw a disabled dialog at an outdated position, leading to plugin crashes.
New features
A
tooltipClassoption to autocompletion can now be used to add additional CSS classes to the completion tooltip.v6.3.4Compare Source
Bug fixes
Fix an issue where completion lists could end up being higher than the tooltip they were in.
v6.3.3Compare Source
Bug fixes
Set an explicit
box-sizingstyle on completion icons so CSS resets don't mess them up.Allow closing braces in templates to be escaped with a backslash.
v6.3.2Compare Source
Bug fixes
Fix a regression that could cause the completion dialog to stick around when it should be hidden.
v6.3.1Compare Source
Bug fixes
Fix a regression where transactions for picking a completion (without custom
applymethod) no longer had thepickedCompletionannotation.Reduce flickering for completion sources without
validForinfo by temporarily showing a disabled tooltip while the completion updates.Make sure completion info tooltips are kept within the space provided by the
tooltipSpaceoption.v6.3.0Compare Source
New features
Close bracket configuration now supports a
stringPrefixesproperty that can be used to allow autoclosing of prefixed strings.v6.2.0Compare Source
New features
Autocompletion now takes an
interactionDelayoption that can be used to control the delay between the time where completion opens and the time where commands likeacceptCompletionaffect it.v6.1.1Compare Source
Bug fixes
Fix a bug that prevented transactions produced by
deleteBracketPairfrom being marked as deletion user events.Improve positioning of completion info tooltips so they are less likely to stick out of the screen on small displays.
v6.1.0Compare Source
New features
You can now provide a
compareCompletionsoption to autocompletion to influence the way completions with the same match score are sorted.The
selectOnOpenoption to autocompletion can be used to require explicitly selecting a completion option beforeacceptCompletiondoes anything.v6.0.4Compare Source
Bug fixes
Remove a leftover
console.login bracket closing code.v6.0.3Compare Source
Bug fixes
Fix a bug that caused
closeBracketsto not close quotes when at the end of a syntactic construct that starts with a similar quote.v6.0.2Compare Source
Bug fixes
Declare package dependencies as peer dependencies as an attempt to avoid duplicated package issues.
v6.0.1Compare Source
Bug fixes
Support escaping
${or#{in snippets.v6.0.0Compare Source
Bug fixes
Scroll the cursor into view when inserting a snippet.
v0.20.3Compare Source
Bug fixes
Add an aria-label to the completion listbox.
Fix a regression that caused transactions generated for completion to not have a
userEventannotation.v0.20.2Compare Source
New features
The package now exports an
insertCompletionTexthelper that implements the default behavior for applying a completion.v0.20.1Compare Source
New features
The new
closeOnBluroption determines whether the completion tooltip is closed when the editor loses focus.CompletionResultobjects withfilter: falsemay now have agetMatchproperty that determines the matched range in the options.v0.20.0Compare Source
Breaking changes
CompletionResult.spanhas been renamed tovalidFor, and may now hold a function as well as a regular expression.Bug fixes
Remove code that dropped any options beyond the 300th one when matching and sorting option lists.
Completion will now apply to all cursors when there are multiple cursors.
New features
CompletionResult.updatecan now be used to implement quick autocompletion updates in a synchronous way.The @codemirror/closebrackets package was merged into this one.
v0.19.15Compare Source
New features
The
selectedCompletionIndexfunction tells you the position of the currently selected completion.The new
setSelectionCompletionfunction creates a state effect that moves the selected completion to a given index.A completion's
infomethod may now return null to indicate that no further info is available.v0.19.14Compare Source
Bug fixes
Make the ARIA attributes added to the editor during autocompletion spec-compliant.
v0.19.13Compare Source
Bug fixes
Fix an issue where the completion tooltip stayed open if it was explicitly opened and the user backspaced past its start.
Stop snippet filling when a change happens across one of the snippet fields' boundaries.
v0.19.12Compare Source
Bug fixes
Fix completion navigation with PageUp/Down when the completion tooltip isn't part of the view DOM.
v0.19.11Compare Source
Bug fixes
Fix a bug that caused page up/down to only move the selection by two options in the completion tooltip.
v0.19.10Compare Source
Bug fixes
Make sure the info tooltip is hidden when the selected option is scrolled out of view.
Fix a bug in the completion ranking that would sometimes give options that match the input by word start chars higher scores than appropriate.
Options are now sorted (ascending) by length when their match score is otherwise identical.
v0.19.9Compare Source
Bug fixes
Fix an issue where info tooltips would be visible in an inappropriate position when there was no room to place them properly.
v0.19.8Compare Source
Bug fixes
Give the completion tooltip a minimal width, and show ellipsis when completions overflow the tooltip width.
New features
autocompletionnow accepts anaboveCursoroption to make the completion tooltip show up above the cursor.v0.19.7Compare Source
Bug fixes
Make option deduplication less aggressive, so that options with different
typeorapplyfields don't get merged.v0.19.6Compare Source
Bug fixes
Fix an issue where parsing a snippet with a field that was labeled only by a number crashed.
v0.19.5Compare Source
Bug fixes
Make sure info tooltips don't stick out of the bottom of the page.
New features
The package exports a new function
selectedCompletion, which can be used to find out which completion is currently selected.Transactions created by picking a completion now have an annotation (
pickedCompletion) holding the original completion.v0.19.4Compare Source
Bug fixes
Don't rely on the platform's highlight colors for the active completion, since those are inconsistent and may not be appropriate for the theme.
Fix incorrect match underline for some kinds of matched completions.
Configuration
📅 Schedule: Branch creation - "before 3am on Monday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.