ci(dev-deps): update all non-major dependencies #914
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:
5.0.3
->5.0.4
1.2.3
->1.2.4
3.3.4
->3.5.1
6.0.1
->6.0.2
12.1.1
->12.1.2
18.19.67
->18.19.68
1.1.13
->1.1.22
v5.0.7
->v5.1.2
3.6.3
->3.7.0
6.3.2
->6.4.0
4.4.3
->4.6.1
50.6.0
->50.6.1
17.14.0
->17.15.1
0.6.1
->0.7.1
5.38.3
->5.41.1
15.2.10
->15.3.0
0.15.0
->0.17.1
22.11.0
->22.12.0
9.14.4
->9.15.2
3.4.1
->3.4.2
4.28.0
->4.29.1
5.1.3
->5.1.4
Release Notes
streetsidesoftware/cspell-dicts (@cspell/dict-cryptocurrencies)
v5.0.4
Compare Source
Updates and Bug Fixes
eslint/rewrite (@eslint/compat)
v1.2.4
Compare Source
RebeccaStevens/eslint-config-rebeccastevens (@rebeccastevens/eslint-config)
v3.5.1
Compare Source
Bug Fixes
v3.5.0
Compare Source
Bug Fixes
Features
v3.4.0
Compare Source
Bug Fixes
Features
3.3.5 (2024-12-14)
Bug Fixes
3.3.4 (2024-11-28)
Bug Fixes
3.3.3 (2024-10-20)
Bug Fixes
3.3.2 (2024-10-09)
Bug Fixes
3.3.1 (2024-10-08)
Bug Fixes
v3.3.5
Compare Source
Bug Fixes
rollup/plugins (@rollup/plugin-replace)
v6.0.2
2024-12-15
Bugfixes
objectGuards
option (#1818)rollup/plugins (@rollup/plugin-typescript)
v12.1.2
2024-12-15
Bugfixes
vitest-dev/eslint-plugin-vitest (@vitest/eslint-plugin)
v1.1.22
Compare Source
Bug Fixes
valid-title
false positives whentest.extend
is used (#584) (9c2670a)v1.1.21
Compare Source
Bug Fixes
Performance Improvements
What's Changed
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.20...v1.1.21
v1.1.20
Compare Source
Bug Fixes
What's Changed
New Contributors
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.19...v1.1.20
v1.1.19
Compare Source
Bug Fixes
What's Changed
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.18...v1.1.19
v1.1.18
Compare Source
Features
What's Changed
New Contributors
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.17...v1.1.18
v1.1.17
Compare Source
Bug Fixes
What's Changed
prefer-called-with
rule docs by @FloEdelmann in https://github.com/vitest-dev/eslint-plugin-vitest/pull/592Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.16...v1.1.17
v1.1.16
Compare Source
What's Changed
New Contributors
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.15...v1.1.16
v1.1.15
Compare Source
Bug Fixes
What's Changed
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.14...v1.1.15
v1.1.14
Compare Source
What's Changed
Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.13...v1.1.14
codecov/codecov-action (codecov/codecov-action)
v5.1.2
Compare Source
What's Changed
${{ inputs.token }}
inaction.yml
by @jwodder in https://github.com/codecov/codecov-action/pull/1721Full Changelog: https://github.com/codecov/codecov-action/compare/v5.1.1..v5.1.2
v5.1.1
Compare Source
What's Changed
Full Changelog: https://github.com/codecov/codecov-action/compare/v5.1.0..v5.1.1
v5.1.0
Compare Source
What's Changed
Full Changelog: https://github.com/codecov/codecov-action/compare/v5.0.7..v5.1.0
import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)
v3.7.0
Compare Source
Minor Changes
#326
93ea130
Thanks @SukkaW! - This version has implemented theeslint-plugin-import-x
's v3 resolver interface. This allows you to use import/require to referenceeslint-import-resolver-typescript
directly in your ESLint flat config:Previously
Now
Note that this only works with
eslint-plugin-import-x@>=4.5.0
. You can't usecreateTypeScriptImportResolver
with the older versions ofeslint-plugin-import-x
or any existing versions ofeslint-plugin-import
.eslint-community/eslint-plugin-eslint-plugin (eslint-plugin-eslint-plugin)
v6.4.0
Compare Source
Features
no-meta-schema-default
rule (#503) (dbd96b2)require-meta-default-options
rule (#502) (13e625a)require-meta-docs-recommended
rule (#500) (8fda55a)un-ts/eslint-plugin-import-x (eslint-plugin-import-x)
v4.6.1
Compare Source
Patch Changes
be9c3e8
Thanks @mrginglymus! - Fix enhanced-resolve dependencyv4.6.0
Compare Source
Minor Changes
#209
46d2360
Thanks @SukkaW! - Wheneslint-plugin-import-x
was forked fromeslint-plugin-import
, we copied over the default resolver (which iseslint-import-resolver-node
) as well. However, this resolver doesn't supportsexports
in thepackage.json
file, and the current maintainer of theeslint-import-resolver-node
(ljharb) doesn't have the time implementing this feature and he locked the issue https://github.com/import-js/eslint-plugin-import/issues/1810.So we decided to implement our own resolver that "just works". The new resolver is built upon the
enhanced-resolve
that implements the full Node.js Resolver Algorithm. The new resolver only implements the import resolver interface v3, which means you can only use it with ESLint Flat config. For more details about the import resolver interface v3, please check out #192.In the next major version of
eslint-plugin-import-x
, we will remove theeslint-import-resolver-node
and use this new resolver by default. In the meantime, you can try out this new resolver by setting theimport-x/resolver-next
option in youreslint.config.js
file:We do not plan to implement reading
baseUrl
andpaths
from thetsconfig.json
file in this resolver. If you need this feature, please checkout eslint-import-resolver-typescript (also powered byenhanced-resolve
), eslint-import-resolver-oxc (powered byoxc-resolver
), eslint-import-resolver-next (also powered byoxc-resolver
), or other similar resolvers.Patch Changes
449738f
Thanks @privatenumber! - insert type prefix without new linev4.5.1
Compare Source
Patch Changes
#198
ac6d2e1
Thanks @voxpelli! - Fix #197 with missing types#204
32e9b55
Thanks @privatenumber! - fix type-import and value-import merging when import-as is usedv4.5.0
Compare Source
Minor Changes
fbf639b
Thanks @SukkaW! - The PR implements the new resolver design proposed in https://github.com/un-ts/eslint-plugin-import-x/issues/40#issuecomment-2381444266For
eslint-plugin-import-x
usersLike the ESLint flat config allows you to use js objects (e.g. import and require) as ESLint plugins, the new
eslint-plugin-import-x
resolver settings allow you to use js objects as custom resolvers through the new settingimport-x/resolver-next
:The new
import-x/resolver-next
no longer accepts strings as the resolver, thus will not be compatible with the ESLint legacy config (a.k.a..eslintrc
). Those who are still using the ESLint legacy config should stick withimport-x/resolver
.In the next major version of
eslint-plugin-import-x
(v5), we will rename the currently existingimport-x/resolver
toimport-x/resolver-legacy
(which allows the existing ESLint legacy config users to use their existing resolver settings), andimport-x/resolver-next
will become the newimport-x/resolver
. When ESLint v9 (the last ESLint version with ESLint legacy config support) reaches EOL in the future, we will removeimport-x/resolver-legacy
.We have also made a few breaking changes to the new resolver API design, so you can't use existing custom resolvers directly with
import-x/resolver-next
:For easier migration, the PR also introduces a compat utility
importXResolverCompat
that you can use in youreslint.config.js
:For custom import resolver developers
This is the new API design of the resolver interface:
You will be able to import
NewResolver
fromeslint-plugin-import-x/types
.The most notable change is that
eslint-plugin-import-x
no longer passes the third argument (options
) to theresolve
function.We encourage custom resolvers' authors to consume the options outside the actual
resolve
function implementation. You can export a factory function to accept the options, this factory function will then be called inside theeslint.config.js
to get the actual resolver:This allows you to create a reusable resolver instance to improve the performance. With the existing version of the resolver interface, because the options are passed to the
resolver
function, you will have to create a resolver instance every time theresolve
function is called:With the factory function pattern, you can create a resolver instance beforehand:
Patch Changes
#184
bc4de89
Thanks @marcalexiei! - fix(no-cycle): improves the type declaration of the ruleno-cycle
’smaxDepth
option#184
bc4de89
Thanks @marcalexiei! - fix(first): improves the type declaration of the rulefirst
's option#184
bc4de89
Thanks @marcalexiei! - fix(no-unused-modules): improves the type declaration of the ruleno-unused-modules
’smissingExports
option#184
bc4de89
Thanks @marcalexiei! - fix(no-deprecated): improve error message when no description is availablegajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)
[
v50.6.1
](https://redirect.github.com/gajus/eslint-plugConfiguration
📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.