Skip to content

Commit 517e33b

Browse files
authored
chore: Upgrade dependencies (#89)
1 parent 7f584ab commit 517e33b

21 files changed

Lines changed: 496 additions & 408 deletions

File tree

examples/builtin-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"graphql-yoga": "^5.18.0"
1212
},
1313
"devDependencies": {
14-
"@types/node": "^25.3.2"
14+
"@types/node": "^25.3.3"
1515
}
1616
}

examples/composed-gateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"graphql-yoga": "^5.18.0"
1212
},
1313
"devDependencies": {
14-
"@types/node": "^25.3.2"
14+
"@types/node": "^25.3.3"
1515
}
1616
}

examples/travel-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"graphql-yoga": "^5.18.0"
1212
},
1313
"devDependencies": {
14-
"@types/node": "^25.3.2"
14+
"@types/node": "^25.3.3"
1515
}
1616
}

examples/weather-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"graphql-yoga": "^5.18.0"
1212
},
1313
"devDependencies": {
14-
"@types/node": "^25.3.2"
14+
"@types/node": "^25.3.3"
1515
}
1616
}

examples/without-graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"@stackables/bridge": "workspace:*"
1212
},
1313
"devDependencies": {
14-
"@types/node": "^25.3.2"
14+
"@types/node": "^25.3.3"
1515
}
1616
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"devDependencies": {
2424
"@changesets/changelog-github": "^0.6.0",
25-
"@changesets/cli": "^2.29.8",
25+
"@changesets/cli": "^2.30.0",
2626
"@eslint/js": "^10.0.1",
2727
"@tsconfig/node24": "^24.0.4",
2828
"eslint": "^10.0.2",

packages/bridge-compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"devDependencies": {
2929
"@stackables/bridge-parser": "workspace:*",
30-
"@types/node": "^25.3.2",
30+
"@types/node": "^25.3.3",
3131
"fast-check": "^4.5.3",
3232
"typescript": "^5.9.3"
3333
},

packages/bridge-compiler/test/fuzz-compile.test.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,16 @@ const AsyncFunction = Object.getPrototypeOf(async function () {})
1616
...args: string[]
1717
) => (...args: unknown[]) => Promise<unknown>;
1818

19-
const identifierArb = fc.stringMatching(/^[a-zA-Z_][a-zA-Z0-9_]{0,20}$/);
19+
const forbiddenPathSegments = new Set([
20+
"__proto__",
21+
"prototype",
22+
"constructor",
23+
]);
24+
25+
const identifierArb = fc
26+
.stringMatching(/^[a-zA-Z_][a-zA-Z0-9_]{0,20}$/)
27+
// Runtime blocks unsafe traversal segments; fuzz should stay in valid domain.
28+
.filter((segment) => !forbiddenPathSegments.has(segment));
2029
const canonicalIdentifierArb = fc.constantFrom(
2130
"a",
2231
"b",

packages/bridge-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"@stackables/bridge-types": "workspace:*"
3636
},
3737
"devDependencies": {
38-
"@types/node": "^25.3.2",
38+
"@types/node": "^25.3.3",
3939
"typescript": "^5.9.3"
4040
},
4141
"publishConfig": {

packages/bridge-graphql/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@
3434
"devDependencies": {
3535
"@graphql-tools/executor-http": "^3.1.0",
3636
"@stackables/bridge-parser": "workspace:*",
37-
"@types/node": "^25.3.2",
38-
"graphql": "^16.13.0",
37+
"@types/node": "^25.3.3",
38+
"graphql": "^16.13.1",
3939
"graphql-yoga": "^5.18.0",
4040
"typescript": "^5.9.3"
4141
},
4242
"peerDependencies": {
43-
"graphql": "^16",
44-
"@graphql-tools/utils": "^11"
43+
"@graphql-tools/utils": "^11",
44+
"graphql": "^16"
4545
},
4646
"publishConfig": {
4747
"access": "public"

0 commit comments

Comments
 (0)