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

chore(deps): bump the toolchain group across 1 directory with 4 updates #373

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 25, 2024

Bumps the toolchain group with 4 updates in the / directory: dprint, eslint-import-resolver-typescript, eslint-plugin-react and @vitejs/plugin-react.

Updates dprint from 0.47.5 to 0.48.0

Release notes

Sourced from dprint's releases.

0.48.0

Changes

  • feat: support the NO_PROXY environment variable (#951)
  • fix(npm): hardlink main package executable to specific executable instead of copying (#948)

Install

Run dprint upgrade or see https://dprint.dev/install/

Checksums

Artifact SHA-256 Checksum
dprint-x86_64-apple-darwin.zip ffadf5fc645f3596f76c534cb2f10591c98513823134f085339b42e09ed919ab
dprint-aarch64-apple-darwin.zip 31efaf7d6fbdbb53188c457105e894d08b0c43eb02878abae778edaedd0a5c70
dprint-x86_64-pc-windows-msvc.zip 772b4ff758196e1aa1df5b71e454ec8657a38ad5ae2000d03cb503a917ffc155
dprint-x86_64-pc-windows-msvc-installer.exe cf0b029f7a93f638390570bc84b4f63bc8c69f9b8a352bf532651e7d26b8151b
dprint-x86_64-unknown-linux-gnu.zip 746c7134de53329a01934f20241acc7b6be95b95f8a197689a465ecf58e13f1b
dprint-x86_64-unknown-linux-musl.zip 49e4b31f3a3606a4a796180104b6e2affbf701f1d7cca5a8917424ccac907442
dprint-aarch64-unknown-linux-gnu.zip 82f48a8cc259c92b729042ce582053e83f8cae09f9317742445320003f2b2cfe
dprint-aarch64-unknown-linux-musl.zip 73179f4a53502e013700c97605cccebd0ff731696054a03d59ec9507947b8308
dprint-riscv64gc-unknown-linux-gnu.zip a72959d94a520ebb728eec3e8d318e4181108fe910c7df2a7e2292d9351cde35

0.47.6

Changes

Install

Run dprint upgrade or see https://dprint.dev/install/

Checksums

Artifact SHA-256 Checksum
dprint-x86_64-apple-darwin.zip b54950d447e0d17fcc2732bf99928503deb39b5b764e5b33995449bf6059c857
dprint-aarch64-apple-darwin.zip 4f33c24141a19638ab045fe5e95654ff0ef8db29949e145d28ea3cc5b088a042
dprint-x86_64-pc-windows-msvc.zip 0c9abe671652b8da61227b92b0bc038b1e938367fa3d7a9fa3ba523d515d4a9a
dprint-x86_64-pc-windows-msvc-installer.exe a78de93f486f0d49e96f05e20e7bca9012f30ba0d682640a90eab8887af4ca3f
dprint-x86_64-unknown-linux-gnu.zip cf572c3207ccf870e6f670b1088c843a9b77930e00e8a34239b0dda4a856a237
dprint-x86_64-unknown-linux-musl.zip ab0cd8c86d224b51371bb0a5c50418376b153a643d024022977e4d72cad529e6
dprint-aarch64-unknown-linux-gnu.zip a89fde49d786dc3c8e1fd5758359ade248addab1e2ded24a782ec8e738231153
dprint-aarch64-unknown-linux-musl.zip 221aaecc5e71d73591b226377064a33b4d15a5aae6788ef11c99a4da540a095d
dprint-riscv64gc-unknown-linux-gnu.zip c335c3aff2812ca1f640af10f13a2d94cc6d414814dc8038e7412aacc3065ea0
Commits

Updates eslint-import-resolver-typescript from 3.6.3 to 3.7.0

Release notes

Sourced from eslint-import-resolver-typescript's releases.

v3.7.0

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.

Changelog

Sourced from eslint-import-resolver-typescript's changelog.

3.7.0

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.

Commits
  • c5da700 chore: release eslint-import-resolver-typescript (#327)
  • 93ea130 feat: implement import-x resolver interface v3 (#326)
  • e6256b7 chore(deps): update dependency simple-git-hooks to ^2.11.1 (#325)
  • da56f17 chore(deps): update dependency react to ^18.3.1 (#324)
  • 88a6d44 chore(deps): update node.js to v18.20.5 (#323)
  • bed664f chore(deps): update dependency @​changesets/cli to ^2.27.10 (#322)
  • 42e7cc3 chore(deps): update dependency @​types/node to ^18.19.63 (#320)
  • 13fa760 chore(deps): update dependency @​changesets/cli to ^2.27.9 (#319)
  • 5ee5879 fix(deps): update dependency debug to ^4.3.7 (#316)
  • f5b09f5 chore(deps): update dependency eslint to ^8.57.1 (#315)
  • Additional commits viewable in compare view

Updates eslint-plugin-react from 7.37.2 to 7.37.3

Release notes

Sourced from eslint-plugin-react's releases.

v7.37.3

Fixed

  • [no-danger]: avoid a crash on a nested component name (#3833[] @​ljharb)
  • [Fix] types: correct generated type declaration (#3840[] @​ocavue)
  • [no-unknown-property]: support precedence prop in react 19 (#3829[] @​acusti)
  • [prop-types]: props missing in validation when using generic types from a namespace import (#3859[] @​rbondoc96)

Changed

  • [Tests] [jsx-no-script-url]: Improve tests (#3849[] @​radu2147)
  • [Docs] fix broken links: [default-props-match-prop-types], [jsx-boolean-value], [jsx-curly-brace-presence], [jsx-no-bind], [no-array-index-key], [no-is-mounted], [no-render-return-value], [require-default-props] (#3841[] @​bastiendmt)

#1000: jsx-eslint/eslint-plugin-react#1000 #1002: jsx-eslint/eslint-plugin-react#1002 #1005: jsx-eslint/eslint-plugin-react#1005 #100: jsx-eslint/eslint-plugin-react#100 #1010: jsx-eslint/eslint-plugin-react#1010 #1013: jsx-eslint/eslint-plugin-react#1013 #1022: jsx-eslint/eslint-plugin-react#1022 #1029: jsx-eslint/eslint-plugin-react#1029 #102: jsx-eslint/eslint-plugin-react#102 #1034: jsx-eslint/eslint-plugin-react#1034 #1038: jsx-eslint/eslint-plugin-react#1038 #1041: jsx-eslint/eslint-plugin-react#1041 #1043: jsx-eslint/eslint-plugin-react#1043 #1046: jsx-eslint/eslint-plugin-react#1046 #1047: jsx-eslint/eslint-plugin-react#1047 #1050: jsx-eslint/eslint-plugin-react#1050 #1053: jsx-eslint/eslint-plugin-react#1053 #1057: jsx-eslint/eslint-plugin-react#1057 #105: jsx-eslint/eslint-plugin-react#105 #1061: jsx-eslint/eslint-plugin-react#1061 #1062: jsx-eslint/eslint-plugin-react#1062 #1070: jsx-eslint/eslint-plugin-react#1070 #1071: jsx-eslint/eslint-plugin-react#1071 #1073: jsx-eslint/eslint-plugin-react#1073 #1076: jsx-eslint/eslint-plugin-react#1076 #1079: jsx-eslint/eslint-plugin-react#1079 #1088: jsx-eslint/eslint-plugin-react#1088 #1098: jsx-eslint/eslint-plugin-react#1098 #1101: jsx-eslint/eslint-plugin-react#1101 #1103: jsx-eslint/eslint-plugin-react#1103 #110: jsx-eslint/eslint-plugin-react#110 #1116: jsx-eslint/eslint-plugin-react#1116 #1117: jsx-eslint/eslint-plugin-react#1117 #1119: jsx-eslint/eslint-plugin-react#1119 #1121: jsx-eslint/eslint-plugin-react#1121 #1122: jsx-eslint/eslint-plugin-react#1122 #1123: jsx-eslint/eslint-plugin-react#1123 #1130: jsx-eslint/eslint-plugin-react#1130 #1131: jsx-eslint/eslint-plugin-react#1131

... (truncated)

Changelog

Sourced from eslint-plugin-react's changelog.

7.37.3 - 2024.12.23

Fixed

  • [no-danger]: avoid a crash on a nested component name (#3833[] @​ljharb)
  • [Fix] types: correct generated type declaration (#3840[] @​ocavue)
  • [no-unknown-property]: support precedence prop in react 19 (#3829[] @​acusti)
  • [prop-types]: props missing in validation when using generic types from a namespace import (#3859[] @​rbondoc96)

Changed

  • [Tests] [jsx-no-script-url]: Improve tests (#3849[] @​radu2147)
  • [Docs] fix broken links: [default-props-match-prop-types], [jsx-boolean-value], [jsx-curly-brace-presence], [jsx-no-bind], [no-array-index-key], [no-is-mounted], [no-render-return-value], [require-default-props] (#3841[] @​bastiendmt)

#3859: jsx-eslint/eslint-plugin-react#3859 #3849: jsx-eslint/eslint-plugin-react#3849 #3841: jsx-eslint/eslint-plugin-react#3841 #3840: jsx-eslint/eslint-plugin-react#3840 #3833: jsx-eslint/eslint-plugin-react#3833 #3829: jsx-eslint/eslint-plugin-react#3829

Commits
  • 244743a Update CHANGELOG and bump version
  • bc5b9dd [actions] release workflow needs some new domains
  • ed3b1cf [Tests] jsx-uses-vars, jsx-uses-react: fix no-unused-vars tests in esli...
  • 033ad19 [Deps] update array.prototype.flatmap, es-iterator-helpers, `object.value...
  • b4a14f4 [meta] add directories.test
  • b713026 [Fix] prop-types: props missing in validation when using generic types from...
  • 66ae4c1 [Fix] no-unknown-property: support precedence prop in react 19
  • 233d442 [Dev Deps] update @babel/preset-react
  • 958954d [Docs] fix broken links:
  • 2c0b10c [Tests] pin `@typescript-eslint/parser to < 8.18, due to a breaking change
  • Additional commits viewable in compare view

Updates @vitejs/plugin-react from 4.3.3 to 4.3.4

Release notes

Sourced from @​vitejs/plugin-react's releases.

v4.3.4

Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

Force Babel to output spec compliant import attributes #386

The default was an old spec (with type: "json"). We now enforce spec compliant (with { type: "json" })

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.3.4 (2024-11-26)

Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

Force Babel to output spec compliant import attributes #386

The default was an old spec (with type: "json"). We now enforce spec compliant (with { type: "json" })

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the toolchain group with 4 updates in the / directory: [dprint](https://github.com/dprint/dprint), [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript), [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react).


Updates `dprint` from 0.47.5 to 0.48.0
- [Release notes](https://github.com/dprint/dprint/releases)
- [Commits](dprint/dprint@0.47.5...0.48.0)

Updates `eslint-import-resolver-typescript` from 3.6.3 to 3.7.0
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.6.3...v3.7.0)

Updates `eslint-plugin-react` from 7.37.2 to 7.37.3
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.37.2...v7.37.3)

Updates `@vitejs/plugin-react` from 4.3.3 to 4.3.4
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.4/packages/plugin-react)

---
updated-dependencies:
- dependency-name: dprint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: toolchain
- dependency-name: eslint-import-resolver-typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: toolchain
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: toolchain
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: toolchain
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner December 25, 2024 05:07
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 25, 2024
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