Skip to content

chore(deps): update root dev dependencies #612

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: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@changesets/cli (source) 2.27.7 -> 2.29.5 age adoption passing confidence
@types/jest (source) 29.5.12 -> 29.5.14 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-import-resolver-typescript 3.6.1 -> 3.10.1 age adoption passing confidence
eslint-plugin-import 2.29.1 -> 2.32.0 age adoption passing confidence
eslint-plugin-prettier 5.2.1 -> 5.5.1 age adoption passing confidence
eslint-plugin-react 7.35.0 -> 7.37.5 age adoption passing confidence
prettier (source) 3.3.3 -> 3.6.2 age adoption passing confidence
pretty-quick 4.0.0 -> 4.2.2 age adoption passing confidence
ts-jest (source) 29.2.4 -> 29.4.0 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.29.5

Compare Source

v2.29.4

Compare Source

Patch Changes

v2.29.3

Compare Source

Patch Changes

v2.29.2

Compare Source

Patch Changes

v2.29.1

Compare Source

Patch Changes

v2.29.0

Compare Source

Minor Changes

v2.28.1

Compare Source

Patch Changes

v2.28.0

Compare Source

Minor Changes
Patch Changes

v2.27.12

Compare Source

Patch Changes

v2.27.11

Compare Source

Patch Changes

v2.27.10

Compare Source

Patch Changes

v2.27.9

Compare Source

Patch Changes

v2.27.8

Compare Source

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

v2.32.0

Compare Source

Added
Fixed
Changed

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])
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.1

Compare Source

Patch Changes

v5.5.0

Compare Source

Minor Changes

v5.4.1

Compare Source

Patch Changes
  • #​740 c21521f Thanks @​JounQin! - fix(deps): bump synckit to v0.11.7 to fix potential TypeError: Cannot read properties of undefined (reading 'message') error

v5.4.0

Compare Source

Minor Changes

v5.3.1

Compare Source

Patch Changes

v5.3.0

Compare Source

Minor Changes

v5.2.6

Compare Source

Patch Changes

v5.2.5

Compare Source

Patch Changes

v5.2.4

Compare Source

Patch Changes

v5.2.3

Compare Source

Patch Changes

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


  • 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 renovate label Aug 23, 2024
@renovate renovate bot requested a review from a team as a code owner August 23, 2024 17:03
Copy link

changeset-bot bot commented Aug 23, 2024

⚠️ No Changeset found

Latest commit: ec1fa86

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot changed the title chore(deps): update dependency ts-jest to v29.2.5 chore(deps): update root dev dependencies Aug 26, 2024
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch from 6d1c9a3 to 39e2fd2 Compare August 26, 2024 13:04
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 4 times, most recently from e94ef82 to aed2faa Compare September 4, 2024 10:57
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 6 times, most recently from 8898f85 to 847bdd3 Compare September 16, 2024 16:28
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 4 times, most recently from cbc482e to 7ceed3e Compare October 3, 2024 18:48
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 2 times, most recently from fe2340a to 700b58c Compare October 23, 2024 06:04
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 3 times, most recently from 10d31fe to aafd5e3 Compare November 26, 2024 17:26
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 2 times, most recently from 6360f51 to e0d8666 Compare December 4, 2024 07:24
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 2 times, most recently from 31dde6d to 0bd20e4 Compare December 24, 2024 04:27
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 2 times, most recently from 5322692 to 1ad6b38 Compare January 15, 2025 09:46
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch from 624c9e2 to 07bcd34 Compare March 31, 2025 19:55
devinea
devinea previously approved these changes Apr 1, 2025
Copy link
Member

@devinea devinea left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Package updates lg

@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 3 times, most recently from 4277fdf to 26aeb75 Compare April 3, 2025 22:51
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 4 times, most recently from ec80d05 to b1279b7 Compare April 16, 2025 21:34
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch from b1279b7 to 7402d17 Compare April 21, 2025 11:39
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 3 times, most recently from b3ae98b to ea8df13 Compare May 5, 2025 15:38
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 3 times, most recently from fb1ec59 to b2b2d23 Compare May 16, 2025 18:28
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 3 times, most recently from 51105c0 to b2061de Compare June 2, 2025 09:54
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 4 times, most recently from cba4d9d to 05b8621 Compare June 20, 2025 23:10
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch 3 times, most recently from 117d075 to 716cacd Compare June 25, 2025 12:15
@renovate renovate bot force-pushed the chore/renovate/root-dev-dependencies branch from 716cacd to ec1fa86 Compare June 27, 2025 06:53
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant