fix(deps): update all non-major dependencies #21
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:
^2.24.1
->^2.27.3
^1.8.0
->^1.26.2
^5.1.0
->^5.1.1
^26.0.1
->^26.0.3
^15.2.3
->^15.3.1
^20.14.14
->^20.17.17
^18.3.3
->^18.3.18
^18.3.0
->^18.3.5
^10.4.19
->^10.4.20
^4.3.6
->^4.4.0
^9.8.0
->^9.19.0
^0.4.9
->^0.4.18
^11.2.0
->^11.3.0
^1.12.0
->^1.14.0
^2.9.1
->^2.11.3
^15.2.7
->^15.4.3
^1.0.1
->^1.1.1
9.6.0
->9.15.5
^8.4.40
->^8.5.1
^3.4.7
->^3.4.17
^5.5.4
->^5.7.3
Release Notes
antfu/eslint-config (@antfu/eslint-config)
v2.27.3
Compare Source
🐞 Bug Fixes
eslint-plugin-import-x
- by @antfu (6a224)View changes on GitHub
v2.27.2
Compare Source
🚀 Features
🐞 Bug Fixes
eslint-plugin-import-x
- by @antfu (78d52)View changes on GitHub
v2.27.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
v2.27.0
Compare Source
🚀 Features
🐞 Bug Fixes
isInEditorEnv
should be false when in git hooks, close #589 - by @antfu in https://github.com/antfu/eslint-config/issues/589 (b60bf)View changes on GitHub
v2.26.1
Compare Source
No significant changes
View changes on GitHub
v2.26.0
Compare Source
🐞 Bug Fixes
ignoresTypeAware
reslove, fix #578 - by @antfu in https://github.com/antfu/eslint-config/issues/578 (e5ca2)View changes on GitHub
v2.25.2
Compare Source
🐞 Bug Fixes
View changes on GitHub
v2.25.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
v2.25.0
Compare Source
🐞 Bug Fixes
printWidth: 120
not work as expected - by @HADB in https://github.com/antfu/eslint-config/issues/573 (8942c)View changes on GitHub
Rel1cx/eslint-react (@eslint-react/eslint-plugin)
v1.26.2
Compare Source
🐞 Fixes
no-context-provider
rule to include context name in error messages by @Rel1cx in #935v1.26.1
Compare Source
No notable changes have been made in this release.
v1.26.0
Compare Source
✨ New
v1.25.0
Compare Source
✨ New
ts-blank-eslint-parser
by @Rel1cxts-blank-eslint-parser
by @Rel1cx🐞 Fixes
🪄 Improvements
v1.24.1
Compare Source
🐞 Fixes
disable-debug
,disable-dom
, anddisable-web-apis
configs, closes #923 by @Rel1cx in #924v1.24.0
Compare Source
🪄 Improvements
v1.23.2
Compare Source
✨ New
prefer-shorthand-fragment
, closes #898 (#902)v1.23.1
Compare Source
🐞 Fixes
no-unstable-context-value
andno-unstable-default-props
by @Rel1cx in #896v1.23.0
Compare Source
🪄 Improvements
jsxPragma
andjsxPragmaFrag
settings to perform their checks by @Rel1cx in #893no-useless-fragment
andprefer-shorthand-fragment
rulessettings["react-x"].jsxPragma
andsettings["react-x"].jsxPragmaFrag
as they are no longer needed by any rulesshort-unique-id
w/uid
by @SukkaW in #894🐞 Fixes
call
andnew
expression related false positives inno-unnecessary-use-memo
andno-unnecessary-use-callback
by @Rel1cx in #895v1.22.2
Compare Source
🪄 Improvements
no-duplicate-key
rule to improve its performance @Rel1cx in #891 and 33ab3ccas
,satisfies
, and non-null assertion operator in various rulesv1.22.1
Compare Source
🪄 Improvements
eslint.config.js
examples in README.md, docs and the examples folder📝 Changes in examples
The
eslint.config.js
in the examples now usestsconfig
'sincludes
andexcludes
as the SSoT glob patterns for ESLint'sfiles
andignores
fields.This approach can fundamentally avoid the errors[1, 2, 3] caused by mismatched config scopes between
tsconfig.json
andeslint.config.js
when using type-checked rules.v1.22.0
Compare Source
🪄 Improvements
jsx-use-vars
touse-jsx-vars
jsx-no-duplicate-props
tono-duplicate-jsx-props
no-children-in-void-dom-elements
tono-void-elements-with-children
📝 Changes you should be aware of
The following rules have been renamed:
jsx-uses-vars
touse-jsx-vars
jsx-no-duplicate-props
tono-duplicate-jsx-props
dom/no-children-in-void-dom-elements
todom/no-void-elements-with-children
The new rule names are aligned with the same rules in the biomejs/rules-sources/#eslint-plugin-react (if any) to enhance consistency. The old rule names will still be available until the next major update to avoid breaking changes.
v1.21.0
Compare Source
✨ New
no-useless-custom-hooks
rule by @Rel1cx🪄 Improvements
no-redundant-custom-hook
in favor ofno-useless-custom-hooks
(the previous rule will still be available until the next major update to avoid breaking changes)📝 Changes in Rule implementation
no-useless-custom-hooks
now detects Hook calls within comments and the following code no longer triggers a warning:v1.20.1
Compare Source
🪄 Improvements
local-pkg
package with node built-in API by @Rel1cx in #881v1.20.0
Compare Source
✨ New
no-component-will-*
by @Rel1cx in #879🪄 Improvements
settings["react-x"]
by @Rel1cx in40ca3bd
no-context-provider.mdx
by @danielrentz in #877v1.19.0
Compare Source
✨ New
no-context-provider
rule by @Rel1cxno-forward-ref
rule by @Rel1cx in #874no-forward-ref
andno-context-provider
to recommended presets by @Rel1cx🪄 Improvements
prefer-read-only-props
fromrecommended-type-checked
preset by @Rel1cx in #872avoid-shorthand-boolean
andavoid-shorthand-fragment
from presets and docs by @Rel1cx in #876@typescript-eslint
's packages to^8.18.0
v1.18.0
Compare Source
✨ New
no-forward-ref
rule by @Rel1cx in #870🪄 Improvements
no-void-elements-with-children
by @Rel1cxv1.17.3
Compare Source
🐞 Fixes
🪄 Improvements
@typescript-eslint
's packages to^8.17.0
v1.17.2
Compare Source
🪄 Improvements
eslint
's packages to^9.16.0
@typescript-eslint
's packages to^8.16.0
ts-api-utils
to^2.0.0
v1.17.1
Compare Source
✨ New
🐞 Fixes
v1.17.0
Compare Source
✨ New
🐞 Fixes
v1.16.2
Compare Source
🐞 Fixes
🪄 Improvements
v1.16.1
Compare Source
✨ New
jsx-no-duplicate-props
by @Rel1cx in #851🪄 Improvements
prefer-react-namespace-import
in rule list by @rakleed in #849v1.15.2
Compare Source
🪄 Improvements
@typescript-eslint
's packages to^8.12.1
v1.15.1
Compare Source
✨ New
react-x/avoid-shorthand-boolean
andreact-x/prefer-shorthand-fragment
by @Rel1cx🐞 Fixes
as
andsatisfies
expressions handling togetFunctionIdentifier
by @Rel1cx , closes #843v1.15.0
Compare Source
✨ New
hooks-extra/prefer-use-state-lazy-initialization
by @imjordanxd in #829prefer-react-namespace-import
, closes #803 by @imjordanxd in #832allowExpressions
inno-useless-fragment
by @imjordanxd in #836🐞 Fixes
🪄 Improvements
hooks-extra-no-direct-set-state-in-use-effect.mdx
by @neovov in #831hooks-extra-no-direct-set-state-in-use-layout-effect
and remove it from recommended presets, closes #839 by @Rel1cx in #840v1.14.3
Compare Source
🪄 Improvements
@typescript-eslint
's packages to^8.7.0
v1.14.2
Compare Source
🪄 Improvements
@typescript-eslint
's packages to^8.6.0
v1.14.1
Compare Source
🐞 Fixes
web-api/no-leaked-resize-observer
v1.14.0
Compare Source
🐞 Fixes
🪄 Improvements
@typescript-eslint
's packages to^8.5.0
v1.13.1
Compare Source
🐞 Fixes
hooks-extra/no-unnecessary-use-callback
andhooks-extra/no-unnecessary-use-memo
false positives when there are references from nested scopesv1.13.0
Compare Source
✨ New
web-api/no-leaked-resize-observer
rule to prevent leakedResizeObserver
🐞 Fixes
hooks-extra/no-useless-custom-hooks
should allow custom Hooks with empty body🪄 Improvements
debug/react-hooks
todebug/hook
hooks-extra/ensure-custom-using-hooks
tohooks-extra/no-useless-custom-hooks
hooks-extra/ensure-use-memo-has-non-empty-deps
tohooks-extra/no-unnecessary-use-memo
hooks-extra/ensure-use-callback-has-non-empty-deps
tohooks-extra/no-unnecessary-use-callback
@typescript-eslint
's packages to^8.4.0
(The rules that were renamed in this release will still be available until the next major update to avoid breaking changes.)
v1.12.4
Compare Source
✨ New
useLayoutEffect
anduseInsertionEffect
support tohooks-extra/no-direct-set-state-in-use-effect
🪄 Improvements
hooks-extra/no-direct-set-state-in-use-layout-effect
in favor ofhooks-extra/no-direct-set-state-in-use-effect
(the previous rule will still be available until the next major update to avoid breaking changes)v1.12.3
Compare Source
✨ New
web-api/no-leaked-event-listener
🐞 Fixes
no-duplicate-key
rule false positives when the key is a variableweb-api/no-leaked-set-timeout
andweb-api/no-leaked-set-interval
false positives when a timer is assigned to a variable declared bylet
but not initializedv1.12.2
Compare Source
✨ New
react-x
settings to the@typescript-eslint/utils/ts-eslint
module via theSharedConfigurationSettings
interface🪄 Improvements
no-missing-key
andno-duplicate-key
rules@typescript-eslint
's packages to^8.3.0
v1.12.1
Compare Source
✨ New
allowAllCaps
,allowNamespace
,allowLeadingUnderscore
tonaming-convention/component-name
and set their default values tofalse
🪄 Improvements
naming-convention/component-name
before checking it against the patternv1.12.0
Compare Source
✨ New
hooks-extra
rules torecommended
andrecommended-legacy
presetsv1.11.0
Compare Source
✨ New
eslint-plugin-react-web-api
- A plugin that provides rules for interacting with Web APIs in React applicationsweb-api/no-leaked-timeout
rule to prevent leakedsetTimeout
web-api/no-leaked-interval
rule to prevent leakedsetInterval
web-api/no-leaked-event-listener
rule to prevent leakedaddEventListener
web-api
andweb-api-legacy
presets to enable all rules provided byeslint-plugin-react-web-api
react-web-api/no-leaked-event-listener
torecommended
andrecommended-legacy
presets🪄 Improvements
@eslint-react/eslint-plugin
package@typescript-eslint
's packages to^8.2.0
v1.10.1
Compare Source
🐞 Fixes
hooks-extra/prefer-use-state-lazy-initialization
false positive when using an initializer function🪄 Improvements
no-implicit-key
error marker position and range@typescript-eslint
's packages to^8.1.0
v1.10.0
Compare Source
✨ New
disable-type-checked
anddisable-type-checked-legacy
presets to disable all type-checked rules🪄 Improvements
off-dom
andoff-dom-legacy
presets todisable-dom
anddisable-dom-legacy
(the old names will still be available until the next major update to avoid breaking changes)v1.9.1
Compare Source
🐞 Fixes
dom/no-missing-iframe-sandbox
false positive when thesandbox
attribute is set tosandbox=""
all
andall-legacy
presets not includinghooks-extra
rulesv1.9.0
Compare Source
✨ New
core
preset that includes the most essential rules🪄 Improvements
@typescript-eslint
's packages to8.0.1
rollup/plugins (@rollup/plugin-alias)
v5.1.1
2024-09-22
Bugfixes
rollup/plugins (@rollup/plugin-commonjs)
v26.0.3
2024-09-23
Updates
e98927b
)rollup/plugins (@rollup/plugin-node-resolve)
v15.3.1
2024-12-15
Updates
test
withincludes
(#1787)v15.3.0
2024-09-23
Features
v15.2.4
2024-09-22
Updates
postcss/autoprefixer (autoprefixer)
v10.4.20
Compare Source
fit-content
prefix for Firefox.debug-js/debug (debug)
v4.4.0
Compare Source
Fixes (hopefully) the inefficient regex warnings in
.enable()
.Minor version as this is invariably going to break certain users who misuse the
.enable()
API and expected it to work with regexes, which was never supported nor documented. That's on you, sorry - that functionality won't be added back.Full Changelog: debug-js/debug@4.3.7...4.4.0
v4.3.7
Compare Source
What's Changed
Full Changelog: debug-js/debug@4.3.6...4.3.7
eslint/eslint (eslint)
v9.19.0
Compare Source
v9.18.0
Compare Source
v9.17.0
Compare Source
v9.16.0
Compare Source
Features
8f70eb1
feat: AddignoreComputedKeys
option insort-keys
rule (#19162) (Milos Djermanovic)Documentation
9eefc8f
docs: fix typos inuse-isnan
(#19190) (루밀LuMir)0c8cea8
docs: switch the order of words inno-unreachable
(#19189) (루밀LuMir)0c19417
docs: add missing backtick tono-async-promise-executor
(#19188) (루밀LuMir)8df9276
docs: add backtick in-0
indescription
ofno-compare-neg-zero
(#19186) (루밀LuMir)7e16e3f
docs: fixcaseSensitive
option's title ofsort-keys
(#19183) (Tanuj Kanti)0c6b842
docs: fix typos inmigration-guide.md
(#19180) (루밀LuMir)353266e
docs: fix a typo indebug.md
(#19179) (루밀LuMir)5ff318a
docs: delete unnecessary horizontal rule(---
) innodejs-api
(#19175) (루밀LuMir)576bcc5
docs: mark more rules as handled by TypeScript (#19164) (Tanuj Kanti)742d054
docs: note thatno-restricted-syntax
can be used with any language (#19148) (Milos Djermanovic)Chores
feb703b
](https://redirect.github.com/eslint/eslint/commit/feb703b3dc198cda03fb69c75a31d56d999b9Configuration
📅 Schedule: Branch creation - "on sunday" in timezone Asia/Shanghai, 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.