Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update eslint #375

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update eslint #375

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 20, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence devDependencies patch
eslint-import-resolver-typescript 3.6.1 -> 3.8.3 age adoption passing confidence devDependencies minor
eslint-plugin-import 2.29.1 -> 2.31.0 age adoption passing confidence devDependencies minor
eslint-plugin-node 11.1.0 -> 14.0.0 devDependencies replacement
eslint-plugin-promise 6.1.1 -> 6.6.0 age adoption passing confidence devDependencies minor

This is a special PR that replaces eslint-plugin-node with the community suggested minimal stable replacement version.


Release Notes

eslint/eslint (eslint)

v8.57.1

Compare Source

Bug Fixes
  • a19072f fix: add logic to handle fixTypes in the lintText() method (#​18900) (Francesco Trotta)
  • 04c7188 fix: Don't lint same file multiple times (#​18899) (Francesco Trotta)
  • 87ec3c4 fix: do not throw when defining a global named __defineSetter__ (#​18898) (Francesco Trotta)
  • 60a1267 fix: Provide helpful error message for nullish configs (#​18889) (Milos Djermanovic)
  • a0dea8e fix: allow name in global ignores, fix --no-ignore for non-global (#​18875) (Milos Djermanovic)
  • 3836bb4 fix: do not crash on error in fs.walk filter (#​18886) (Milos Djermanovic)
  • 2dec349 fix: skip processor code blocks that match only universal patterns (#​18880) (Milos Djermanovic)
Documentation
Build Related
  • 35d366a build: Support updates to previous major versions (#​18870) (Milos Djermanovic)
Chores
import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

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
import-js/eslint-plugin-import (eslint-plugin-import)

v2.31.0

Compare Source

Added
Fixed
Changed

v2.30.0

Compare Source

Added
Fixed
Changed
  • [Docs] [no-extraneous-dependencies]: Make glob pattern description more explicit ([#​2944], thanks [@​mulztob])
  • [no-unused-modules]: add console message to help debug [#​2866]
  • [Refactor] ExportMap: make procedures static instead of monkeypatching exportmap ([#​2982], thanks [@​soryy708])
  • [Refactor] ExportMap: separate ExportMap instance from its builder logic ([#​2985], thanks [@​soryy708])
  • [Docs] [order]: Add a quick note on how unbound imports and --fix ([#​2640], thanks [@​minervabot])
  • [Tests] appveyor -> GHA (run tests on Windows in both pwsh and WSL + Ubuntu) ([#​2987], thanks [@​joeyguerra])
  • [actions] migrate OSX tests to GHA ([ljharb#37], thanks [@​aks-])
  • [Refactor] exportMapBuilder: avoid hoisting ([#​2989], thanks [@​soryy708])
  • [Refactor] ExportMap: extract "builder" logic to separate files ([#​2991], thanks [@​soryy708])
  • [Docs] [order]: update the description of the pathGroupsExcludedImportTypes option ([#​3036], thanks [@​liby])
  • [readme] Clarify how to install the plugin ([#​2993], thanks [@​jwbth])
eslint-community/eslint-plugin-promise (eslint-plugin-promise)

v6.6.0

Compare Source

Bug Fixes
  • always-return: treat process.exit() or process.abort() as an acceptable "return" (#​493) (f368c5a)
Features
  • add strict option to disallow then or catch following await or yield (#​494) (fa482cc)

v6.5.1

Compare Source

Bug Fixes

v6.5.0

Compare Source

Features
  • add name property to configs (for use with tooling) (#​486) (ca9e9b4)

v6.4.0

Compare Source

Features

v6.3.0

Compare Source

Features

v6.2.0

Compare Source

Bug Fixes
  • no-callback-in-promise: false positives when the exception is an argument (#​446) (5e4546d)
Features
  • Resolve getAncestors and getScope calls in eslint v9 (#​466) (c0c716b)

Configuration

📅 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.


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

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

@renovate renovate bot added the dependencies Changes to project dependencies label Mar 20, 2024
@renovate renovate bot force-pushed the renovate/eslint branch from d17879b to e58742b Compare March 24, 2024 15:55
@renovate renovate bot force-pushed the renovate/eslint branch from e58742b to 30021ec Compare April 14, 2024 09:38
@renovate renovate bot force-pushed the renovate/eslint branch from 30021ec to 69c971f Compare May 30, 2024 09:38
@renovate renovate bot changed the title Replace dependency eslint-plugin-node with eslint-plugin-n 14.0.0 Replace eslint May 30, 2024
@renovate renovate bot force-pushed the renovate/eslint branch from 69c971f to 6e3339d Compare June 4, 2024 14:35
@renovate renovate bot force-pushed the renovate/eslint branch from 6e3339d to 428dfea Compare July 4, 2024 03:01
@renovate renovate bot force-pushed the renovate/eslint branch 4 times, most recently from f7aed5f to e2bca52 Compare July 25, 2024 00:31
@renovate renovate bot force-pushed the renovate/eslint branch from e2bca52 to 76cd1e9 Compare August 6, 2024 07:43
@renovate renovate bot force-pushed the renovate/eslint branch 2 times, most recently from 09e50b3 to 9f9d215 Compare August 29, 2024 12:04
@renovate renovate bot changed the title Replace eslint Update eslint Aug 29, 2024
@renovate renovate bot force-pushed the renovate/eslint branch from 9f9d215 to a9b6f6b Compare September 6, 2024 10:13
@renovate renovate bot force-pushed the renovate/eslint branch from fcc29b2 to 94cdccd Compare October 6, 2024 13:35
@renovate renovate bot force-pushed the renovate/eslint branch from 94cdccd to d68af47 Compare October 26, 2024 11:05
@renovate renovate bot force-pushed the renovate/eslint branch 2 times, most recently from ccbc2d3 to 7f59012 Compare December 6, 2024 14:06
@renovate renovate bot force-pushed the renovate/eslint branch 2 times, most recently from d9e436d to c96d716 Compare January 30, 2025 19:15
@renovate renovate bot force-pushed the renovate/eslint branch from c96d716 to 63e2db6 Compare February 9, 2025 12:45
@renovate renovate bot force-pushed the renovate/eslint branch 3 times, most recently from f073e22 to b58aff6 Compare February 21, 2025 18:15
@renovate renovate bot force-pushed the renovate/eslint branch from b58aff6 to d148dfb Compare February 23, 2025 13:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Changes to project dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants