An open index of dependabot pull requests across open source projects.

deps: bump the all-dependencies group with 16 updates

Merged
Number: #209
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: June 23, 2025 at 04:21 AM UTC
(6 months ago)
Updated: June 23, 2025 at 04:22 AM UTC
(6 months ago)
Merged: June 23, 2025 at 04:22 AM UTC
(6 months ago)
by github-actions[bot]
Time to Close: 1 minute
Labels:
dependencies
Description:

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
Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+170
Deletions:
-170
Package Dependencies
Package:
@swc/core
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.9.0 → 1.9.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.0.30001723 → 1.0.30001724
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.12.4 → 1.12.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.34.35 → 0.34.36
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.5.0 → 7.5.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
5.2.3 → 5.3.0
Update Type:
Minor
Technical Details
ID: 2019116
UUID: 2610358347
Node ID: PR_kwDONiXIMs6bluhL
Host: GitHub
Repository: mattfsourcecode/node-graphql-code-test
Merge State: Unknown