Update all non-major dependencies #100
Open
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:
6.18.6
->6.19.0
6.3.2
->6.4.0
6.10.8
->6.11.3
6.1.2
->6.1.3
6.36.3
->6.38.6
1.3.0
->1.4.0
9.29.0
->9.38.0
5.0.0
->5.2.2
4.4.2
->4.7.0
13.1.0
->13.8.0
4.0.79
->4.0.82
1.0.61
->1.0.64
1.2.3
->1.3.0
1.2.1
->1.2.2
1.1.6
->1.1.15
1.1.3
->1.1.10
1.1.4
->1.3.3
1.1.6
->1.1.15
2.1.6
->2.1.16
1.1.6
->1.1.15
2.1.2
->2.1.7
1.1.6
->1.1.15
2.1.6
->2.2.6
1.1.2
->1.1.7
1.1.2
->1.2.3
1.1.3
->1.2.6
1.1.2
->1.1.10
1.1.2
->1.1.11
1.1.8
->1.2.8
1.12.5
->1.13.5
4.1.10
->4.1.15
22.15.32
->22.18.12
19.0.10
->19.2.2
19.0.4
->19.2.2
8.34.1
->8.46.2
8.34.1
->8.46.2
4.23.9
->4.25.2
4.3.4
->4.7.0
9.29.0
->9.38.0
4.4.3
->4.4.4
4.15.0
->4.15.1
4.1.4
->4.3.0
16.2.0
->16.4.0
26.0.0
->26.1.0
7.8.0
->7.10.1
v4.1.0
->v4.2.0
3.5.3
->3.6.2
19.0.0
->19.2.0
19.0.0
->19.2.0
7.54.2
->7.65.0
7.2.0
->7.9.4
2.0.1
->2.0.7
3.0.2
->3.3.1
4.1.10
->4.1.15
5.8.3
->5.9.3
8.18.1
->8.18.3
13.6.23
->13.6.27
3.24.2
->3.25.76
Release Notes
codemirror/autocomplete (@codemirror/autocomplete)
v6.19.0
Compare Source
New features
Completion sections may now set their rank to
dynamic
to indicate their order should be determined by the matching score of their best-matching option.v6.18.7
Compare Source
Bug fixes
Add a binding for Alt-i to trigger
startCompletion
, following VS Code's current default bindings.Improve handling of nested fields in snippets.
codemirror/lang-markdown (@codemirror/lang-markdown)
v6.4.0
Compare Source
New features
The new
pasteURLAsLink
extension allows you to paste URLs over a selection to quickly create a link.v6.3.4
Compare Source
Bug fixes
Make sure header-based indentation is available even when Markdown isn't the editor's top-level language.
v6.3.3
Compare Source
Bug fixes
Make
insertNewlineContinueMarkup
take effect even when at the end of a nested range of Markdown content.codemirror/language (@codemirror/language)
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.
v6.11.0
Compare Source
New features
Stream parsers now support a
mergeTokens
option that can be used to turn off automatic merging of adjacent tokens.codemirror/theme-one-dark (@codemirror/theme-one-dark)
v6.1.3
Compare Source
Bug fixes
Add a .d.cts file to make TypeScript happy.
codemirror/view (@codemirror/view)
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 whenonerror
returns a falsy value.Fix an issue in
MatchDecorator
causingupdateDeco
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.v6.36.6
Compare Source
Bug fixes
Fix an issue where
drawSelection
would draw selections starting at a block widget not at a line break in an odd way.Fix an issue where the editor would inappropriately scroll when editing near the bottom of the document with line wrapping enabled, in some cases.
Fix an issue that caused unnecessary transactions on focus change.
v6.36.5
Compare Source
Bug fixes
Fix an issue where some browsers wouldn't enable context menu paste when clicking on placeholder text.
Fix an issue where cursor height would unnecessarily be based on a placeholder node's dimensions, and thus be off from the text height.
v6.36.4
Compare Source
Bug fixes
Fix an issue where scrolling down to a range higher than the viewport could in some situations fail to scroll to the proper position.
eslint/rewrite (@eslint/compat)
v1.4.0
Compare Source
Features
Dependencies
v1.3.2
Compare Source
Dependencies
v1.3.1
Compare Source
Bug Fixes
@eslint/compat
eslint peerDependencies constraint (#215) (b96ec0c)Dependencies
eslint/eslint (@eslint/js)
v9.38.0
Compare Source
Features
ce40f74
feat: updatecomplexity
rule to only highlight function header (#20048) (Atul Nair)e37e590
feat: correctno-loss-of-precision
false positives withe
notation (#20187) (Francesco Trotta)Bug Fixes
50c3dfd
fix: improve type support for isolated dependencies in pnpm (#20201) (Francesco Trotta)a1f06a3
fix: correct SourceCode typings (#20114) (Pixel998)Documentation
462675a
docs: improve web accessibility by hiding non-semantic character (#20205) (루밀LuMir)c070e65
docs: correct formatting inno-irregular-whitespace
rule documentation (#20203) (루밀LuMir)b39e71a
docs: Update README (GitHub Actions Bot)cd39983
docs: movecustom-formatters
type descriptions tonodejs-api
(#20190) (Percy Ma)Chores
d17c795
chore: upgrade @eslint/js@9.38.0 (#20221) (Milos Djermanovic)25d0e33
chore: package.json update for @eslint/js release (Jenkins)c82b5ef
refactor: Use types from @eslint/core (#20168) (Nicholas C. Zakas)ff31609
ci: add Node.js 25 toci.yml
(#20220) (루밀LuMir)004577e
ci: bump github/codeql-action from 3 to 4 (#20211) (dependabot[bot])eac71fb
test: remove use ofnodejsScope
option of eslint-scope from tests (#20206) (Milos Djermanovic)4168a18
chore: fix typo in legacy-eslint.js (#20202) (Sweta Tanwar)205dbd2
chore: fix typos (#20200) (ntnyq)dbb200e
chore: use team member's username when name is not available in data (#20194) (Milos Djermanovic)8962089
chore: mark deprecated rules as available until v11.0.0 (#20184) (Pixel998)v9.37.0
Compare Source
Features
39f7fb4
feat:preserve-caught-error
should recognize all static "cause" keys (#20163) (Pixel998)f81eabc
feat: support TS syntax inno-restricted-imports
(#19562) (Nitin Kumar)Bug Fixes
a129cce
fix: correctno-loss-of-precision
false positives for leading zeros (#20164) (Francesco Trotta)09e04fc
fix: add missing AST token types (#20172) (Pixel998)861c6da
fix: correctESLint
typings (#20122) (Pixel998)Documentation
b950359
docs: fix typos across the docs (#20182) (루밀LuMir)42498a2
docs: improve ToC accessibility by hiding non-semantic character (#20181) (Percy Ma)29ea092
docs: Update README (GitHub Actions Bot)5c97a04
docs: showavailableUntil
in deprecated rule banner (#20170) (Pixel998)90a71bf
docs: updateREADME
files to add badge and instructions (#20115) (루밀LuMir)1603ae1
docs: update references frommaster
tomain
(#20153) (루밀LuMir)Chores
afe8a13
chore: update@eslint/js
dependency to version 9.37.0 (#20183) (Francesco Trotta)abee4ca
chore: package.json update for @eslint/js release (Jenkins)fc9381f
chore: fix typos in comments (#20175) (overlookmotel)e1574a2
chore: unpin jiti (#20173) (renovate[bot])e1ac05e
refactor: markESLint.findConfigFile()
asasync
, add missing docs (#20157) (Pixel998)347906d
chore: update eslint (#20149) (renovate[bot])0cb5897
test: remove tmp dir created for circular fixes in multithread mode test (#20146) (Milos Djermanovic)bb99566
ci: pinjiti
to version 2.5.1 (#20151) (Pixel998)177f669
perf: improve worker count calculation for"auto"
concurrency (#20067) (Francesco Trotta)448b57b
chore: Mark deprecated formatting rules as available until v11.0.0 (#20144) (Milos Djermanovic)v9.36.0
Compare Source
Features
47afcf6
feat: correctpreserve-caught-error
edge cases (#20109) (Francesco Trotta)Bug Fixes
75b74d8
fix: add missing rule option types (#20127) (ntnyq)1c0d850
fix: updateeslint-all.js
to useObject.freeze
forrules
object (#20116) (루밀LuMir)7d61b7f
fix: add missing scope types toScope.type
(#20110) (Pixel998)7a670c3
fix: correct rule option typings inrules.d.ts
(#20084) (Pixel998)Documentation
b73ab12
docs: update examples to usedefineConfig
(#20131) (sethamus)31d9392
docs: fix typos (#20118) (Pixel998)c7f861b
docs: Update README (GitHub Actions Bot)6b0c08b
docs: Update README (GitHub Actions Bot)91f97c5
docs: Update README (GitHub Actions Bot)Chores
12411e8
chore: upgrade @eslint/js@9.36.0 (#20139) (Milos Djermanovic)488cba6
chore: package.json update for @eslint/js release (Jenkins)bac82a2
ci: simplify renovate configuration (#19907) (唯然)c00bb37
ci: bump actions/labeler from 5 to 6 (#20090) (dependabot[bot])fee751d
refactor: usedefaultOptions
in rules ([#20121](https://redirect.gitConfiguration
📅 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.
This PR was generated by Mend Renovate. View the repository job log.