Skip to content

Commit 8fdaef5

Browse files
dependabot[bot]github-actions[bot]ardatan
authored
Bump the all-minor-patch group with 10 updates (#1747)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Arda TANRIKULU <[email protected]>
1 parent 6d1dadb commit 8fdaef5

File tree

12 files changed

+128
-424
lines changed

12 files changed

+128
-424
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'@graphql-hive/gateway-runtime': patch
3+
---
4+
5+
dependencies updates:
6+
7+
- Updated dependency [`@graphql-hive/core@^0.18.0` ↗︎](https://www.npmjs.com/package/@graphql-hive/core/v/0.18.0) (from `^0.15.1`, in `dependencies`)
8+
- Updated dependency [`@graphql-hive/yoga@^0.46.0` ↗︎](https://www.npmjs.com/package/@graphql-hive/yoga/v/0.46.0) (from `^0.43.1`, in `dependencies`)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@graphql-hive/plugin-opentelemetry': patch
3+
---
4+
5+
dependencies updates:
6+
7+
- Updated dependency [`@graphql-hive/core@^0.18.0` ↗︎](https://www.npmjs.com/package/@graphql-hive/core/v/0.18.0) (from `^0.15.1`, in `dependencies`)

e2e/cloudflare-workers/wrangler.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ compatibility_date = "2024-01-01"
66
"@graphql-tools/wrap" = "../../packages/wrap/src/index.ts"
77
"@graphql-tools/batch-delegate" = "../../packages/batch-delegate/src/index.ts"
88
"@graphql-tools/delegate" = "../../packages/delegate/src/index.ts"
9-
"@graphql-hive/signal" = "../../packages/signal/src/index.ts"
9+
"@graphql-hive/signal" = "../../packages/signal/src/index.ts"
10+
"@graphql-hive/logger" = "../../packages/logger/src/index.ts"

e2e/self-hosting-hive/self-hosting-hive.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe('Self Hosting Hive', () => {
6060
/\[hiveSupergraphFetcher\] GET .* succeeded with status 200/,
6161
);
6262
expect(gwLogs).toMatch(
63-
/\[useHiveConsole\] \[hive\]\[usage\]\[agent\] POST .* succeeded with status 200/,
63+
/\[useHiveConsole\] POST .* succeeded with status 200/,
6464
);
6565
});
6666
});

internal/heapsnapshot/dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var __callDispose = (stack, error, hasError) => {
4949
};
5050
return next();
5151
};
52-
const __dirname = fileURLToPath(new URL(".", import.meta.url));
52+
const __dirname$1 = fileURLToPath(new URL(".", import.meta.url));
5353
async function parseHeapSnapshot(data, opts = {}) {
5454
var _stack = [];
5555
try {
@@ -79,7 +79,7 @@ async function parseHeapSnapshot(data, opts = {}) {
7979
loader.close();
8080
await loader.parsingComplete;
8181
const secondWorker = new Worker(
82-
path.join(__dirname, "heap_snapshot_worker-entrypoint.js")
82+
path.join(__dirname$1, "heap_snapshot_worker-entrypoint.js")
8383
// exists after building
8484
);
8585
const _ = __using(_stack, {

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@
5151
"eslint-plugin-n": "17.23.1",
5252
"graphql": "16.12.0",
5353
"jest": "30.2.0",
54-
"prettier": "3.7.1",
54+
"prettier": "3.7.3",
5555
"prettier-plugin-pkg": "0.21.2",
5656
"prettier-plugin-sh": "0.18.0",
5757
"ts-jest": "29.4.5",
5858
"ts-node": "10.9.2",
5959
"typescript": "5.9.3",
6060
"typescript-eslint": "8.48.0",
61-
"vite": "7.2.4",
61+
"vite": "7.2.6",
6262
"vite-tsconfig-paths": "patch:vite-tsconfig-paths@npm:5.1.3#~/.yarn/patches/vite-tsconfig-paths-npm-5.1.3-1736ca1872.patch",
6363
"vitest": "3.2.4"
6464
},
@@ -75,6 +75,7 @@
7575
"cookie": "^1.0.0",
7676
"cross-spawn": "7.0.6",
7777
"esbuild": "0.25.5",
78+
"express": "^5.2.0",
7879
"graphql": "16.12.0",
7980
"ioredis-mock": "patch:[email protected]#~/.yarn/patches/ioredis-mock-npm-8.9.0-530d4422b9.patch",
8081
"jest-environment-node@npm:30.2.0": "patch:jest-environment-node@npm%3A30.2.0#~/.yarn/patches/jest-environment-node-npm-30.2.0-b72db4433a.patch",
@@ -84,6 +85,6 @@
8485
"tar-fs": "3.1.1",
8586
"tmp": "0.2.4",
8687
"tsx": "patch:tsx@npm%3A4.20.3#~/.yarn/patches/tsx-npm-4.20.3-7de67a623f.patch",
87-
"vite": "7.2.4"
88+
"vite": "7.2.6"
8889
}
8990
}

packages/delegate/src/createRequest.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,10 @@ export function createRequest({
8989
const argNodes: ArgumentNode[] = [];
9090

9191
if (args != null) {
92-
const rootType = targetSchema != null ? getDefinedRootType(targetSchema, targetOperation) : undefined;
92+
const rootType =
93+
targetSchema != null
94+
? getDefinedRootType(targetSchema, targetOperation)
95+
: undefined;
9396
const rootField = rootType?.getFields()[rootFieldName];
9497
const rootFieldArgs = rootField?.args;
9598
for (const argName in args) {

packages/plugins/opentelemetry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"graphql": "^15.9.0 || ^16.9.0"
6363
},
6464
"dependencies": {
65-
"@graphql-hive/core": "^0.15.1",
65+
"@graphql-hive/core": "^0.18.0",
6666
"@graphql-hive/gateway-runtime": "workspace:^",
6767
"@graphql-hive/logger": "workspace:^",
6868
"@graphql-mesh/cross-helpers": "^0.4.10",

packages/runtime/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@
4949
"@envelop/disable-introspection": "^9.0.0",
5050
"@envelop/generic-auth": "^11.0.0",
5151
"@envelop/instrumentation": "^1.0.0",
52-
"@graphql-hive/core": "^0.15.1",
52+
"@graphql-hive/core": "^0.18.0",
5353
"@graphql-hive/logger": "workspace:^",
5454
"@graphql-hive/pubsub": "workspace:^",
5555
"@graphql-hive/signal": "workspace:^",
56-
"@graphql-hive/yoga": "^0.43.1",
56+
"@graphql-hive/yoga": "^0.46.0",
5757
"@graphql-mesh/cross-helpers": "^0.4.10",
5858
"@graphql-mesh/fusion-runtime": "workspace:^",
5959
"@graphql-mesh/hmac-upstream-signature": "workspace:^",

packages/runtime/src/createGatewayRuntime.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,7 @@ export function createGatewayRuntime<
292292
const fetcher = createSchemaFetcher({
293293
endpoint,
294294
key,
295-
logger: LegacyLogger.from(
296-
configContext.log.child('[hiveSchemaFetcher] '),
297-
),
295+
logger: configContext.log.child('[hiveSchemaFetcher] '),
298296
});
299297
schemaFetcher = function fetchSchemaFromCDN() {
300298
pausePolling();

0 commit comments

Comments
 (0)