fix(dependencies): update codemirror editor packages to v6#333
Open
renovate[bot] wants to merge 1 commit into
Open
fix(dependencies): update codemirror editor packages to v6#333renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
fc19f05 to
35927ed
Compare
4e07b1b to
e0beb61
Compare
e0beb61 to
37c0877
Compare
37c0877 to
2eaf8c2
Compare
2eaf8c2 to
b8e691c
Compare
b8e691c to
d6fb9e4
Compare
d6fb9e4 to
2ff870f
Compare
5ae2949 to
e5a0508
Compare
c2eaf4d to
8cdd2fb
Compare
b3bdc4b to
5768d8f
Compare
797f8e0 to
5393921
Compare
5393921 to
182f531
Compare
b9d3b0a to
3a32ef7
Compare
3a32ef7 to
c54a92e
Compare
178a337 to
acf8a01
Compare
3babe9f to
5233c9c
Compare
5233c9c to
8a0b8bb
Compare
8a0b8bb to
b0134e2
Compare
b0134e2 to
c8b29d8
Compare
c8b29d8 to
b982d42
Compare
b7e7393 to
e8a2b3e
Compare
9f8addd to
d292426
Compare
d292426 to
e4d29d8
Compare
e4d29d8 to
b4a9424
Compare
b4a9424 to
4e5d5e3
Compare
4e5d5e3 to
d7cce3f
Compare
d7cce3f to
4504a27
Compare
4504a27 to
3df2747
Compare
3df2747 to
856eff1
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.8→^6.0.0^0.19.7→^6.0.0^0.19.2→^6.0.0^0.19.6→^6.0.0^0.19.5→^6.0.0^0.19.4→^6.0.0^0.19.2→^6.0.0^0.19.1→^6.0.0^0.19.9→^6.0.0Release Notes
codemirror/commands (@codemirror/commands)
v6.10.3Compare Source
Bug fixes
Make sure selection-extending commands preserve the associativity of the selection head.
v6.10.2Compare Source
Bug fixes
Move the selection to a less surprising place when undoing, moving the selection, redoing, then undoing again.
v6.10.1Compare Source
Bug fixes
Fix a bug where
copyLineDownwould leave the cursor on the wrong line when it was at the start of the line.v6.10.0Compare Source
New features
The new
deleteGroupForwardWincommand provides by-group forward deletion using the Windows convention.v6.9.0Compare Source
Bug fixes
Prevent the default behavior of backspace and delete keys, to prevent the browser from doing anything creative when there's nothing to delete.
New features
Implement new
addCursorAboveandaddCursorBelowcommands. Bind them to Mod-Alt-ArrowUp/Down in the default keymap.v6.8.1Compare Source
Bug fixes
Fix an issue where creating a comment for a line that starts an inner language would use the comment style from the outer language.
v6.8.0Compare Source
New features
The new
cursorGroupForwardWinandselectGroupForwardWincommands implement Windows-style forward motion by group.v6.7.1Compare Source
Bug fixes
Change
toggleBlockCommentByLineto not affect lines with the selection end right at their start.v6.7.0Compare Source
Bug fixes
Bind Shift-Enter to the same command as Enter in the default keymap, so that it doesn't do nothing when on an EditContext-supporting browser.
New features
Add commands for by-string-index cursor motion that ignores text direction.
v6.6.2Compare Source
Bug fixes
Fix an issue causing
selectParentSyntaxto not select syntax that is a direct child of the top node.Make
selectParentSyntaxreturn false when it doesn't change the selection.v6.6.1Compare Source
Bug fixes
Fix a bug in the undo history that would cause it to incorrectly track inverted effects when adding multiple edits to a single history event.
v6.6.0Compare Source
New features
The new
toggleTabFocusModeandtemporarilySetTabFocusModecommands provide control over the view's tab-focus mode.The default keymap now binds Ctrl-m (Shift-Alt-m on macOS) to
toggleTabFocusMode.v6.5.0Compare Source
New features
The
insertNewlineKeepIndentcommand inserts a newline along with the same indentation as the line before.v6.4.0Compare Source
Bug fixes
Fix an issue where
deleteLinesometimes leaves the cursor on the wrong line.New features
The new
deleteCharBackwardStrictcommand just deletes a character, without further smart behavior around indentation.v6.3.3Compare Source
Bug fixes
Fix an issue causing cursor motion commands to not dispatch a transaction when the change only affects cursor associativity.
v6.3.2Compare Source
Bug fixes
Fix a regression that caused
deleteCharBackwardto sometimes delete a large chunk of text.v6.3.1Compare Source
Bug fixes
When undoing, store the selection after the undone change with the redo event, so that redoing restores it.
deleteCharBackwardwill no longer delete variant selector characters as separate characters.v6.3.0Compare Source
Bug fixes
Make it possible for
selectParentSyntaxto jump out of or into a syntax tree overlay.Make Cmd-Backspace and Cmd-Delete on macOS delete to the next line wrap point, not the start/end of the line.
New features
The new
deleteLineBoundaryForwardanddeleteLineBoundaryBackwardcommands delete to the start/end of the line or the next line wrapping point.v6.2.5Compare Source
Bug fixes
Make
insertNewlineAndIndentproperly count indentation for tabs when copying over the previous line's indentation.The various sub-word motion commands will now use
Intl.Segmenter, when available, to stop at CJK language word boundaries.Fix a bug in
insertNewlineAndIndentthat would delete text between brackets if it had no corresponding AST node.v6.2.4Compare Source
Bug fixes
The by-subword motion commands now properly treat dashes, underscores, and similar as subword separators.
v6.2.3Compare Source
Bug fixes
Block commenting the selection no longer includes indentation on the first line.
v6.2.2Compare Source
Bug fixes
Fix a bug where line commenting got confused when commenting a range that crossed language boundaries.
v6.2.1Compare Source
Bug fixes
Keep cursor position stable in
cursorPageUp/cursorPageDownwhen there are panels or other scroll margins active.Make sure
toggleCommentdoesn't get thrown off by local language nesting, by fetching the language data for the start of the selection line.v6.2.0Compare Source
New features
The new
joinToEventhistory configuration option allows you to provide custom logic that determines whether a new transaction is added to an existing history event.v6.1.3Compare Source
Bug fixes
Preserve selection bidi level when extending the selection, to prevent shift-selection from getting stuck in some kinds of bidirectional text.
v6.1.2Compare Source
Bug fixes
Fix a bug that caused deletion commands on non-empty ranges to incorrectly return false and do nothing, causing the editor to fall back to native behavior.
v6.1.1Compare Source
Bug fixes
Make sure the selection endpoints are moved out of atomic ranges when applying a deletion command to a non-empty selection.
v6.1.0Compare Source
Bug fixes
Prevent native behavior on Ctrl/Cmd-ArrowLeft/ArrowRight bindings, so that browsers with odd bidi behavior won't do the wrong thing at start/end of line.
Cmd-ArrowLeft/Right on macOS now moves the cursor in the direction of the arrow even in right-to-left content.
New features
The new
cursorLineBoundaryLeft/RightandselectLineBoundaryLeft/Rightcommands allow directional motion to line boundaries.v6.0.1Compare Source
Bug fixes
Announce to the screen reader when the selection is deleted.
Also bind Ctrl-Shift-z to redo on Linux.
v6.0.0Compare Source
Bug fixes
Fix a bug where by-page selection commands sometimes moved one line too far.
v0.20.0Compare Source
Breaking changes
There is no longer a separate
commentKeymap. Those bindings are now part ofdefaultKeymap.Bug fixes
Make
cursorPageUpandcursorPageDownmove by window height when the editor is higher than the window.Make sure the default behavior of Home/End is prevented, since it could produce unexpected results on macOS.
New features
The exports from @codemirror/comment are now available in this package.
The exports from the @codemirror/history package are now available from this package.
codemirror/lang-javascript (@codemirror/lang-javascript)
v6.2.5Compare Source
Bug fixes
Support code folding of JSX elements and tags.
When reading properties in
scopeCompletionSource, use the original object, not a prototype.v6.2.4Compare Source
Bug fixes
Fix a crash in the
esLinthelper when a rule'smeta.docsisn't defined.Properly dedent lines starting with an opening curly brace below composite statements like
for/while.v6.2.3Compare Source
Bug fixes
Disable JavaScript completions in JSX context.
v6.2.2Compare Source
Bug fixes
Fix a bug that would cause self-closing JSX tags to have another closing tag inserted when typing the final '>'.
v6.2.1Compare Source
Bug fixes
autoCloseTagsnow generates two separate transactions, so that the completion can be undone separately.v6.2.0Compare Source
New features
Export a
typescriptSnippetsarray and include TypeScript keyword completions in the default support extension when in TypeScript mode.v6.1.9Compare Source
Bug fixes
Make sure
scopeCompletionSourcedoesn't try to complete property names that aren't simple identifier (such as numeric indices).v6.1.8Compare Source
Bug fixes
Stop completing keywords after
.tokens.v6.1.7Compare Source
Bug fixes
Fix overeager JSX tag closing inside attribute values and in self-closing tags.
v6.1.6Compare Source
Bug fixes
Fix a bug that allowed
autoCloseTagsto close JSX tags in JavaScript context.v6.1.5Compare Source
Bug fixes
Make TypeScript object type syntax foldable.
v6.1.4Compare Source
Bug fixes
Make sure code in JSX context can be commented correctly.
v6.1.3Compare Source
Bug fixes
Fix auto-closing of JSX fragments.
v6.1.2Compare Source
Bug fixes
Automatic tag closing in JSX now works for namespaced and member-expression tag names.
v6.1.1Compare Source
Bug fixes
Make
completionPathhandle?.syntax.v6.1.0Compare Source
New features
The
completionPathhelper can now be used to find the object path to complete at a given position.scopeCompletionSourceprovides a completion source based on a scope object.v6.0.2Compare Source
Bug fixes
Fix the
sourcefield in ESLint diagnostics to properly hold"eslint".Fix (non-)auto indentation in template strings and comments.
v6.0.1Compare Source
Bug fixes
Avoid completing variables/keywords in property or definition positions.
Fix a bug that broke local variable completion if JavaScript was parsed an overlay in an outer language.
v6.0.0Compare Source
Breaking changes
Update dependencies to 6.0.0
v0.20.1Compare Source
New features
localCompletionSource(included in the support extensions returned fromjavascript) now provides a way to complete locally-defined names.v0.20.0Compare Source
New features
The new
autoCloseTagsextension (included by default in thejavascriptlanguage extension whenjsxis configured) finishes JSX closing tags when you type a>or/character.codemirror/lang-json (@codemirror/lang-json)
v6.0.2Compare Source
Bug fixes
Add a .d.cts file to make TypeScript happy.
v6.0.1Compare Source
Bug fixes
Make sure the language object has a name.
v6.0.0Compare Source
Breaking changes
Update dependencies to 6.0.0
v0.20.0Compare Source
Breaking changes
Update dependencies to 0.20.0
codemirror/lang-markdown (@codemirror/lang-markdown)
v6.5.0Compare Source
New features
Add a variant of
insertNewlineContinueMarkupthat supports configuration options.v6.4.0Compare Source
New features
The new
pasteURLAsLinkextension allows you to paste URLs over a selection to quickly create a link.v6.3.4Compare Source
Bug fixes
Make sure header-based indentation is available even when Markdown isn't the editor's top-level language.
v6.3.3Compare Source
Bug fixes
Make
insertNewlineContinueMarkuptake effect even when at the end of a nested range of Markdown content.v6.3.2Compare Source
Bug fixes
Make Markdown-specific commands return false inside fenced code.
Fix an infinite loop caused by
insertNewlineContinueMarkup.v6.3.1Compare Source
Bug fixes
Fix an issue where
insertNewlineContinueMarkupdidn't work with the cursor directly after an HTML tag.v6.3.0Compare Source
New features
The new
htmlTagLanguageoption allows client code to configure which language is used to parse HTML tags in the document.v6.2.5Compare Source
Bug fixes
Disable folding for list nodes (since it will shadow the folding on the first list item).
v6.2.4Compare Source
Bug fixes
Starting at the third list item,
insertNewlineContinueMarkupwill now keep the tightness of the list, and only require two presses to clear an empty list item.v6.2.3Compare Source
Bug fixes
Support code folding for GFM tables.
v6.2.2Compare Source
Bug fixes
Fix a bug in
insertNewlineContinueMarkupthat caused it to put the cursor in the wrong place when the editor's line break was more than one character long.v6.2.1Compare Source
Bug fixes
Make
insertNewlineContinueMarkupanddeleteMarkupBackwarduse tabs for indentation when appropriate.v6.2.0Compare Source
New features
The markdown package now installs a completion source that completes HTML tags when in Markdown context.
v6.1.1Compare Source
Bug fixes
Fix the declaration of
comentTokenslanguage data for Markdown.Fix a bug in
deleteMarkupBackwardthat would cause it to delete pieces of continued paragraphs below list item markers.v6.1.0Compare Source
New features
Add support for folding entire sections from the header.
v6.0.5Compare Source
Bug fixes
Make sure task lists are indented correctly even when deeply nested.
v6.0.4Compare Source
Bug fixes
Fix an issue where nested task lists were indented too deeply.
v6.0.3Compare Source
Bug fixes
Add a
namevalue to the Markdown language object.v6.0.2Compare Source
Bug fixes
Improve
insertNewlineContinueMarkup's behavior in a fenced code block.v6.0.1Compare Source
Bug fixes
Ignore text after whitespace in code block metadata, when determining which language the block is.
v6.0.0Compare Source
Breaking changes
Update dependencies to 6.0.0
v0.20.1Compare Source
New features
The
codeLanguagesoption tomarkdownmay now be a function from an info string to a language.v0.20.0Compare Source
New features
insertNewlineContinueMarkupcan now continue task lists. Move highlighting information into @lezer/markdowncodemirror/lang-python (@codemirror/lang-python)
v6.2.1Compare Source
Bug fixes
Fix an issue where the indentation logic would too eagerly align lines to the body directly above them.
v6.2.0Compare Source
Bug fixes
Add an indentation rule for member expressions.
New features
Allow multi-line strings to be code-folded.
v6.1.7Compare Source
Bug fixes
Properly indent match/case statements.
v6.1.6Compare Source
Bug fixes
Improve the way indentation for the current body is preserved when inenting new lines.
v6.1.5Compare Source
Bug fixes
Properly indent
else:when attached to afororwhilestatement.v6.1.4Compare Source
Bug fixes
Explicitly declare dependencies on @lezer/common and @codemirror/state
v6.1.3Compare Source
Bug fixes
Fix a bug where blocks started after a wrapped argument list or similar construct were indented too far.
v6.1.2Compare Source
Bug fixes
Don't indent lines after a dedented comment line.
v6.1.1Compare Source
Bug fixes
Remove leftover log statements.
v6.1.0Compare Source
New features
The
globalCompletioncompletion source (included in the language support returned frompython()) completes standard Python globals and keywords.Export a
localCompletionSourcefunction that completes locally defined variables. Included in the support extensions returned frompython().v6.0.4Compare Source
Bug fixes
Make sure the language object has a name.
v6.0.3Compare Source
Bug fixes
Add proper indentation handling of
elseclauses intrystatements.v6.0.2Compare Source
Bug fixes
Allow prefixed strings to be closed by
closeBrackets.v6.0.1Compare Source
Bug fixes
Fix (non-)auto indentation in template strings and comments.
v6.0.0Compare Source
Breaking changes
Update dependencies to 6.0.0
v0.20.0Compare Source
Bug fixes
Add folding information for set and tuple expressions.
codemirror/lang-sql (@codemirror/lang-sql)
v6.10.0Compare Source
New features
Allow
[inidentifierQuotesfor MSSQL-style bracketed identifiers.v6.9.1Compare Source
Bug fixes
Include more MSSQL keyboards and builtins in the completions.
Allow built-in special variables for a dialect to be completed.
v6.9.0Compare Source
New features
The new
SQLDialect.configureLanguagemethod can be used to configure the language (and it's syntax node props) used by a dialect.v6.8.0Compare Source
New features
The new
keywordCompletionoption can be used to define what kind of completions are generated for keywords.v6.7.1Compare Source
Bug fixes
Remove single-letter words from the list of Postgres keywords, since they interfere with alias-based autocompletion.
v6.7.0Compare Source
New features
Dialects can now disable quoting of identifiers containing upper-case characters with the
caseInsensitiveIdentifiersoption.v6.6.5Compare Source
Bug fixes
Fix a bug that broke tokenizing of
e'\n'-style strings.v6.6.4Compare Source
Bug fixes
Make statement folding leave the entire first line visible.
Fix a null dereference in schema-based autocompletion.
v6.6.3Compare Source
Bug fixes
Fix a bug where Postgres-style dollar-quoted strings were enabled for all dialects, and the
doubleDollarQuotedStringsoptions was ignored.v6.6.2Compare Source
Bug fixes
Properly support tags in PostgreSQL
4073quoted strings.v6.6.1Compare Source
Bug fixes
Fix an issue that caused completions to be missing when using the
defaultSchemaoption.v6.6.0Compare Source
Bug fixes
Don't tokenize identifiers after periods as anything but plain identifiers.
New features
The
schemaoption now allows nested objects to define multiple levels of completions, as well asselfcompletion options for specific levels. The old format (usingtables/schemas) continues to work but is deprecated.v6.5.5Compare Source
Bug fixes
Make sure table and column completions with upper-case characters are quoted.
Tag comments and strings as isolating for the purpose of bidirectional text.
v6.5.4Compare Source
Bug fixes
Remove use of negative lookbehind in a regular expression, which recent versions of Safari still don't support.
v6.5.3Compare Source
Bug fixes
The PL/SQL dialect now correctly handles
q'[]'-quoting syntax.v6.5.2Compare Source
Bug fixes
Allow table names to contain multiple dots in the schema passed to
schemaCompletionSource.v6.5.1Compare Source
Bug fixes
schemaCompletionSourcenow adds quotes around non-word identifiers even if the user didn't type a starting quote.v6.5.0Compare Source
New features
Dialect objects now have a public
specproperty holding their configuration.v6.4.1Compare Source
Bug fixes
Fix a bug where tokenizing of block comments got confused when nested comment start/end markers appeared directly next to each other.
v6.4.0Compare Source
Bug fixes
Fix syntax tree node names for curly and square brackets, which had their names swapped.
New features
The new
schemasconfig option can be used to provide custom completion objects for schema completions.v6.3.3Compare Source
Bug fixes
Fix tokenizing of double-
$strings in SQL dialects that support them.v6.3.2Compare Source
Bug fixes
Make sure the language object has a name.
v6.3.1Compare Source
Bug fixes
Fix tokenizing of
--line comments.v6.3.0Compare Source
New features
Schema-based completion now understands basic table alias syntax, and will take it into account when looking up completions.
v6.2.0Compare Source
New features
The new
unquotedBitLiteralsdialect option controls whether0b01syntax is recognized.Dialects now allow a
treatBitsAsBytesoption to allow any characters inside quoted strings prefixed withb.v6.1.0Compare Source
New features
The new
doubleDollarQuotedStringsoptions to SQL dialects allows parsing of text delimited by$$as strings. Regenerate readmev6.0.0Compare Source
Breaking changes
Update dependencies to 6.0.0
v0.20.4Compare Source
New features
Schema completion descriptions may now include dots in table names to indicate nested schemas.
v0.20.3Compare Source
Bug fixes
Fix a bug where the slash at the end of block comments wasn't considered part of the comment token.
v0.20.2Compare Source
Bug fixes
Fix an infinite recursion bug in
schemaCompletionSource.v0.20.1Compare Source
Breaking changes
The
schemaCompletionandkeywordCompletionexports, which returned extensions, have been replaced withschemaCompletionSourceandkeywordCompletionSource, which return completion sources. The old exports will remain available until the next major version.v0.20.0Compare Source
Bug fixes
Fix autocompletion on columns when the table name is written with upper-case letters. Move to @lezer/highlight
codemirror/lang-xml (@codemirror/lang-xml)
v6.1.0Compare Source
New features
Add an
autoCloseTagsextension that closes tags on typing > or /. Enable it by default in thexml()language support.v6.0.2Compare Source
Bug fixes
Use only the tag name for matching of opening and closing tags.
v6.0.1Compare Source
Bug fixes
Make sure the language object has a name.
v6.0.0Compare Source
Breaking changes
Update dependencies to 6.0.0
v0.20.0Compare Source
Breaking changes
Update dependencies to 0.20.0
codemirror/legacy-modes (@codemirror/legacy-modes)
v6.5.2Compare Source
Bug fixes
Properly tokenize multi-line strings in TOML mode.
Properly declare comment syntax metadata for the Q language.
v6.5.1Compare Source
Bug fixes
Fix a crash in the Stylus mode's indentation logic.
v6.5.0Compare Source
New features
Simple modes can now include a
mergeTokensoption in their language data to disable token merging.v6.4.3Compare Source
Bug fixes
Make Pascal keyword matching case-insensitive.
Fix a crash in simple-mode.js when using the
dontIndentStatesfeature.Fix a bug in tokenizing multiline strings in xQuery.
v6.4.2Compare Source
Bug fixes
Fix an issue in the Groovy mode where interpolated variable style would continue after whitespace.
Add support for underscore separators in numbers in the Dart mode.
v6.4.1Compare Source
Bug fixes
Stop treating closing brackets as brackets in the Common Lisp mode.
Fix a bug where the Stylus mode would crash when queried for indentation.
v6.4.0Compare Source
Bug fixes
Only match Solr operator words when they are upper-case.
Fix an infinite loop when tokenizing heredoc strings in the Crystal mode.
New features
Add the old Pug mode.
v6.3.3Compare Source
Bug fixes
In Shell mode, don't allow spaces in heredoc tokens.
v6.3.2Compare Source
Bug fixes
Fix tokenizing of character literals in the Scala mode.
v6.3.1Compare Source
Bug fixes
In JavaScript, properly parse keywords like
staticwhen in front of a private property.v6.3.0Compare Source
New features
Add the old PegJS mode.
v6.2.0Compare Source
Bug fixes
Include type declarations for mode/simple-mode.js.
New features
Include a name for each mode in the stream parser objects.
v6.1.0Compare Source
Bug fixes
Add structured concurrency keywords to the Swift mode. Update readme to follow interface changes
New features
Adds the Sass mode from CodeMirror 5.
v6.0.0Compare Source
Bug fixes
Add line comment syntax metadata to the Toml mode.
v0.20.0Compare Source
Breaking changes
Update dependencies to 0.20.0
codemirror/state (@codemirror/state)
v6.6.0Compare Source
New features
EditorSelection.rangenow takes an optionalassocargument.SelectionRange.extendcan now be given a third argument to specify associativity.v6.5.4Compare Source
Bug fixes
Make
SelectionRange.eqreturn false when the ranges have different goal columns.v6.5.3Compare Source
Bug fixes
Fix an issue where
RangeValue.eqcould get called with a value of a different class.EditorState.charCategorizernow only uses the highest-precedence set of word characters from the language data, to allow overriding these.v6.5.2Compare Source
Bug fixes
Fix a bug where reconfiguring a field with a new
initvalue didn't update the value of the field.v6.5.1Compare Source
Bug fixes
countColumnno longer loops infinitely when given atothat's higher than the input string's length.v6.5.0Compare Source
New features
RangeSet.comparenow supports aboundChangecallback that is called when there's a change in the way ranges are split.v6.4.1Compare Source
Bug fixes
Fix an issue that caused widgets at the end of a mark decoration to be rendered in their own separate mark DOM element.
v6.4.0Compare 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
eqmethods now support an optional argument that makes them also compare by cursor associativity.The
RangeSet.joinfunction can be used to join multiple range sets together.v6.3.3Compare Source
Bug fixes
Fix an issue where
Text.sliceandText.replacecould return objects with incorrectlengthwhen the givenfrom/tovalues were out of ranConfiguration
📅 Schedule: (in timezone UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.