Skip to content

Commit

Permalink
fix(deps): update dependency @commander-js/extra-typings to v13 (#392)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Arda TANRIKULU <ardatanrikulu@gmail.com>
  • Loading branch information
3 people authored Dec 31, 2024
1 parent 33f8402 commit 121751d
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
8 changes: 8 additions & 0 deletions .changeset/@graphql-hive_gateway-392-dependencies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
'@graphql-hive/gateway': patch
---

dependencies updates:

- Updated dependency [`@commander-js/extra-typings@^13.0.0` ↗︎](https://www.npmjs.com/package/@commander-js/extra-typings/v/13.0.0) (from `^12.1.0`, in `dependencies`)
- Updated dependency [`commander@^13.0.0` ↗︎](https://www.npmjs.com/package/commander/v/13.0.0) (from `^12.0.0`, in `dependencies`)
2 changes: 1 addition & 1 deletion packages/gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
}
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@commander-js/extra-typings": "^13.0.0",
"@envelop/core": "^5.0.2",
"@graphql-hive/gateway-runtime": "workspace:^",
"@graphql-mesh/cache-cfw-kv": "^0.104.0",
Expand Down
3 changes: 1 addition & 2 deletions packages/gateway/src/commands/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
defaultOptions,
type AddCommand,
type CLIContext,
type CLIGlobals,
type GatewayCLIConfig,
} from '../cli';
import {
Expand Down Expand Up @@ -40,7 +39,7 @@ export const addCommand: AddCommand = (ctx, cli) =>
hivePersistedDocumentsEndpoint,
hivePersistedDocumentsToken,
...opts
} = this.optsWithGlobals<CLIGlobals>();
} = this.optsWithGlobals();
const loadedConfig = await loadConfig({
log: ctx.log,
configPath: opts.configPath,
Expand Down
3 changes: 1 addition & 2 deletions packages/gateway/src/commands/subgraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import {
defaultOptions,
type AddCommand,
type CLIContext,
type CLIGlobals,
type GatewayCLIConfig,
} from '../cli';
import {
Expand Down Expand Up @@ -41,7 +40,7 @@ export const addCommand: AddCommand = (ctx, cli) =>
hivePersistedDocumentsEndpoint,
hivePersistedDocumentsToken,
...opts
} = this.optsWithGlobals<CLIGlobals>();
} = this.optsWithGlobals();
const loadedConfig = await loadConfig({
log: ctx.log,
configPath: opts.configPath,
Expand Down
3 changes: 1 addition & 2 deletions packages/gateway/src/commands/supergraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import {
defaultOptions,
type AddCommand,
type CLIContext,
type CLIGlobals,
type GatewayCLIConfig,
} from '../cli';
import {
Expand Down Expand Up @@ -57,7 +56,7 @@ export const addCommand: AddCommand = (ctx, cli) =>
hivePersistedDocumentsEndpoint,
hivePersistedDocumentsToken,
...opts
} = this.optsWithGlobals<CLIGlobals>();
} = this.optsWithGlobals();

// TODO: move to optsWithGlobals once https://github.com/commander-js/extra-typings/pull/76 is merged
const { apolloUplink } = this.opts();
Expand Down
11 changes: 10 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2248,6 +2248,15 @@ __metadata:
languageName: node
linkType: hard

"@commander-js/extra-typings@npm:^13.0.0":
version: 13.0.0
resolution: "@commander-js/extra-typings@npm:13.0.0"
peerDependencies:
commander: ~13.0.0
checksum: 10c0/7d1f75624ef5026462600b9ef9f7dbb701cefa3a17204bf57a9946aece44ccff343407d910620645c1daa9416439f5be6597adf75a0b8b4cfd08d59b345d0fcc
languageName: node
linkType: hard

"@cspotcode/source-map-support@npm:0.8.1, @cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
Expand Down Expand Up @@ -3127,7 +3136,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-hive/gateway@workspace:packages/gateway"
dependencies:
"@commander-js/extra-typings": "npm:^12.1.0"
"@commander-js/extra-typings": "npm:^13.0.0"
"@envelop/core": "npm:^5.0.2"
"@graphql-hive/gateway-runtime": "workspace:^"
"@graphql-mesh/cache-cfw-kv": "npm:^0.104.0"
Expand Down

0 comments on commit 121751d

Please sign in to comment.