Skip to content

Bump the packages group with 28 updates#147

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/packages-506bd1b4bb
Apr 21, 2025
Merged

Bump the packages group with 28 updates#147
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/packages-506bd1b4bb

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 21, 2025

Bumps the packages group with 28 updates:

Package From To
@eslint/js 9.25.0 9.25.1
eslint 9.25.0 9.25.1
eslint-import-resolver-typescript 4.3.3 4.3.4
pnpm 10.8.1 10.9.0
typescript-eslint 8.30.1 8.31.0
@typescript-eslint/eslint-plugin 8.30.1 8.31.0
@typescript-eslint/parser 8.30.1 8.31.0
@typescript-eslint/type-utils 8.30.1 8.31.0
@typescript-eslint/utils 8.30.1 8.31.0
@typescript-eslint/visitor-keys 8.30.1 8.31.0
@unrs/resolver-binding-darwin-arm64 1.6.1 1.6.3
@unrs/resolver-binding-darwin-x64 1.6.1 1.6.3
@unrs/resolver-binding-freebsd-x64 1.6.1 1.6.3
@unrs/resolver-binding-linux-arm-gnueabihf 1.6.1 1.6.3
@unrs/resolver-binding-linux-arm-musleabihf 1.6.1 1.6.3
@unrs/resolver-binding-linux-arm64-gnu 1.6.1 1.6.3
@unrs/resolver-binding-linux-arm64-musl 1.6.1 1.6.3
@unrs/resolver-binding-linux-ppc64-gnu 1.6.1 1.6.3
@unrs/resolver-binding-linux-riscv64-gnu 1.6.1 1.6.3
@unrs/resolver-binding-linux-s390x-gnu 1.6.1 1.6.3
@unrs/resolver-binding-linux-x64-gnu 1.6.1 1.6.3
@unrs/resolver-binding-linux-x64-musl 1.6.1 1.6.3
@unrs/resolver-binding-wasm32-wasi 1.6.1 1.6.3
@unrs/resolver-binding-win32-arm64-msvc 1.6.1 1.6.3
@unrs/resolver-binding-win32-ia32-msvc 1.6.1 1.6.3
@unrs/resolver-binding-win32-x64-msvc 1.6.1 1.6.3
electron-to-chromium 1.5.139 1.5.140
unrs-resolver 1.6.1 1.6.3

Updates @eslint/js from 9.25.0 to 9.25.1

Release notes

Sourced from @​eslint/js's releases.

v9.25.1

Bug Fixes

  • cdc8e8c fix: revert directive detection in no-unused-expressions (#19639) (sethamus)

Chores

  • 1f2b057 chore: upgrade @​eslint/js@​9.25.1 (#19642) (Milos Djermanovic)
  • 771317f chore: package.json update for @​eslint/js release (Jenkins)
Changelog

Sourced from @​eslint/js's changelog.

v9.25.1 - April 21, 2025

  • 1f2b057 chore: upgrade @​eslint/js@​9.25.1 (#19642) (Milos Djermanovic)
  • 771317f chore: package.json update for @​eslint/js release (Jenkins)
  • cdc8e8c fix: revert directive detection in no-unused-expressions (#19639) (sethamus)
Commits

Updates eslint from 9.25.0 to 9.25.1

Release notes

Sourced from eslint's releases.

v9.25.1

Bug Fixes

  • cdc8e8c fix: revert directive detection in no-unused-expressions (#19639) (sethamus)

Chores

  • 1f2b057 chore: upgrade @​eslint/js@​9.25.1 (#19642) (Milos Djermanovic)
  • 771317f chore: package.json update for @​eslint/js release (Jenkins)
Changelog

Sourced from eslint's changelog.

v9.25.1 - April 21, 2025

  • 1f2b057 chore: upgrade @​eslint/js@​9.25.1 (#19642) (Milos Djermanovic)
  • 771317f chore: package.json update for @​eslint/js release (Jenkins)
  • cdc8e8c fix: revert directive detection in no-unused-expressions (#19639) (sethamus)
Commits

Updates eslint-import-resolver-typescript from 4.3.3 to 4.3.4

Release notes

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

v4.3.4

Patch Changes

Full Changelog: import-js/eslint-import-resolver-typescript@v4.3.3...v4.3.4

Changelog

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

4.3.4

Patch Changes

Commits

Updates pnpm from 10.8.1 to 10.9.0

Release notes

Sourced from pnpm's releases.

pnpm 10.9

Minor Changes

  • Added support for installing JSR packages. You can now install JSR packages using the following syntax:

    pnpm add jsr:<pkg_name>
    

    or with a version range:

    pnpm add jsr:<pkg_name>@<range>
    

    For example, running:

    pnpm add jsr:@foo/bar
    

    will add the following entry to your package.json:

    {
      "dependencies": {
        "@foo/bar": "jsr:^0.1.2"
      }
    }

    When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:

    {
      "dependencies": {
        "@foo/bar": "npm:@jsr/foo__bar@^0.1.2"
      }
    }

    Related issue: #8941.

    Note: The @jsr scope defaults to https://npm.jsr.io/ if the @jsr:registry setting is not defined.

  • Added a new setting, dangerouslyAllowAllBuilds, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this to pnpm-workspace.yaml:

    neverBuiltDependencies: []

    dangerouslyAllowAllBuilds has the same effect but also allows to be set globally via:

    pnpm config set dangerouslyAllowAllBuilds true
    

    It can also be set when running a command:

... (truncated)

Changelog

Sourced from pnpm's changelog.

10.9.0

Minor Changes

  • Added support for installing JSR packages. You can now install JSR packages using the following syntax:

    pnpm add jsr:<pkg_name>
    

    or with a version range:

    pnpm add jsr:<pkg_name>@<range>
    

    For example, running:

    pnpm add jsr:@foo/bar
    

    will add the following entry to your package.json:

    {
      "dependencies": {
        "@foo/bar": "jsr:^0.1.2"
      }
    }

    When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:

    {
      "dependencies": {
        "@foo/bar": "npm:@jsr/foo__bar@^0.1.2"
      }
    }

    Related issue: #8941.

    Note: The @jsr scope defaults to https://npm.jsr.io/ if the @jsr:registry setting is not defined.

  • Added a new setting, dangerouslyAllowAllBuilds, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this to pnpm-workspace.yaml:

    neverBuiltDependencies: []

... (truncated)

Commits

Updates typescript-eslint from 8.30.1 to 8.31.0

Release notes

Sourced from typescript-eslint's releases.

v8.31.0

8.31.0 (2025-04-21)

🚀 Features

  • eslint-plugin: [no-unnecessary-type-assertion] add option to ignore string const assertions (#10979)

🩹 Fixes

  • typescript-eslint: address bugs in config() around global ignores (#11065)
  • typescript-eslint: gracefully handle invalid flat config objects in config helper (#11070)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.31.0 (2025-04-21)

🩹 Fixes

  • typescript-eslint: gracefully handle invalid flat config objects in config helper (#11070)
  • typescript-eslint: address bugs in config() around global ignores (#11065)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • 2cc7656 chore(release): publish 8.31.0
  • b40ce5a fix(typescript-eslint): gracefully handle invalid flat config objects in conf...
  • be558e5 fix(typescript-eslint): address bugs in config() around global ignores (#11...
  • See full diff in compare view

Updates @typescript-eslint/eslint-plugin from 8.30.1 to 8.31.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.31.0

8.31.0 (2025-04-21)

🚀 Features

  • eslint-plugin: [no-unnecessary-type-assertion] add option to ignore string const assertions (#10979)

🩹 Fixes

  • typescript-eslint: address bugs in config() around global ignores (#11065)
  • typescript-eslint: gracefully handle invalid flat config objects in config helper (#11070)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.31.0 (2025-04-21)

🚀 Features

  • eslint-plugin: [no-unnecessary-type-assertion] add option to ignore string const assertions (#10979)

❤️ Thank You

  • Nicolas Le Cam

You can read about our versioning strategy and releases on our website.

Commits
  • 2cc7656 chore(release): publish 8.31.0
  • 80bd7a5 feat(eslint-plugin): [no-unnecessary-type-assertion] add option to ignore str...
  • 1a3ab0d chore(eslint-plugin): migrate to vitest (#10579)
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.30.1 to 8.31.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.31.0

8.31.0 (2025-04-21)

🚀 Features

  • eslint-plugin: [no-unnecessary-type-assertion] add option to ignore string const assertions (#10979)

🩹 Fixes

  • typescript-eslint: address bugs in config() around global ignores (#11065)
  • typescript-eslint: gracefully handle invalid flat config objects in config helper (#11070)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.31.0 (2025-04-21)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates @typescript-eslint/type-utils from 8.30.1 to 8.31.0

Release notes

Sourced from @​typescript-eslint/type-utils's releases.

v8.31.0

8.31.0 (2025-04-21)

🚀 Features

  • eslint-plugin: [no-unnecessary-type-assertion] add option to ignore string const assertions (#10979)

🩹 Fixes

  • typescript-eslint: address bugs in config() around global ignores (#11065)
  • typescript-eslint: gracefully handle invalid flat config objects in config helper (#11070)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/type-utils's changelog.

8.31.0 (2025-04-21)

This was a version bump only for type-utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates @typescript-eslint/utils from 8.30.1 to 8.31.0

Release notes

Sourced from @​typescript-eslint/utils's releases.

v8.31.0

8.31.0 (2025-04-21)

🚀 Features

  • eslint-plugin: [no-unnecessary-type-assertion] add option to ignore string const assertions (#10979)

🩹 Fixes

  • typescript-eslint: address bugs in config() around global ignores (#11065)
  • typescript-eslint: gracefully handle invalid flat config objects in config helper (#11070)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/utils's changelog.

8.31.0 (2025-04-21)

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates @typescript-eslint/visitor-keys from 8.30.1 to 8.31.0

Release notes

Sourced from @​typescript-eslint/visitor-keys's releases.

v8.31.0

8.31.0 (2025-04-21)

🚀 Features

  • eslint-plugin: [no-unnecessary-type-assertion] add option to ignore string const assertions (#10979)

🩹 Fixes

  • typescript-eslint: address bugs in config() around global ignores (#11065)
  • typescript-eslint: gracefully handle invalid flat config objects in config helper (#11070)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/visitor-keys's changelog.

8.31.0 (2025-04-21)

This was a version bump only for visitor-keys to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates @unrs/resolver-binding-darwin-arm64 from 1.6.1 to 1.6.3

Release notes

Sourced from @​unrs/resolver-binding-darwin-arm64's releases.

v1.6.3

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

v1.6.2

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Changelog

Sourced from @​unrs/resolver-binding-darwin-arm64's changelog.

1.6.3 - 2025-04-21

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

1.6.2 - 2025-04-21

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Commits

Updates @unrs/resolver-binding-darwin-x64 from 1.6.1 to 1.6.3

Release notes

Sourced from @​unrs/resolver-binding-darwin-x64's releases.

v1.6.3

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

v1.6.2

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Changelog

Sourced from @​unrs/resolver-binding-darwin-x64's changelog.

1.6.3 - 2025-04-21

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

1.6.2 - 2025-04-21

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Commits

Updates @unrs/resolver-binding-freebsd-x64 from 1.6.1 to 1.6.3

Release notes

Sourced from @​unrs/resolver-binding-freebsd-x64's releases.

v1.6.3

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

v1.6.2

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Changelog

Sourced from @​unrs/resolver-binding-freebsd-x64's changelog.

1.6.3 - 2025-04-21

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

1.6.2 - 2025-04-21

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Commits

Updates @unrs/resolver-binding-linux-arm-gnueabihf from 1.6.1 to 1.6.3

Release notes

Sourced from @​unrs/resolver-binding-linux-arm-gnueabihf's releases.

v1.6.3

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

v1.6.2

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Changelog

Sourced from @​unrs/resolver-binding-linux-arm-gnueabihf's changelog.

1.6.3 - 2025-04-21

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

1.6.2 - 2025-04-21

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Commits

Updates @unrs/resolver-binding-linux-arm-musleabihf from 1.6.1 to 1.6.3

Release notes

Sourced from @​unrs/resolver-binding-linux-arm-musleabihf's releases.

v1.6.3

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

v1.6.2

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Changelog

Sourced from @​unrs/resolver-binding-linux-arm-musleabihf's changelog.

1.6.3 - 2025-04-21

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

1.6.2 - 2025-04-21

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Commits

Updates @unrs/resolver-binding-linux-arm64-gnu from 1.6.1 to 1.6.3

Release notes

Sourced from @​unrs/resolver-binding-linux-arm64-gnu's releases.

v1.6.3

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

v1.6.2

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Changelog

Sourced from @​unrs/resolver-binding-linux-arm64-gnu's changelog.

1.6.3 - 2025-04-21

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

1.6.2 - 2025-04-21

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Commits

Updates @unrs/resolver-binding-linux-arm64-musl from 1.6.1 to 1.6.3

Release notes

Sourced from @​unrs/resolver-binding-linux-arm64-musl's releases.

v1.6.3

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

v1.6.2

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Changelog

Sourced from @​unrs/resolver-binding-linux-arm64-musl's changelog.

1.6.3 - 2025-04-21

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

1.6.2 - 2025-04-21

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Commits

Updates @unrs/resolver-binding-linux-ppc64-gnu from 1.6.1 to 1.6.3

Release notes

Sourced from @​unrs/resolver-binding-linux-ppc64-gnu's releases.

v1.6.3

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

v1.6.2

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Changelog

Sourced from @​unrs/resolver-binding-linux-ppc64-gnu's changelog.

1.6.3 - 2025-04-21

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

1.6.2 - 2025-04-21

Bug Fixes

  • resolve parent base url correctly by normalizing as absolute path (#72)
Commits

Updates @unrs/resolver-binding-linux-riscv64-gnu from 1.6.1 to 1.6.3

Release notes

Sourced from @​unrs/resolver-binding-linux-riscv64-gnu's releases.

v1.6.3

Bug Fixes

  • support load_as_directory for pnp mode (#75)

Testing

  • add case for

Bumps the packages group with 28 updates:

| Package | From | To |
| --- | --- | --- |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.25.0` | `9.25.1` |
| [eslint](https://github.com/eslint/eslint) | `9.25.0` | `9.25.1` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `4.3.3` | `4.3.4` |
| [pnpm](https://github.com/pnpm/pnpm/tree/HEAD/pnpm) | `10.8.1` | `10.9.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.30.1` | `8.31.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.30.1` | `8.31.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.30.1` | `8.31.0` |
| [@typescript-eslint/type-utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/type-utils) | `8.30.1` | `8.31.0` |
| [@typescript-eslint/utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/utils) | `8.30.1` | `8.31.0` |
| [@typescript-eslint/visitor-keys](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/visitor-keys) | `8.30.1` | `8.31.0` |
| [@unrs/resolver-binding-darwin-arm64](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-darwin-x64](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-freebsd-x64](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-linux-arm-gnueabihf](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-linux-arm-musleabihf](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-linux-arm64-gnu](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-linux-arm64-musl](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-linux-ppc64-gnu](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-linux-riscv64-gnu](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-linux-s390x-gnu](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-linux-x64-gnu](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-linux-x64-musl](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-wasm32-wasi](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-win32-arm64-msvc](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-win32-ia32-msvc](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [@unrs/resolver-binding-win32-x64-msvc](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |
| [electron-to-chromium](https://github.com/kilian/electron-to-chromium) | `1.5.139` | `1.5.140` |
| [unrs-resolver](https://github.com/unrs/unrs-resolver) | `1.6.1` | `1.6.3` |


Updates `@eslint/js` from 9.25.0 to 9.25.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.25.1/packages/js)

Updates `eslint` from 9.25.0 to 9.25.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.25.0...v9.25.1)

Updates `eslint-import-resolver-typescript` from 4.3.3 to 4.3.4
- [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@v4.3.3...v4.3.4)

Updates `pnpm` from 10.8.1 to 10.9.0
- [Release notes](https://github.com/pnpm/pnpm/releases)
- [Changelog](https://github.com/pnpm/pnpm/blob/main/pnpm/CHANGELOG.md)
- [Commits](https://github.com/pnpm/pnpm/commits/v10.9.0/pnpm)

Updates `typescript-eslint` from 8.30.1 to 8.31.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.31.0/packages/typescript-eslint)

Updates `@typescript-eslint/eslint-plugin` from 8.30.1 to 8.31.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.31.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.30.1 to 8.31.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.31.0/packages/parser)

Updates `@typescript-eslint/type-utils` from 8.30.1 to 8.31.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/type-utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.31.0/packages/type-utils)

Updates `@typescript-eslint/utils` from 8.30.1 to 8.31.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.31.0/packages/utils)

Updates `@typescript-eslint/visitor-keys` from 8.30.1 to 8.31.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/visitor-keys/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.31.0/packages/visitor-keys)

Updates `@unrs/resolver-binding-darwin-arm64` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-darwin-x64` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-freebsd-x64` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-linux-arm-gnueabihf` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-linux-arm-musleabihf` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-linux-arm64-gnu` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-linux-arm64-musl` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-linux-ppc64-gnu` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-linux-riscv64-gnu` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-linux-s390x-gnu` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-linux-x64-gnu` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-linux-x64-musl` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-wasm32-wasi` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-win32-arm64-msvc` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-win32-ia32-msvc` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `@unrs/resolver-binding-win32-x64-msvc` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

Updates `electron-to-chromium` from 1.5.139 to 1.5.140
- [Changelog](https://github.com/Kilian/electron-to-chromium/blob/master/CHANGELOG.md)
- [Commits](Kilian/electron-to-chromium@v1.5.139...v1.5.140)

Updates `unrs-resolver` from 1.6.1 to 1.6.3
- [Release notes](https://github.com/unrs/unrs-resolver/releases)
- [Changelog](https://github.com/unrs/unrs-resolver/blob/main/CHANGELOG.md)
- [Commits](unrs/unrs-resolver@v1.6.1...v1.6.3)

---
updated-dependencies:
- dependency-name: "@eslint/js"
  dependency-version: 9.25.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: eslint
  dependency-version: 9.25.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: eslint-import-resolver-typescript
  dependency-version: 4.3.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: pnpm
  dependency-version: 10.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: typescript-eslint
  dependency-version: 8.31.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.31.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.31.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@typescript-eslint/type-utils"
  dependency-version: 8.31.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@typescript-eslint/utils"
  dependency-version: 8.31.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@typescript-eslint/visitor-keys"
  dependency-version: 8.31.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-darwin-arm64"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-darwin-x64"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-freebsd-x64"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-linux-arm-gnueabihf"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-linux-arm-musleabihf"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-linux-arm64-gnu"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-linux-arm64-musl"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-linux-ppc64-gnu"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-linux-riscv64-gnu"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-linux-s390x-gnu"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-linux-x64-gnu"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-linux-x64-musl"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-wasm32-wasi"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-win32-arm64-msvc"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-win32-ia32-msvc"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: "@unrs/resolver-binding-win32-x64-msvc"
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: electron-to-chromium
  dependency-version: 1.5.140
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
- dependency-name: unrs-resolver
  dependency-version: 1.6.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 21, 2025
@vercel
Copy link

vercel bot commented Apr 21, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
github-rest-api-executor ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 21, 2025 10:31pm

@github-actions github-actions bot merged commit b4f7a2a into main Apr 21, 2025
4 of 5 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/packages-506bd1b4bb branch April 21, 2025 22:31
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 javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant