Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 24, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
eslint-import-resolver-typescript 3.6.1 -> 4.4.4 age confidence
eslint-plugin-unicorn 56.0.0 -> 61.0.2 age confidence

Release Notes

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v4.4.4

Compare Source

Patch Changes

v4.4.3

Compare Source

Patch Changes

v4.4.2

Compare Source

Patch Changes

v4.4.1

Compare Source

Patch Changes

v4.4.0

Compare Source

Minor Changes

v4.3.5

Compare Source

Patch Changes

v4.3.4

Compare Source

Patch Changes

v4.3.3

Compare Source

Patch Changes

v4.3.2

Compare Source

Patch Changes

v4.3.1

Compare Source

Patch Changes

v4.3.0

Compare Source

Minor Changes

v4.2.7

Compare Source

Patch Changes

v4.2.6

Compare Source

Patch Changes

v4.2.5

Compare Source

Patch Changes

v4.2.4

Compare Source

Patch Changes
  • #​407 6b183ff Thanks @​JounQin! - chore: migrate to rebranding unrs-resolver with new targets supported:

    • i686-pc-windows-msvc
    • armv7-unknown-linux-musleabihf
    • powerpc64le-unknown-linux-gnu
    • s390x-unknown-linux-gnu

v4.2.3

Compare Source

Patch Changes
  • #​402 f21bf15 Thanks @​SunsetTechuila! - fix: don't resolve not implemented node modules in bun

    is-bun-module is marked as dependency, again, for correctness, see isBunImplementedNodeModule for more details

    For Bun users: you don't need to install is-bun-module any more but bun: true option is still required if you're running without bun --bun nor run#bun enabled

v4.2.2

Compare Source

Patch Changes
  • #​397 14a7688 Thanks @​JounQin! - chore: bump rspack-resolver for better P'n'P support

    Now rspack-resolver resolves pnpapi natively.

v4.2.1

Compare Source

Patch Changes

v4.2.0

Compare Source

Minor Changes
  • #​391 c8121e5 Thanks @​JounQin! - feat: make is-bun-module as optional peer dependency

    Technically this is a BREAKING CHANGE, but considering we just raise out v4 recently and this only affects bun users, bun --bun eslint even works without this dependency, so I'd consider this as a minor change.

    So for bun users, there are three options:

    1. install is-bun-module dependency manually and use bun: true option
    2. run eslint with bun --bun eslint w/o bun: true option
    3. enable run#bun in bunfig.toml w/o bun: true option

v4.1.1

Compare Source

Patch Changes

v4.1.0

Compare Source

Minor Changes
  • #​387 ef5cd10 Thanks @​JounQin! - feat: add a new bun?: boolean option for bun users - close #​386

    process.versions.bun is unavailable even with bun eslint due to its own design,
    but checking bun modules for non-bun users is incorrect behavior and just wasting time,
    so a new option is added for such case, you can still run with bun --bun eslint without this option enabled

v4.0.0

Compare Source

Major Changes
  • #​368 2fd7c2e Thanks @​JounQin! - feat!: rewrite, speed up by using rspack-resolver which supports references natively under the hood

    BREAKING CHANGES:

    • drop Node 14 support, Node ^16.17.0 || >=18.6 is now required
    • alwaysTryTypes is enabled by default, you can set it as false to opt-out
    • array type of project is discouraged but still supported, single project with references are encouraged for better performance, you can enable noWarnOnMultipleProjects option to supress the warning message
    • root tsconfig.json or jsconfig.json will be used automatically if no project provided

v3.10.1

Compare Source

v3.10.0

Compare Source

Minor Changes

Full Changelog: import-js/eslint-import-resolver-typescript@v3.9.1...v3.10.0

v3.9.1

Compare Source

Patch Changes

v3.9.0

Compare Source

Minor Changes

v3.8.7

Compare Source

Patch Changes

v3.8.6

Compare Source

Patch Changes

v3.8.5

Compare Source

Patch Changes

v3.8.4

Compare Source

Patch Changes

v3.8.3

Compare Source

Patch Changes

v3.8.2

Compare Source

Patch Changes

v3.8.1

Compare Source

Patch Changes

v3.8.0

Compare Source

Minor Changes
  • #​345 fcc8883 Thanks @​carlocorradini! - Enable the mapper function just for a set of allowed files. Improves project discovery using glob and POSIX separator.

  • #​346 c124e87 Thanks @​carlocorradini! - Update get-tsconfig to the the latest version. We now support the ${configDir} variable, introduced in TypeScript 5.5.

v3.7.0

Compare Source

Minor Changes
  • #​326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    
    module.exports = {
      settings: {
        'import-x/resolver-next': [
          createTypeScriptImportResolver({
            alwaysTryTypes: true,
          }),
        ],
      },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

v3.6.3

Compare Source

Patch Changes
sindresorhus/eslint-plugin-unicorn (eslint-plugin-unicorn)

v61.0.2

Compare Source

  • throw-new-error: Fix false positive for Effect library (#​2740) 0ddf5ea
  • no-useless-undefined: Ignore Set#delete(undefined) (#​2739) 99acd27
  • prefer-includes and prefer-array-index-of: Prevent crash on Vue files (#​2645) a1da518

v61.0.1

Compare Source

  • prefer-classlist-toggle: Omit Element#classList.contains() call when fixing (#​2732) 066f96b

v61.0.0

Compare Source

New rules
Improvements
Fixes

v60.0.0

Compare Source

Breaking
New rules
Improvements
Fixes
  • no-array-callback-reference: Fix optional chaining expressions being ignored (#​2694) ad27922
  • no-unnecessary-await: Fix handling of experimental pipeline operator (#​2658) 2b8ebe5

v59.0.1

Compare Source

  • prefer-single-call: Fix crash on CallExpression followed by FunctionDeclaration (#​2639) 3114dd9

v59.0.0

Compare Source

Breaking
  • Rename no-array-push-push rule to prefer-single-call (#​2617) e117783
  • Rename no-length-as-slice-end rule to no-unnecessary-slice-end (#​2614) 1922df1
New rules
Improvements

v58.0.0

Compare Source

Potentially breaking
  • Update engines.node in package.json to match real compatibility (#​2581) e48a620
Improvements
Fixes
  • no-unnecessary-polyfills: Fix browserslist field name (#​2603) 1a4c76f
  • no-unnecessary-polyfills: Fix crash on checking es6-error module (#​2582) 66de41a
  • no-accessor-recursion: Fix exception when used in CommonJS (#​2574) ca1e432

v57.0.0

Compare Source

Breaking
New rules
Improvements
Fixes

v56.0.1

Compare Source

  • expiring-todo-comments: Fix compatibility with ESLint 9.15 (#​2497) 16b09d3

Configuration

📅 Schedule: Branch creation - Monday through Friday ( * * * * 1-5 ) (UTC), 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link
Contributor Author

renovate bot commented Feb 24, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm warn Unknown project config "always-auth". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: @doist/typist@8.0.2
npm error Found: eslint@8.57.1
npm error node_modules/eslint
npm error   dev eslint@"8.57.1" from the root project
npm error
npm error Could not resolve dependency:
npm error peer eslint@">=9.29.0" from eslint-plugin-unicorn@61.0.2
npm error node_modules/eslint-plugin-unicorn
npm error   dev eslint-plugin-unicorn@"61.0.2" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2025-09-13T17_58_49_490Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-09-13T17_58_49_490Z-debug-0.log

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 24, 2025
Copy link

netlify bot commented Feb 24, 2025

Deploy Preview for doist-typist failed.

Name Link
🔨 Latest commit 6bc9aba
🔍 Latest deploy log https://app.netlify.com/projects/doist-typist/deploys/68c5b0e00af9ad00087eb540

@renovate renovate bot force-pushed the renovate/major-linters branch from 76a8529 to cc2e857 Compare March 22, 2025 00:24
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-unicorn to v57 chore(deps): update linters (major) Mar 22, 2025
@renovate renovate bot force-pushed the renovate/major-linters branch 5 times, most recently from 834fa61 to 8ebef04 Compare March 24, 2025 04:30
@renovate renovate bot force-pushed the renovate/major-linters branch 6 times, most recently from 4ea412d to 7654d38 Compare April 3, 2025 20:38
@renovate renovate bot force-pushed the renovate/major-linters branch from 7654d38 to ea85f8d Compare April 12, 2025 04:34
@renovate renovate bot force-pushed the renovate/major-linters branch 2 times, most recently from 2c85815 to 528a549 Compare April 26, 2025 17:11
@renovate renovate bot force-pushed the renovate/major-linters branch from 528a549 to 02d2435 Compare May 2, 2025 16:26
@renovate renovate bot force-pushed the renovate/major-linters branch from 02d2435 to 34ea3bc Compare May 11, 2025 08:53
@renovate renovate bot force-pushed the renovate/major-linters branch 3 times, most recently from 2890682 to 00f4605 Compare May 30, 2025 08:01
@renovate renovate bot force-pushed the renovate/major-linters branch 2 times, most recently from 6c5f540 to 504bfac Compare June 4, 2025 23:19
@renovate renovate bot force-pushed the renovate/major-linters branch 2 times, most recently from 34d0f07 to 2afd0f2 Compare June 11, 2025 00:52
@renovate renovate bot force-pushed the renovate/major-linters branch from 2afd0f2 to 6f960a8 Compare July 1, 2025 00:25
@renovate renovate bot force-pushed the renovate/major-linters branch from 6f960a8 to befef79 Compare July 27, 2025 16:04
@renovate renovate bot force-pushed the renovate/major-linters branch 2 times, most recently from 57ad5f2 to e64b4af Compare September 11, 2025 10:54
@renovate renovate bot force-pushed the renovate/major-linters branch from e64b4af to 6bc9aba Compare September 13, 2025 17:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants