deps: bump the all-dependencies group with 16 updates
Type: Pull Request
State: Merged
Association: Contributor
Comments: 0
(6 months ago)
(6 months ago)
(6 months ago)
by github-actions[bot]
dependencies
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
Commits
f2287177.5.1aede1837.5.1 changelog62bfcaefix: type of DraftHeadersVersion (#506)e2d7fa0docs: add note about ietf rate limit headers draft 92b84976fix: allow using express v4.11+, since v5 is out of beta89ab85abuild(deps): bump tar-fs,@babel/code-frame(#501)60530e1chore: fix lint issues98bf0a3build(deps): bump tar-fs (#499)78f42a6build(deps-dev): bump axios from 1.7.5 to 1.9.0 (#498)6a6e699Add 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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: 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
3ebaa3bThanks@EmrysMyrddin! - Added newwithStateplugin 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
WeakMapwith a stable key (often thecontextorrequestobject). While it works, it's not very convenient for plugin developers, and is prone to error with the choice of key.The new
withStateutility 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
statepayload 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:
forOperationfor a data scoped to GraphQL operation (Envelop, Yoga and Hive Gateway)forRequestfor a data scoped to HTTP request (Yoga and Hive Gateway)forSubgraphExecutionfor 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
9f0d6ffchore(release): update monorepo packages versions (#2609)3ebaa3bfeat(core): New plugin utilswithState(#2607)0b116f6chore(deps): update dependency typescript to v5.8.3 (#2543)109dc4cchore(deps): update all non-major dependencies (#2544)d681a53fix git url (#2521)e18b00ffix(deps): update graphql-tools (#2504)aa25059fix(deps): update graphql-tools (#2501)- See full diff in compare view
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
b40ba2cRevision 0.34.36 (#1276)cb3f898Ecosystem (#1274)- See full diff in compare view
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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: 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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: 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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: 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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: 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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: 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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: 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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: 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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: 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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: 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
923361cchore: Publish1.12.5withswc_corev29.0.23789c22chore: Update changelogfbbc3e5chore: Publish1.12.5-nightly-20250621.1withswc_corev29.0.2a95fcd3chore: Publish crates withswc_corev29.0.2d6ac3b7refactor(es/lexer): Remove faster path for\t(#10650)1be2ca0perf(es/parser): Optimizenext_token(#10654)9262a59fix(es/parser): consider reseved ident in jsx name (#10647)bfd3bc5fix(es/parser): Parse jsx entity (#10652)72f51d4chore: Update changelog- See full diff in compare view
Updates caniuse-lite from 1.0.30001723 to 1.0.30001724
Commits
813c40bUpdate caniuse-db 1.0.30001724- See full diff in compare view
Updates unrs-resolver from 1.9.0 to 1.9.1
Release notes
Sourced from unrs-resolver's releases.
v1.9.1
Bug Fixes
- (deps) update all dependencies (#157) (by
@renovate[bot])Contributors
@renovate[bot]
Changelog
Sourced from unrs-resolver's changelog.
1.9.1 - 2025-06-20
Bug Fixes
- (deps) update all dependencies (#157) (by
@renovate[bot])Contributors
@renovate[bot]
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
1
2
+170
-170
Package Dependencies
@swc/core-linux-arm-gnueabihf
npm
1.12.4 → 1.12.5
Patch
@swc/core-linux-arm64-gnu
npm
1.12.4 → 1.12.5
Patch
@swc/core-linux-arm64-musl
npm
1.12.4 → 1.12.5
Patch
@swc/core-win32-arm64-msvc
npm
1.12.4 → 1.12.5
Patch
@swc/core-win32-ia32-msvc
npm
1.12.4 → 1.12.5
Patch
Technical Details
| ID: | 2019116 |
| UUID: | 2610358347 |
| Node ID: | PR_kwDONiXIMs6bluhL |
| Host: | GitHub |
| Repository: | mattfsourcecode/node-graphql-code-test |
| Merge State: | Unknown |