From 22e439b6486bc22a30ff11132ffa87eaef1512d1 Mon Sep 17 00:00:00 2001 From: "Houston (Bot)" <108291165+astrobot-houston@users.noreply.github.com> Date: Mon, 24 Aug 2026 09:31:01 -0700 Subject: [PATCH] [ci] release (#17814) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/calm-maps-travel.md | 5 --- examples/advanced-routing/package.json | 2 +- examples/basics/package.json | 2 +- examples/blog/package.json | 2 +- examples/component/package.json | 2 +- examples/container-with-vitest/package.json | 2 +- examples/framework-alpine/package.json | 2 +- examples/framework-multiple/package.json | 2 +- examples/framework-preact/package.json | 2 +- examples/framework-react/package.json | 2 +- examples/framework-solid/package.json | 2 +- examples/framework-svelte/package.json | 2 +- examples/framework-vue/package.json | 2 +- examples/hackernews/package.json | 2 +- examples/integration/package.json | 2 +- examples/minimal/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 2 +- examples/starlog/package.json | 2 +- examples/toolbar-app/package.json | 2 +- examples/with-markdoc/package.json | 2 +- examples/with-mdx/package.json | 2 +- examples/with-nanostores/package.json | 2 +- examples/with-tailwindcss/package.json | 2 +- examples/with-vitest/package.json | 2 +- packages/astro/CHANGELOG.md | 6 +++ packages/astro/package.json | 2 +- pnpm-lock.yaml | 48 ++++++++++----------- 28 files changed, 55 insertions(+), 54 deletions(-) delete mode 100644 .changeset/calm-maps-travel.md diff --git a/.changeset/calm-maps-travel.md b/.changeset/calm-maps-travel.md deleted file mode 100644 index dd658d5914d2..000000000000 --- a/.changeset/calm-maps-travel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a bug where `new FetchState(request)` could fail in development when server dependencies were optimized diff --git a/examples/advanced-routing/package.json b/examples/advanced-routing/package.json index 56d70dd1b5c3..da226248b573 100644 --- a/examples/advanced-routing/package.json +++ b/examples/advanced-routing/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@astrojs/node": "^11.1.4", - "astro": "^7.2.5", + "astro": "^7.2.6", "hono": "^4.12.14" }, "allowScripts": { diff --git a/examples/basics/package.json b/examples/basics/package.json index ee9874178b4d..5f0f0c4b05e0 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -13,7 +13,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^7.2.5" + "astro": "^7.2.6" }, "allowScripts": { "esbuild": true diff --git a/examples/blog/package.json b/examples/blog/package.json index f1c01e9cf534..92ce49d74686 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -16,7 +16,7 @@ "@astrojs/mdx": "^7.0.8", "@astrojs/rss": "^4.0.19", "@astrojs/sitemap": "^3.7.3", - "astro": "^7.2.5", + "astro": "^7.2.6", "sharp": "^0.35.0" }, "allowScripts": { diff --git a/examples/component/package.json b/examples/component/package.json index a6deefb7f3cf..b7c6f635321e 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -18,7 +18,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^7.2.5" + "astro": "^7.2.6" }, "peerDependencies": { "astro": "^5.0.0 || ^6.0.0" diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json index 7b73fad1253f..20f1804c5f5c 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -15,7 +15,7 @@ }, "dependencies": { "@astrojs/react": "^6.0.4", - "astro": "^7.2.5", + "astro": "^7.2.6", "react": "^18.3.1", "react-dom": "^18.3.1", "vitest": "^4.1.0" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index e4391bc893d9..3e9c39efa1e7 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -16,7 +16,7 @@ "@astrojs/alpinejs": "^1.0.0", "@types/alpinejs": "^3.13.11", "alpinejs": "^3.15.8", - "astro": "^7.2.5" + "astro": "^7.2.6" }, "allowScripts": { "esbuild": true diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index a756a9727869..bf039434ef37 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -20,7 +20,7 @@ "@astrojs/vue": "^7.0.2", "@types/react": "^18.3.28", "@types/react-dom": "^18.3.7", - "astro": "^7.2.5", + "astro": "^7.2.6", "preact": "^10.28.4", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 69d57a98217a..30250c28335e 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -15,7 +15,7 @@ "dependencies": { "@astrojs/preact": "^6.0.4", "@preact/signals": "^2.8.1", - "astro": "^7.2.5", + "astro": "^7.2.6", "preact": "^10.28.4" }, "allowScripts": { diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 30cdf7066505..fd4cfa13722e 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -16,7 +16,7 @@ "@astrojs/react": "^6.0.4", "@types/react": "^18.3.28", "@types/react-dom": "^18.3.7", - "astro": "^7.2.5", + "astro": "^7.2.6", "react": "^18.3.1", "react-dom": "^18.3.1" }, diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index c316e2df1523..37b4a80d4b02 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@astrojs/solid-js": "^7.0.2", - "astro": "^7.2.5", + "astro": "^7.2.6", "solid-js": "^1.9.11" }, "allowScripts": { diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index be0f5d28b9d6..3b1fec631166 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@astrojs/svelte": "^9.0.1", - "astro": "^7.2.5", + "astro": "^7.2.6", "svelte": "^5.53.5" }, "allowScripts": { diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 5f5e73818e51..fb4f0f1c2eca 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@astrojs/vue": "^7.0.2", - "astro": "^7.2.5", + "astro": "^7.2.6", "vue": "^3.5.29" }, "allowScripts": { diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 8c19932ad4e9..61291c36acec 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@astrojs/node": "^11.1.4", - "astro": "^7.2.5" + "astro": "^7.2.6" }, "allowScripts": { "esbuild": true diff --git a/examples/integration/package.json b/examples/integration/package.json index b24c12e59279..6ffc81d07b06 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -18,7 +18,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^7.2.5" + "astro": "^7.2.6" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 0cfc330738b0..1f37a98bf577 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -13,7 +13,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^7.2.5" + "astro": "^7.2.6" }, "allowScripts": { "esbuild": true diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index ebe5c1242841..e4b6d3365016 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -13,7 +13,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^7.2.5" + "astro": "^7.2.6" }, "allowScripts": { "esbuild": true diff --git a/examples/ssr/package.json b/examples/ssr/package.json index b8badab12d4c..d04b60172b10 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -16,7 +16,7 @@ "dependencies": { "@astrojs/node": "^11.1.4", "@astrojs/svelte": "^9.0.1", - "astro": "^7.2.5", + "astro": "^7.2.6", "svelte": "^5.53.5" }, "allowScripts": { diff --git a/examples/starlog/package.json b/examples/starlog/package.json index de6d9ad7c50f..59a51ee3509c 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^7.2.5", + "astro": "^7.2.6", "sass": "^1.97.3", "sharp": "^0.35.0" }, diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 4aacbe14fc85..1a616a90b9cd 100644 --- a/examples/toolbar-app/package.json +++ b/examples/toolbar-app/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "@types/node": "^22.10.6", - "astro": "^7.2.5" + "astro": "^7.2.6" }, "engines": { "node": ">=22.12.0" diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 281a370e923a..47e6eb7e1851 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@astrojs/markdoc": "^2.0.8", - "astro": "^7.2.5" + "astro": "^7.2.6" }, "allowScripts": { "esbuild": true diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 243d11208d35..e02528c963c6 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -15,7 +15,7 @@ "dependencies": { "@astrojs/mdx": "^7.0.8", "@astrojs/preact": "^6.0.4", - "astro": "^7.2.5", + "astro": "^7.2.6", "preact": "^10.28.4" }, "allowScripts": { diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index b532853e4dda..2d519f6425f9 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -15,7 +15,7 @@ "dependencies": { "@astrojs/preact": "^6.0.4", "@nanostores/preact": "^1.0.0", - "astro": "^7.2.5", + "astro": "^7.2.6", "nanostores": "^1.1.1", "preact": "^10.28.4" }, diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index dae4c9f9e0e2..be234c198334 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -16,7 +16,7 @@ "@astrojs/mdx": "^7.0.8", "@tailwindcss/vite": "^4.2.1", "@types/canvas-confetti": "^1.9.0", - "astro": "^7.2.5", + "astro": "^7.2.6", "canvas-confetti": "^1.9.4", "tailwindcss": "^4.2.1", "vite": "^8.0.13" diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 6af1d5f1d7cb..2dfc0673c364 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -14,7 +14,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^7.2.5", + "astro": "^7.2.6", "vitest": "^5.0.0-beta.2" }, "allowScripts": { diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 7c6aef3efb19..7ca2108ec604 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,11 @@ # astro +## 7.2.6 + +### Patch Changes + +- [#17812](https://github.com/withastro/astro/pull/17812) [`29af6da`](https://github.com/withastro/astro/commit/29af6da5c11aff673133f96df029f40345674f0e) Thanks [@matthewp](https://github.com/matthewp)! - Fixes a bug where `new FetchState(request)` could fail in development when server dependencies were optimized + ## 7.2.5 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 28ad3fe41eaf..b7450e44726a 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "7.2.5", + "version": "7.2.6", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6b7ce518b647..a10aa5cf0e65 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -393,7 +393,7 @@ importers: specifier: ^11.1.4 version: link:../../packages/integrations/node astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro hono: specifier: ^4.12.14 @@ -402,7 +402,7 @@ importers: examples/basics: dependencies: astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro examples/blog: @@ -417,7 +417,7 @@ importers: specifier: ^3.7.3 version: link:../../packages/integrations/sitemap astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro sharp: specifier: ^0.35.0 @@ -426,7 +426,7 @@ importers: examples/component: devDependencies: astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro examples/container-with-vitest: @@ -435,7 +435,7 @@ importers: specifier: ^6.0.4 version: link:../../packages/integrations/react astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -466,7 +466,7 @@ importers: specifier: ^3.15.8 version: 3.15.8 astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro examples/framework-multiple: @@ -493,7 +493,7 @@ importers: specifier: ^18.3.7 version: 18.3.7(@types/react@18.3.28) astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro preact: specifier: ^10.28.4 @@ -523,7 +523,7 @@ importers: specifier: ^2.8.1 version: 2.8.2(preact@10.29.8) astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro preact: specifier: ^10.28.4 @@ -541,7 +541,7 @@ importers: specifier: ^18.3.7 version: 18.3.7(@types/react@18.3.28) astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -556,7 +556,7 @@ importers: specifier: ^7.0.2 version: link:../../packages/integrations/solid astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro solid-js: specifier: ^1.9.11 @@ -568,7 +568,7 @@ importers: specifier: ^9.0.1 version: link:../../packages/integrations/svelte astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro svelte: specifier: ^5.53.5 @@ -580,7 +580,7 @@ importers: specifier: ^7.0.2 version: link:../../packages/integrations/vue astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro vue: specifier: ^3.5.29 @@ -592,25 +592,25 @@ importers: specifier: ^11.1.4 version: link:../../packages/integrations/node astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro examples/ssr: @@ -622,7 +622,7 @@ importers: specifier: ^9.0.1 version: link:../../packages/integrations/svelte astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro svelte: specifier: ^5.53.5 @@ -631,7 +631,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro sass: specifier: ^1.97.3 @@ -646,7 +646,7 @@ importers: specifier: ^22.19.0 version: 22.19.19 astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro examples/with-markdoc: @@ -655,7 +655,7 @@ importers: specifier: ^2.0.8 version: link:../../packages/integrations/markdoc astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro examples/with-mdx: @@ -667,7 +667,7 @@ importers: specifier: ^6.0.4 version: link:../../packages/integrations/preact astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro preact: specifier: ^10.28.4 @@ -682,7 +682,7 @@ importers: specifier: ^1.0.0 version: 1.0.0(nanostores@1.1.1)(preact@10.29.8) astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro nanostores: specifier: ^1.1.1 @@ -703,7 +703,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.4 @@ -718,7 +718,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^7.2.5 + specifier: ^7.2.6 version: link:../../packages/astro vitest: specifier: ^5.0.0-beta.2