Skip to content

Commit 1a44823

Browse files
fix(deps): update all non-major dependencies (#13700)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
1 parent 85e1032 commit 1a44823

30 files changed

Lines changed: 415 additions & 502 deletions

File tree

benchmark/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"markdown-table": "^3.0.4",
2020
"mri": "^1.2.0",
2121
"port-authority": "^2.0.1",
22-
"pretty-bytes": "^7.0.0",
22+
"pretty-bytes": "^7.0.1",
2323
"sharp": "^0.33.3",
2424
"tinyexec": "^1.0.1"
2525
},
2626
"devDependencies": {
2727
"@codspeed/vitest-plugin": "4.0.1",
28-
"vitest": "^3.1.1"
28+
"vitest": "^3.2.4"
2929
}
3030
}

benchmark/packages/adapter/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class MyApp extends App {
1717
if (this.#manifest?.assets.has(url.pathname)) {
1818
const filePath = new URL('../../client/' + this.removeBase(url.pathname), import.meta.url);
1919
const data = await fs.promises.readFile(filePath);
20-
return new Response(data);
20+
return new Response(Buffer.from(data));
2121
}
2222

2323
return super.render(request);

examples/container-with-vitest/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"astro": "^5.13.5",
1616
"react": "^18.3.1",
1717
"react-dom": "^18.3.1",
18-
"vitest": "^3.1.1"
18+
"vitest": "^3.2.4"
1919
},
2020
"devDependencies": {
21-
"@types/react": "^18.3.20",
22-
"@types/react-dom": "^18.3.6"
21+
"@types/react": "^18.3.24",
22+
"@types/react-dom": "^18.3.7"
2323
}
2424
}

examples/framework-multiple/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"@astrojs/solid-js": "^5.1.0",
1616
"@astrojs/svelte": "^7.1.0",
1717
"@astrojs/vue": "^5.1.0",
18-
"@types/react": "^18.3.20",
19-
"@types/react-dom": "^18.3.6",
18+
"@types/react": "^18.3.24",
19+
"@types/react-dom": "^18.3.7",
2020
"astro": "^5.13.5",
21-
"preact": "^10.26.5",
21+
"preact": "^10.27.1",
2222
"react": "^18.3.1",
2323
"react-dom": "^18.3.1",
24-
"solid-js": "^1.9.5",
25-
"svelte": "^5.25.7",
26-
"vue": "^3.5.13"
24+
"solid-js": "^1.9.9",
25+
"svelte": "^5.38.6",
26+
"vue": "^3.5.21"
2727
}
2828
}

examples/framework-preact/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
},
1212
"dependencies": {
1313
"@astrojs/preact": "^4.1.0",
14-
"@preact/signals": "^2.0.3",
14+
"@preact/signals": "^2.3.1",
1515
"astro": "^5.13.5",
16-
"preact": "^10.26.5"
16+
"preact": "^10.27.1"
1717
}
1818
}

examples/framework-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
},
1212
"dependencies": {
1313
"@astrojs/react": "^4.3.0",
14-
"@types/react": "^18.3.20",
15-
"@types/react-dom": "^18.3.6",
14+
"@types/react": "^18.3.24",
15+
"@types/react-dom": "^18.3.7",
1616
"astro": "^5.13.5",
1717
"react": "^18.3.1",
1818
"react-dom": "^18.3.1"

examples/framework-solid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"dependencies": {
1313
"@astrojs/solid-js": "^5.1.0",
1414
"astro": "^5.13.5",
15-
"solid-js": "^1.9.5"
15+
"solid-js": "^1.9.9"
1616
}
1717
}

examples/framework-svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"dependencies": {
1313
"@astrojs/svelte": "^7.1.0",
1414
"astro": "^5.13.5",
15-
"svelte": "^5.25.7"
15+
"svelte": "^5.38.6"
1616
}
1717
}

examples/framework-vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"dependencies": {
1313
"@astrojs/vue": "^5.1.0",
1414
"astro": "^5.13.5",
15-
"vue": "^3.5.13"
15+
"vue": "^3.5.21"
1616
}
1717
}

examples/ssr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"@astrojs/node": "^9.4.3",
1515
"@astrojs/svelte": "^7.1.0",
1616
"astro": "^5.13.5",
17-
"svelte": "^5.25.7"
17+
"svelte": "^5.38.6"
1818
}
1919
}

0 commit comments

Comments
 (0)