Skip to content

Update all non-major dependencies #1297

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 8, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
browserslist 4.22.1 -> 4.24.5 age adoption passing confidence devDependencies minor
chalk 5.3.0 -> 5.4.1 age adoption passing confidence dependencies minor
enhanced-resolve 5.15.0 -> 5.18.1 age adoption passing confidence devDependencies minor
eslint-config-prettier 9.0.0 -> 9.1.0 age adoption passing confidence dependencies minor
eslint-import-resolver-typescript 3.1.1 -> 3.10.1 age adoption passing confidence dependencies minor
eslint-plugin-import 2.25.4 -> 2.31.0 age adoption passing confidence dependencies minor
eslint-plugin-jest 27.2.3 -> 27.9.0 age adoption passing confidence dependencies minor
eslint-plugin-jsdoc 46.8.2 -> 46.10.1 age adoption passing confidence dependencies minor
eslint-plugin-prettier 5.0.0 -> 5.4.0 age adoption passing confidence dependencies minor
eslint-plugin-react 7.33.1 -> 7.37.5 age adoption passing confidence dependencies minor
eslint-plugin-testing-library 6.0.0 -> 6.5.0 age adoption passing confidence dependencies minor
pnpm (source) 8.10.2 -> 8.15.9 age adoption passing confidence packageManager minor
prettier (source) 3.0.3 -> 3.5.3 age adoption passing confidence devDependencies minor
stylelint-prettier 4.0.2 -> 4.1.0 age adoption passing confidence dependencies minor
stylelint-scss 5.0.1 -> 5.3.2 age adoption passing confidence dependencies minor
typescript (source) 5.2.2 -> 5.8.3 age adoption passing confidence devDependencies minor
webfactory/ssh-agent v0.8.0 -> v0.9.1 age adoption passing confidence action minor

Release Notes

browserslist/browserslist (browserslist)

v4.24.5

Compare Source

  • Fixed support ESM shared config.
  • Fixed docs (by Alexander Pushkov & マルコメ).

v4.24.4

Compare Source

v4.24.3

Compare Source

v4.24.2

Compare Source

  • Clarify outdated caniuse-lite warning text.

v4.24.1

Compare Source

  • Added months since last caniuse-lite update to the warning (by @​mezhnin).

v4.24.0

Compare Source

  • Added browserslist.findConfigFile() helper (by @​JLHwung).

v4.23.3

Compare Source

v4.23.2

Compare Source

  • Updated Firefox ESR.

v4.23.1

Compare Source

  • Fixed feature query with mobile to desktop when caniuse lags (by @​steverep).

v4.23.0

Compare Source

v4.22.3

Compare Source

  • Fixed white spaces support in supports query (@​g-plane).
  • Fixed shared config like @company/package/browserslist-config (@​boucodes).

v4.22.2

Compare Source

  • Fixed idempotency in time queries with mobileToDesktop (by Aliaksei Sapach).
chalk/chalk (chalk)

v5.4.1

Compare Source

v5.4.0

Compare Source

  • Update CIRCLECI environments to return level 3 color support f838120
webpack/enhanced-resolve (enhanced-resolve)

v5.18.1

Compare Source

Perf
  • Fast path for parsing requests without \0

v5.18.0

Compare Source

Features
  • Added wildcards support for aliases

v5.17.1

Compare Source

Fixes
  • fix: exports and imports array target resolving
Perf
  • avoid creating a new array inside doResolve

v5.17.0

Compare Source

Features
  • Allow default condition to be anywhere

v5.16.1

Compare Source

Bugfixes

  • use cache for exports and imports plugins

v5.16.0

Compare Source

Features:

  • cache realpath and realpathSync methods

Bugfixes

  • types for cached input filesystem
  • support Buffer/URL/number paths in cached file system

v5.15.1

Compare Source

Bugfixes

  • find the pnpapi the issuer belongs to
prettier/eslint-config-prettier (eslint-config-prettier)

v9.1.0

Compare Source

  • Added: [unicorn/template-indent], (as a [special rule][unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu (@​gurgunday)!
  • Changed: All the [formatting rules that were deprecated in ESLint 8.53.0][deprecated-8.53.0] are now excluded if you set the ESLINT_CONFIG_PRETTIER_NO_DEPRECATED environment variable.
import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

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

v3.6.1

Compare Source

Patch Changes

v3.6.0

Compare Source

Minor Changes

v3.5.5

Compare Source

Patch Changes

v3.5.4

Compare Source

Patch Changes

v3.5.3

Compare Source

Patch Changes
  • #​206 6531bad Thanks @​marvinhagemeister! - Only try to resolve a module directory when we know that the path is a directory. This can lead to a 15% speedup on projects with many files.

v3.5.2

Compare Source

Patch Changes

v3.5.1

Compare Source

Patch Changes

v3.5.0

Compare Source

Minor Changes
Patch Changes

v3.4.2

Compare Source

Patch Changes

v3.4.1

Compare Source

Patch Changes

v3.4.0

Compare Source

Minor Changes

v3.3.0

Compare Source

Minor Changes
  • #​154 42f2dd6 Thanks @​JounQin! - feat: add externsionAlias option support, .d.([cm]?ts|tsx) are always preferred than .([cm]?js|jsx)

    typescript resolves typescript/lib/typescript.d.ts instead of typescript/lib/typescript.js by default

  • #​154 42f2dd6 Thanks @​JounQin! - feat: exports globSync, defaultExtensions, defaultMainFields, defaultConditionNames and defaultExtensionAlias for reusing

Patch Changes

v3.2.7

Compare Source

Patch Changes

v3.2.6

Compare Source

Patch Changes

v3.2.5

Compare Source

Patch Changes

v3.2.4

Compare Source

Patch Changes

v3.2.2

Compare Source

Patch Changes

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

Minor Changes

v3.1.5

Compare Source

Patch Changes

v3.1.4

Compare Source

Patch Changes

v3.1.3

Compare Source

Patch Changes

v3.1.2

Compare Source

Patch Changes
3.1.1 (2022-06-27)
Bug Fixes
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])

v2.29.1

Compare Source

Fixed

v2.29.0

[Compare Source](htt


Configuration

📅 Schedule: Branch creation - "after 9am on Wednesday" in timezone Europe/London, 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 change: dependencies Updates to dependencies only release: skip Skips the release step when this pr is merged labels Nov 8, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 15ccdd9 to fc2c022 Compare November 10, 2023 11:42
@AndrewLeedham AndrewLeedham removed their assignment Nov 10, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4baa79e to 19f7d24 Compare November 18, 2023 00:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2321bef to 568a1f4 Compare November 24, 2023 19:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 48d9835 to 8e221b1 Compare December 8, 2023 22:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 384322a to 2bb2702 Compare December 16, 2023 01:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a0c1dd2 to 65af9a9 Compare December 26, 2023 15:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 25a1dae to fecd51a Compare February 22, 2025 06:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 21725fe to 53f8650 Compare March 3, 2025 16:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 670af5f to 5decfc6 Compare March 17, 2025 18:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 932553c to d6fd7d7 Compare March 26, 2025 23:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from c08378d to 3f8b478 Compare April 5, 2025 02:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3f8b478 to 3463cbf Compare April 8, 2025 11:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d802fad to 7c6f6ad Compare April 24, 2025 07:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6102793 to 6de961d Compare May 5, 2025 11:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6de961d to 5c34e78 Compare May 13, 2025 12:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5c34e78 to a6fff5e Compare May 19, 2025 16:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
change: dependencies Updates to dependencies only release: skip Skips the release step when this pr is merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant