Skip to content

Commit 282cefb

Browse files
committed
release: v1.138.0
1 parent 9da5517 commit 282cefb

File tree

38 files changed

+45
-48
lines changed

38 files changed

+45
-48
lines changed

e2e/solid-start/basic-cloudflare/worker-configuration.d.ts

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,16 @@
22
// Generated by Wrangler by running `wrangler types` (hash: b11df627d8b3c51b1bf3230a546b0f20)
33
// Runtime types generated with [email protected] 2025-09-24 nodejs_compat
44
declare namespace Cloudflare {
5-
interface Env {
6-
MY_VAR: 'Hello from Cloudflare'
7-
}
5+
interface Env {
6+
MY_VAR: "Hello from Cloudflare";
7+
}
88
}
99
interface Env extends Cloudflare.Env {}
1010
type StringifyValues<EnvType extends Record<string, unknown>> = {
11-
[Binding in keyof EnvType]: EnvType[Binding] extends string
12-
? EnvType[Binding]
13-
: string
14-
}
11+
[Binding in keyof EnvType]: EnvType[Binding] extends string ? EnvType[Binding] : string;
12+
};
1513
declare namespace NodeJS {
16-
interface ProcessEnv
17-
extends StringifyValues<Pick<Cloudflare.Env, 'MY_VAR'>> {}
14+
interface ProcessEnv extends StringifyValues<Pick<Cloudflare.Env, "MY_VAR">> {}
1815
}
1916

2017
// Begin runtime types

examples/react/start-bare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"@tanstack/react-router": "^1.136.18",
1414
"@tanstack/react-router-devtools": "^1.136.18",
15-
"@tanstack/react-start": "^1.137.0",
15+
"@tanstack/react-start": "^1.138.0",
1616
"react": "^19.0.0",
1717
"react-dom": "^19.0.0",
1818
"zod": "^3.24.2"

examples/react/start-basic-auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@prisma/client": "^7.0.0",
1717
"@tanstack/react-router": "^1.136.18",
1818
"@tanstack/react-router-devtools": "^1.136.18",
19-
"@tanstack/react-start": "^1.137.0",
19+
"@tanstack/react-start": "^1.138.0",
2020
"react": "^19.0.0",
2121
"react-dom": "^19.0.0",
2222
"redaxios": "^0.5.1",

examples/react/start-basic-cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"dependencies": {
1515
"@tanstack/react-router": "^1.136.18",
1616
"@tanstack/react-router-devtools": "^1.136.18",
17-
"@tanstack/react-start": "^1.137.0",
17+
"@tanstack/react-start": "^1.138.0",
1818
"react": "^19.0.0",
1919
"react-dom": "^19.0.0"
2020
},

examples/react/start-basic-react-query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@tanstack/react-router": "^1.136.18",
1616
"@tanstack/react-router-devtools": "^1.136.18",
1717
"@tanstack/react-router-ssr-query": "^1.136.18",
18-
"@tanstack/react-start": "^1.137.0",
18+
"@tanstack/react-start": "^1.138.0",
1919
"react": "^19.0.0",
2020
"react-dom": "^19.0.0",
2121
"redaxios": "^0.5.1",

examples/react/start-basic-static/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"dependencies": {
1313
"@tanstack/react-router": "^1.136.18",
1414
"@tanstack/react-router-devtools": "^1.136.18",
15-
"@tanstack/react-start": "^1.137.0",
16-
"@tanstack/start-static-server-functions": "^1.137.0",
15+
"@tanstack/react-start": "^1.138.0",
16+
"@tanstack/start-static-server-functions": "^1.138.0",
1717
"@vitejs/plugin-react": "^5.1.0",
1818
"react": "^19.0.0",
1919
"react-dom": "^19.0.0",

examples/react/start-basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"@tanstack/react-router": "^1.136.18",
1414
"@tanstack/react-router-devtools": "^1.136.18",
15-
"@tanstack/react-start": "^1.137.0",
15+
"@tanstack/react-start": "^1.138.0",
1616
"react": "^19.0.0",
1717
"react-dom": "^19.0.0",
1818
"tailwind-merge": "^2.6.0",

examples/react/start-bun/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@tanstack/react-router": "^1.136.18",
1919
"@tanstack/react-router-devtools": "^1.136.18",
2020
"@tanstack/react-router-ssr-query": "^1.136.18",
21-
"@tanstack/react-start": "^1.137.0",
21+
"@tanstack/react-start": "^1.138.0",
2222
"@tanstack/router-plugin": "^1.136.18",
2323
"react": "^19.1.1",
2424
"react-dom": "^19.1.1",

examples/react/start-clerk-basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@clerk/tanstack-react-start": "^0.26.3",
1414
"@tanstack/react-router": "^1.136.18",
1515
"@tanstack/react-router-devtools": "^1.136.18",
16-
"@tanstack/react-start": "^1.137.0",
16+
"@tanstack/react-start": "^1.138.0",
1717
"@vitejs/plugin-react": "^4.3.4",
1818
"react": "^19.0.0",
1919
"react-dom": "^19.0.0",

examples/react/start-convex-trellaux/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@tanstack/react-router": "^1.136.18",
1919
"@tanstack/react-router-devtools": "^1.136.18",
2020
"@tanstack/react-router-ssr-query": "^1.136.18",
21-
"@tanstack/react-start": "^1.137.0",
21+
"@tanstack/react-start": "^1.138.0",
2222
"concurrently": "^8.2.2",
2323
"convex": "^1.19.0",
2424
"ky": "^1.7.4",

0 commit comments

Comments
 (0)