Skip to content

Commit 008076c

Browse files
authored
chore(deps): update dependencies (#390)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Chores** - Upgraded several core dependencies, including `@tanstack/react-query`, `@tanstack/vue-query`, and `svelte`, to their latest versions. - Adjusted version constraints for various packages to broaden compatibility. - These updates enhance overall performance, stability, and reliability. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent b3c3ac6 commit 008076c

File tree

20 files changed

+2092
-3814
lines changed

20 files changed

+2092
-3814
lines changed

apps/content/.vitepress/theme/custom.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:root {
2-
--vp-font-family-base: -apple-system, BlinkMacSystemFont, segoe ui, Helvetica, Arial, sans-serif, apple color emoji,
3-
segoe ui emoji;
2+
--vp-font-family-base:
3+
-apple-system, BlinkMacSystemFont, segoe ui, Helvetica, Arial, sans-serif, apple color emoji, segoe ui emoji;
44
--vp-font-family-mono: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
55
}
66

apps/content/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
"@orpc/zod": "workspace:*",
2323
"@pinia/colada": "^0.14.0",
2424
"@shikijs/vitepress-twoslash": "^3.0.0",
25-
"@tanstack/react-query": "^5.66.4",
26-
"@tanstack/solid-query": "^5.66.4",
27-
"@tanstack/svelte-query": "^5.66.4",
28-
"@tanstack/vue-query": "^5.66.4",
29-
"@types/node": "^22.13.1",
30-
"openai": "^4.85.4",
25+
"@tanstack/react-query": "^5.72.2",
26+
"@tanstack/solid-query": "^5.72.2",
27+
"@tanstack/svelte-query": "^5.72.2",
28+
"@tanstack/vue-query": "^5.72.2",
29+
"@types/node": "^22.14.0",
30+
"openai": "^4.93.0",
3131
"pinia": "^3.0.0",
32-
"svelte": "^5.0.0",
32+
"svelte": "^5.25.12",
3333
"vitepress": "1.6.3",
34-
"vitepress-plugin-group-icons": "^1.3.6",
34+
"vitepress-plugin-group-icons": "^1.4.1",
3535
"vitepress-plugin-llms": "^1.1.0",
3636
"vitepress-plugin-shiki-twoslash": "^0.0.6",
3737
"vue": "3.5.13"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"@testing-library/react": "^16.0.1",
3535
"@testing-library/svelte": "^5.2.7",
3636
"@testing-library/user-event": "^14.6.1",
37-
"@types/node": "^22.13.1",
37+
"@types/node": "^22.14.0",
3838
"@vitest/coverage-v8": "^3.0.4",
3939
"@vitest/ui": "^3.0.9",
4040
"@vue/test-utils": "^2.4.6",

packages/arktype/src/converter.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ it('arkTypeToJsonSchemaConverter.convert', async () => {
77

88
expect(converter.convert(type('string'), { strategy: 'input' })).toEqual(
99
[true, {
10+
$schema: 'https://json-schema.org/draft/2020-12/schema',
1011
type: 'string',
1112
}],
1213
)
1314
expect(converter.convert(type({ a: 'string' }), { strategy: 'input' })).toEqual(
1415
[true, {
16+
$schema: 'https://json-schema.org/draft/2020-12/schema',
1517
type: 'object',
1618
properties: { a: { type: 'string' } },
1719
required: ['a'],

packages/react-query/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,14 @@
3838
},
3939
"peerDependencies": {
4040
"@orpc/client": "workspace:*",
41-
"@tanstack/react-query": ">=5.59.0",
41+
"@tanstack/react-query": ">=5.55.0",
4242
"react": ">=18.3.0"
4343
},
4444
"dependencies": {
4545
"@orpc/shared": "workspace:*"
4646
},
4747
"devDependencies": {
48+
"@tanstack/vue-query": "^5.72.2",
4849
"react": "^19.1.0",
4950
"zod": "^3.24.2"
5051
}

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@
6666
"@orpc/standard-server-node": "workspace:*"
6767
},
6868
"devDependencies": {
69-
"supertest": "^7.0.0"
69+
"supertest": "^7.1.0"
7070
}
7171
}

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
},
3636
"dependencies": {
3737
"radash": "^12.1.0",
38-
"type-fest": "^4.26.1"
38+
"type-fest": "^4.39.1"
3939
}
4040
}

packages/solid-query/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,14 @@
3838
},
3939
"peerDependencies": {
4040
"@orpc/client": "workspace:*",
41-
"@tanstack/solid-query": ">=5.59.0",
41+
"@tanstack/solid-query": ">=5.55.0",
4242
"solid-js": ">=1.9.0"
4343
},
4444
"dependencies": {
4545
"@orpc/shared": "workspace:*"
4646
},
4747
"devDependencies": {
48+
"@tanstack/vue-query": "^5.72.2",
4849
"zod": "^3.24.2"
4950
}
5051
}

packages/standard-server-fetch/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737
"@orpc/standard-server": "workspace:*"
3838
},
3939
"devDependencies": {
40-
"@hono/node-server": "^1.13.8"
40+
"@hono/node-server": "^1.14.0"
4141
}
4242
}

packages/standard-server-node/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"@orpc/standard-server": "workspace:*"
3838
},
3939
"devDependencies": {
40-
"@types/node": "^22.13.1",
41-
"@types/supertest": "^6.0.2",
42-
"supertest": "^7.0.0"
40+
"@types/node": "^22.14.0",
41+
"@types/supertest": "^6.0.3",
42+
"supertest": "^7.1.0"
4343
}
4444
}

0 commit comments

Comments
 (0)