Skip to content

deps: bump the all-dependencies group with 16 updates #209

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

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 23, 2025

Bumps the all-dependencies group with 16 updates:

Package From To
express-rate-limit 7.5.0 7.5.1
@swc/core 1.12.4 1.12.5
@envelop/core 5.2.3 5.3.0
@sinclair/typebox 0.34.35 0.34.36
@swc/core-darwin-arm64 1.12.4 1.12.5
@swc/core-darwin-x64 1.12.4 1.12.5
@swc/core-linux-arm-gnueabihf 1.12.4 1.12.5
@swc/core-linux-arm64-gnu 1.12.4 1.12.5
@swc/core-linux-arm64-musl 1.12.4 1.12.5
@swc/core-linux-x64-gnu 1.12.4 1.12.5
@swc/core-linux-x64-musl 1.12.4 1.12.5
@swc/core-win32-arm64-msvc 1.12.4 1.12.5
@swc/core-win32-ia32-msvc 1.12.4 1.12.5
@swc/core-win32-x64-msvc 1.12.4 1.12.5
caniuse-lite 1.0.30001723 1.0.30001724
unrs-resolver 1.9.0 1.9.1

Updates express-rate-limit from 7.5.0 to 7.5.1

Release notes

Sourced from express-rate-limit's releases.

v7.5.1

You can view the changelog here.

Commits
  • f228717 7.5.1
  • aede183 7.5.1 changelog
  • 62bfcae fix: type of DraftHeadersVersion (#506)
  • e2d7fa0 docs: add note about ietf rate limit headers draft 9
  • 2b84976 fix: allow using express v4.11+, since v5 is out of beta
  • 89ab85a build(deps): bump tar-fs, @​babel/code-frame (#501)
  • 60530e1 chore: fix lint issues
  • 98bf0a3 build(deps): bump tar-fs (#499)
  • 78f42a6 build(deps-dev): bump axios from 1.7.5 to 1.9.0 (#498)
  • 6a6e699 Add unit test for resetKey method in MemoryStore (#496)
  • Additional commits viewable in compare view

Updates @swc/core from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates @envelop/core from 5.2.3 to 5.3.0

Changelog

Sourced from @​envelop/core's changelog.

5.3.0

Minor Changes

  • #2607 3ebaa3b Thanks @​EmrysMyrddin! - Added new withState plugin utility for easy data sharing between hooks.

    New plugin utility to ease data sharing between hooks

    Sometimes, plugins can grow in complexity and need to share data between its hooks.

    A way to solve this can be to mutate the graphql context, but this context is not always available in all hooks in Yoga or Hive Gateway plugins. Moreover, mutating the context gives access to your internal data to all other plugins and graphql resolvers, without mentioning performance impact on field access on this object.

    The recommended approach to this problem was to use a WeakMap with a stable key (often the context or request object). While it works, it's not very convenient for plugin developers, and is prone to error with the choice of key.

    The new withState utility solves this DX issue by providing an easy and straightforward API for data sharing between hooks.

    import { withState } from '@envelop/core'
    type State = { foo: string }
    const myPlugin = () =>
    withState<Plugin, State>(() => ({
    onParse({ state }) {
    state.forOperation.foo = 'foo'
    },
    onValidate({ state }) {
    const { foo } = state.forOperation
    console.log('foo', foo)
    }
    }))

    The state payload field will be available in all relevant hooks, making it easy to access shared data. It also forces the developer to choose the scope for the data:

    • forOperation for a data scoped to GraphQL operation (Envelop, Yoga and Hive Gateway)
    • forRequest for a data scoped to HTTP request (Yoga and Hive Gateway)
    • forSubgraphExecution for a data scoped to the subgraph execution (Hive Gateway)

    Not all scopes are available in all hooks, the type reflects which scopes are available

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by theguild-bot, a new releaser for @​envelop/core since your current version.


Updates @sinclair/typebox from 0.34.35 to 0.34.36

Commits

Updates @swc/core-darwin-arm64 from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core-darwin-arm64's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates @swc/core-darwin-x64 from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core-darwin-x64's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates @swc/core-linux-arm-gnueabihf from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core-linux-arm-gnueabihf's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates @swc/core-linux-arm64-gnu from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core-linux-arm64-gnu's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates @swc/core-linux-arm64-musl from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core-linux-arm64-musl's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates @swc/core-linux-x64-gnu from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core-linux-x64-gnu's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates @swc/core-linux-x64-musl from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core-linux-x64-musl's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates @swc/core-win32-arm64-msvc from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core-win32-arm64-msvc's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates @swc/core-win32-ia32-msvc from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core-win32-ia32-msvc's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates @swc/core-win32-x64-msvc from 1.12.4 to 1.12.5

Changelog

Sourced from @​swc/core-win32-x64-msvc's changelog.

[1.12.5] - 2025-06-21

Bug Fixes

Performance

Refactor

Commits
  • 923361c chore: Publish 1.12.5 with swc_core v29.0.2
  • 3789c22 chore: Update changelog
  • fbbc3e5 chore: Publish 1.12.5-nightly-20250621.1 with swc_core v29.0.2
  • a95fcd3 chore: Publish crates with swc_core v29.0.2
  • d6ac3b7 refactor(es/lexer): Remove faster path for \t (#10650)
  • 1be2ca0 perf(es/parser): Optimize next_token (#10654)
  • 9262a59 fix(es/parser): consider reseved ident in jsx name (#10647)
  • bfd3bc5 fix(es/parser): Parse jsx entity (#10652)
  • 72f51d4 chore: Update changelog
  • See full diff in compare view

Updates caniuse-lite from 1.0.30001723 to 1.0.30001724

Commits

Updates unrs-resolver from 1.9.0 to 1.9.1

Release notes

Sourced from unrs-resolver's releases.

v1.9.1

Bug Fixes

Contributors

Changelog

Sourced from unrs-resolver's changelog.

1.9.1 - 2025-06-20

Bug Fixes

Contributors

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 all-dependencies group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [express-rate-limit](https://github.com/express-rate-limit/express-rate-limit) | `7.5.0` | `7.5.1` |
| [@swc/core](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [@envelop/core](https://github.com/graphql-hive/envelop/tree/HEAD/packages/core) | `5.2.3` | `5.3.0` |
| [@sinclair/typebox](https://github.com/sinclairzx81/typebox) | `0.34.35` | `0.34.36` |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [@swc/core-darwin-x64](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [@swc/core-linux-arm-gnueabihf](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [@swc/core-linux-arm64-musl](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [@swc/core-linux-x64-musl](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [@swc/core-win32-arm64-msvc](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [@swc/core-win32-ia32-msvc](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [@swc/core-win32-x64-msvc](https://github.com/swc-project/swc) | `1.12.4` | `1.12.5` |
| [caniuse-lite](https://github.com/browserslist/caniuse-lite) | `1.0.30001723` | `1.0.30001724` |
| [unrs-resolver](https://github.com/unrs/unrs-resolver) | `1.9.0` | `1.9.1` |


Updates `express-rate-limit` from 7.5.0 to 7.5.1
- [Release notes](https://github.com/express-rate-limit/express-rate-limit/releases)
- [Commits](express-rate-limit/express-rate-limit@v7.5.0...v7.5.1)

Updates `@swc/core` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `@envelop/core` from 5.2.3 to 5.3.0
- [Release notes](https://github.com/graphql-hive/envelop/releases)
- [Changelog](https://github.com/graphql-hive/envelop/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/envelop/commits/@envelop/[email protected]/packages/core)

Updates `@sinclair/typebox` from 0.34.35 to 0.34.36
- [Commits](sinclairzx81/typebox@0.34.35...0.34.36)

Updates `@swc/core-darwin-arm64` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `@swc/core-darwin-x64` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `@swc/core-linux-arm-gnueabihf` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `@swc/core-linux-arm64-gnu` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `@swc/core-linux-arm64-musl` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `@swc/core-linux-x64-gnu` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `@swc/core-linux-x64-musl` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `@swc/core-win32-arm64-msvc` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `@swc/core-win32-ia32-msvc` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `@swc/core-win32-x64-msvc` from 1.12.4 to 1.12.5
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.12.4...v1.12.5)

Updates `caniuse-lite` from 1.0.30001723 to 1.0.30001724
- [Commits](browserslist/caniuse-lite@1.0.30001723...1.0.30001724)

Updates `unrs-resolver` from 1.9.0 to 1.9.1
- [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.9.0...v1.9.1)

---
updated-dependencies:
- dependency-name: express-rate-limit
  dependency-version: 7.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core"
  dependency-version: 1.12.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@envelop/core"
  dependency-version: 5.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@sinclair/typebox"
  dependency-version: 0.34.36
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core-darwin-arm64"
  dependency-version: 1.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core-darwin-x64"
  dependency-version: 1.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core-linux-arm-gnueabihf"
  dependency-version: 1.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core-linux-arm64-gnu"
  dependency-version: 1.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core-linux-arm64-musl"
  dependency-version: 1.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core-linux-x64-gnu"
  dependency-version: 1.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core-linux-x64-musl"
  dependency-version: 1.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core-win32-arm64-msvc"
  dependency-version: 1.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core-win32-ia32-msvc"
  dependency-version: 1.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core-win32-x64-msvc"
  dependency-version: 1.12.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: caniuse-lite
  dependency-version: 1.0.30001724
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: unrs-resolver
  dependency-version: 1.9.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 23, 2025
@github-actions github-actions bot enabled auto-merge June 23, 2025 04:22
@github-actions github-actions bot merged commit 218b588 into master Jun 23, 2025
3 of 4 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/all-dependencies-3d43bf8ff9 branch June 23, 2025 04:22
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