Skip to content

Commit 15bc51f

Browse files
hvasconcelosclaude
andauthored
Update dependencies to latest semver-compatible versions (#19)
* Update dependencies to latest semver-compatible versions - graphql-request: 7.3.5 -> 7.4.0 - viem: 2.41.2 -> 2.43.5 - @types/bun: updated to 1.3.5 - Fix formatting in cli.test.ts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * chore: remove unused cookie and cookie-parser dependencies --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b9ad29c commit 15bc51f

File tree

3 files changed

+53
-71
lines changed

3 files changed

+53
-71
lines changed

bun.lock

Lines changed: 29 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -58,39 +58,36 @@
5858
"devDependencies": {
5959
"@biomejs/biome": "1.9.4",
6060
"@types/bun": "latest",
61-
"@types/uuid": "^9.0.2",
62-
"ganache": "^7.8.0",
61+
"@types/uuid": "^9.0.8",
62+
"ganache": "^7.9.2",
6363
"husky": "^8.0.3",
64-
"prisma": "^4.15.0",
65-
"typescript": "^5.0.4"
64+
"prisma": "^4.16.2",
65+
"typescript": "^5.9.3"
6666
},
6767
"dependencies": {
68-
"@elastic/elasticsearch": "^8.8.1",
69-
"@envelop/core": "^4.0.0",
70-
"@envelop/graphql-middleware": "^5.0.0",
68+
"@elastic/elasticsearch": "^8.19.1",
69+
"@envelop/core": "^4.0.3",
70+
"@envelop/graphql-middleware": "^5.0.3",
7171
"@graphql-yoga/node": "^3.9.1",
7272
"@paljs/plugins": "^5.3.3",
73-
"@pothos/core": "^3.30.0",
74-
"@pothos/plugin-prisma": "^3.51.1",
75-
"@pothos/plugin-validation": "^3.9.2",
76-
"@prisma/client": "^4.15.0",
77-
"@taikai/scribal": "^1.0.3",
78-
"@types/cookie": "^0.5.1",
79-
"@types/express": "^4.17.17",
80-
"axios": "^1.4.0",
81-
"bullmq": "^3.15.1",
73+
"@pothos/core": "^3.41.2",
74+
"@pothos/plugin-prisma": "^3.65.3",
75+
"@pothos/plugin-validation": "^3.10.2",
76+
"@prisma/client": "^4.16.2",
77+
"@taikai/scribal": "^1.0.4",
78+
"@types/express": "^4.17.25",
79+
"axios": "^1.13.2",
80+
"bullmq": "^3.16.2",
8281
"commander": "^14.0.2",
83-
"cookie": "^0.5.0",
84-
"cookie-parser": "^1.4.6",
85-
"express": "^4.18.2",
82+
"express": "^4.22.1",
8683
"googleapis": "^118.0.0",
87-
"graphql": "^16.6.0",
88-
"graphql-request": "^7.2.0",
89-
"graphql-scalars": "^1.22.0",
90-
"handlebars": "^4.7.7",
84+
"graphql": "^16.12.0",
85+
"graphql-request": "^7.4.0",
86+
"graphql-scalars": "^1.25.0",
87+
"handlebars": "^4.7.8",
9188
"inflection": "^2.0.1",
92-
"viem": "^2.21.0",
89+
"viem": "^2.43.5",
9390
"yaml": "^2.8.2",
94-
"zod": "^3.21.4"
91+
"zod": "^3.25.76"
9592
}
9693
}

src/__tests__/dsl/cli.test.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,7 @@ program:
247247
});
248248

249249
it('should decompile to output file', async () => {
250-
const jsonContent = JSON.stringify([
251-
{ name: 'set', args: { variable: 'test', value: 123 } },
252-
]);
250+
const jsonContent = JSON.stringify([{ name: 'set', args: { variable: 'test', value: 123 } }]);
253251
const inputFile = createTestFile('input.json', jsonContent);
254252
const outputFile = join(testDir, 'output.yaml');
255253

@@ -288,9 +286,7 @@ program:
288286
});
289287

290288
it('should decompile base64 encoded content', async () => {
291-
const jsonContent = JSON.stringify([
292-
{ name: 'set', args: { variable: 'test', value: 42 } },
293-
]);
289+
const jsonContent = JSON.stringify([{ name: 'set', args: { variable: 'test', value: 42 } }]);
294290
const base64Content = Buffer.from(jsonContent).toString('base64');
295291
const inputFile = createTestFile('input.b64', base64Content);
296292

0 commit comments

Comments
 (0)