From 4e356e7517273cd48e01057567519a26446a2f7d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 20:22:14 +0000 Subject: [PATCH] [ci] release --- .../fix-devtoolbar-audit-aria-role-crash.md | 5 -- .changeset/jolly-loops-shave.md | 5 -- .changeset/windows-cmd-spawn-via-cmd-exe.md | 5 -- 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 | 8 ++++ packages/astro/e2e/view-transitions.test.js | 8 +++- packages/astro/package.json | 2 +- packages/create-astro/CHANGELOG.md | 6 +++ packages/create-astro/package.json | 2 +- pnpm-lock.yaml | 46 +++++++++---------- 32 files changed, 68 insertions(+), 65 deletions(-) delete mode 100644 .changeset/fix-devtoolbar-audit-aria-role-crash.md delete mode 100644 .changeset/jolly-loops-shave.md delete mode 100644 .changeset/windows-cmd-spawn-via-cmd-exe.md diff --git a/.changeset/fix-devtoolbar-audit-aria-role-crash.md b/.changeset/fix-devtoolbar-audit-aria-role-crash.md deleted file mode 100644 index 4358a6a66180..000000000000 --- a/.changeset/fix-devtoolbar-audit-aria-role-crash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix dev toolbar audit crash when encountering the `image` ARIA role diff --git a/.changeset/jolly-loops-shave.md b/.changeset/jolly-loops-shave.md deleted file mode 100644 index 580817eea3e7..000000000000 --- a/.changeset/jolly-loops-shave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes an issue with the client router where Vue's `:deep()` notation was ignored in dev mode. diff --git a/.changeset/windows-cmd-spawn-via-cmd-exe.md b/.changeset/windows-cmd-spawn-via-cmd-exe.md deleted file mode 100644 index 59f88b353869..000000000000 --- a/.changeset/windows-cmd-spawn-via-cmd-exe.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': patch ---- - -Fixes dependency installation failing on Windows when running `npm create astro@latest`. The previous fix for DEP0190 warnings incorrectly assumed `.cmd` shims could be spawned directly without a shell — on Windows, `.cmd` files require `cmd.exe` to execute. Package manager commands are now invoked via `cmd.exe /d /s /c` on Windows. Also fixes the `[object Object]` error message that appeared when installation failed, replacing it with the actual error. diff --git a/examples/basics/package.json b/examples/basics/package.json index af24e802b9fe..d7e764f53132 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -13,6 +13,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^6.1.0" + "astro": "^6.1.1" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index aa1c3b2f4e21..db1a76f99ce4 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -16,7 +16,7 @@ "@astrojs/mdx": "^5.0.3", "@astrojs/rss": "^4.0.18", "@astrojs/sitemap": "^3.7.2", - "astro": "^6.1.0", + "astro": "^6.1.1", "sharp": "^0.34.3" } } diff --git a/examples/component/package.json b/examples/component/package.json index ec9dd848d9b6..bff2496c8d3e 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -18,7 +18,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^6.1.0" + "astro": "^6.1.1" }, "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 8cbb4387848f..226e8e00b6b4 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -15,7 +15,7 @@ }, "dependencies": { "@astrojs/react": "^5.0.2", - "astro": "^6.1.0", + "astro": "^6.1.1", "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 1e62195b4e99..08742da3a38e 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -16,6 +16,6 @@ "@astrojs/alpinejs": "^0.5.0", "@types/alpinejs": "^3.13.11", "alpinejs": "^3.15.8", - "astro": "^6.1.0" + "astro": "^6.1.1" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 07a36df9dad0..b013377be53d 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -20,7 +20,7 @@ "@astrojs/vue": "^6.0.1", "@types/react": "^18.3.28", "@types/react-dom": "^18.3.7", - "astro": "^6.1.0", + "astro": "^6.1.1", "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 572621c4c564..46380444109a 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -15,7 +15,7 @@ "dependencies": { "@astrojs/preact": "^5.1.0", "@preact/signals": "^2.8.1", - "astro": "^6.1.0", + "astro": "^6.1.1", "preact": "^10.28.4" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 9a458697a362..8320cc6b7ca5 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -16,7 +16,7 @@ "@astrojs/react": "^5.0.2", "@types/react": "^18.3.28", "@types/react-dom": "^18.3.7", - "astro": "^6.1.0", + "astro": "^6.1.1", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index d73743b5150b..257182111234 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@astrojs/solid-js": "^6.0.1", - "astro": "^6.1.0", + "astro": "^6.1.1", "solid-js": "^1.9.11" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 7939c6787380..c6dc0429ca2c 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@astrojs/svelte": "^8.0.4", - "astro": "^6.1.0", + "astro": "^6.1.1", "svelte": "^5.53.5" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 227b30b37ee9..b7cc7661f785 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@astrojs/vue": "^6.0.1", - "astro": "^6.1.0", + "astro": "^6.1.1", "vue": "^3.5.29" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 96e25dcdaf1d..760858147459 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -14,6 +14,6 @@ }, "dependencies": { "@astrojs/node": "^10.0.4", - "astro": "^6.1.0" + "astro": "^6.1.1" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 2c154aa6684b..66732435bfe7 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -18,7 +18,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^6.1.0" + "astro": "^6.1.1" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 1624abe11027..08daee192ffd 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -13,6 +13,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^6.1.0" + "astro": "^6.1.1" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index d9875bf44c47..cf53e1e87487 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -13,6 +13,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^6.1.0" + "astro": "^6.1.1" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index e8c2b022e45e..2ab936cc174a 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -16,7 +16,7 @@ "dependencies": { "@astrojs/node": "^10.0.4", "@astrojs/svelte": "^8.0.4", - "astro": "^6.1.0", + "astro": "^6.1.1", "svelte": "^5.53.5" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index cd95c0ca2263..cfb6537055a8 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^6.1.0", + "astro": "^6.1.1", "sass": "^1.97.3", "sharp": "^0.34.3" }, diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 09ae3df9ac19..a53fdc8eb2f2 100644 --- a/examples/toolbar-app/package.json +++ b/examples/toolbar-app/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "@types/node": "^18.17.8", - "astro": "^6.1.0" + "astro": "^6.1.1" }, "engines": { "node": ">=22.12.0" diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 24b6723d9ddc..503b5df204d1 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -14,6 +14,6 @@ }, "dependencies": { "@astrojs/markdoc": "^1.0.3", - "astro": "^6.1.0" + "astro": "^6.1.1" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index c3bc8d5bc012..c53c9fa3f6de 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -15,7 +15,7 @@ "dependencies": { "@astrojs/mdx": "^5.0.3", "@astrojs/preact": "^5.1.0", - "astro": "^6.1.0", + "astro": "^6.1.1", "preact": "^10.28.4" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 5e18aa157834..f6403305796d 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -15,7 +15,7 @@ "dependencies": { "@astrojs/preact": "^5.1.0", "@nanostores/preact": "^1.0.0", - "astro": "^6.1.0", + "astro": "^6.1.1", "nanostores": "^1.1.1", "preact": "^10.28.4" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index df89e68e5349..693e8183c3c0 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -16,7 +16,7 @@ "@astrojs/mdx": "^5.0.3", "@tailwindcss/vite": "^4.2.1", "@types/canvas-confetti": "^1.9.0", - "astro": "^6.1.0", + "astro": "^6.1.1", "canvas-confetti": "^1.9.4", "tailwindcss": "^4.2.1" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 866906da7561..7ef1e806e0fe 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -14,7 +14,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^6.1.0", + "astro": "^6.1.1", "vitest": "^4.1.0" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index cdd34aa666f9..9d7f4047a083 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,13 @@ # astro +## 6.1.1 + +### Patch Changes + +- [#16105](https://github.com/withastro/astro/pull/16105) [`23d60de`](https://github.com/withastro/astro/commit/23d60dee6eae3d7148ef87f8b44c3d7470fef0ed) Thanks [@matthewp](https://github.com/matthewp)! - Fix dev toolbar audit crash when encountering the `image` ARIA role + +- [#16089](https://github.com/withastro/astro/pull/16089) [`999c875`](https://github.com/withastro/astro/commit/999c875da5914735458e0939be8a2be2e012e580) Thanks [@martrapp](https://github.com/martrapp)! - Fixes an issue with the client router where Vue's `:deep()` notation was ignored in dev mode. + ## 6.1.0 ### Minor Changes diff --git a/packages/astro/e2e/view-transitions.test.js b/packages/astro/e2e/view-transitions.test.js index d86148045619..31e5afbdbf37 100644 --- a/packages/astro/e2e/view-transitions.test.js +++ b/packages/astro/e2e/view-transitions.test.js @@ -1826,12 +1826,16 @@ test.describe('View Transitions', () => { await page.goto(astro.resolveUrl('/island-vue-one')); let cnt = page.locator('.counter pre'); await expect(cnt).toHaveText('AA0'); - await page.locator('[data-vite-dev-id*="VueCounter.vue?vue&type=style"]').evaluate((el) => (el.dataset.marker='this'), undefined); + await page + .locator('[data-vite-dev-id*="VueCounter.vue?vue&type=style"]') + .evaluate((el) => (el.dataset.marker = 'this'), undefined); await page.click('#click-two'); const p = page.locator('#island-two'); await expect(p).toBeVisible(); cnt = page.locator('.counter pre'); await expect(cnt).toHaveText('BB0'); - await expect(page.locator('[data-vite-dev-id*="VueCounter.vue?vue&type=style"][data-marker="this"]')).toHaveCount(1); + await expect( + page.locator('[data-vite-dev-id*="VueCounter.vue?vue&type=style"][data-marker="this"]'), + ).toHaveCount(1); }); }); diff --git a/packages/astro/package.json b/packages/astro/package.json index ad20e41e0c6b..89025408233f 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "6.1.0", + "version": "6.1.1", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index 6c82161b478c..052372abc4fe 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro +## 5.0.4 + +### Patch Changes + +- [#16106](https://github.com/withastro/astro/pull/16106) [`d241012`](https://github.com/withastro/astro/commit/d241012107c7df55ac46192bcb7b1fbe650f3d93) Thanks [@matthewp](https://github.com/matthewp)! - Fixes dependency installation failing on Windows when running `npm create astro@latest`. The previous fix for DEP0190 warnings incorrectly assumed `.cmd` shims could be spawned directly without a shell — on Windows, `.cmd` files require `cmd.exe` to execute. Package manager commands are now invoked via `cmd.exe /d /s /c` on Windows. Also fixes the `[object Object]` error message that appeared when installation failed, replacing it with the actual error. + ## 5.0.3 ### Patch Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index 5b36005051d4..fa30e7e095ba 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "5.0.3", + "version": "5.0.4", "type": "module", "author": "withastro", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 59117aa01bf4..c89017f01f59 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -189,7 +189,7 @@ importers: examples/basics: dependencies: astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro examples/blog: @@ -204,7 +204,7 @@ importers: specifier: ^3.7.2 version: link:../../packages/integrations/sitemap astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro sharp: specifier: ^0.34.3 @@ -213,7 +213,7 @@ importers: examples/component: devDependencies: astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro examples/container-with-vitest: @@ -222,7 +222,7 @@ importers: specifier: ^5.0.2 version: link:../../packages/integrations/react astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -253,7 +253,7 @@ importers: specifier: ^3.15.8 version: 3.15.8 astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro examples/framework-multiple: @@ -280,7 +280,7 @@ importers: specifier: ^18.3.7 version: 18.3.7(@types/react@18.3.28) astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro preact: specifier: ^10.28.4 @@ -310,7 +310,7 @@ importers: specifier: ^2.8.1 version: 2.8.2(preact@10.29.0) astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro preact: specifier: ^10.28.4 @@ -328,7 +328,7 @@ importers: specifier: ^18.3.7 version: 18.3.7(@types/react@18.3.28) astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -343,7 +343,7 @@ importers: specifier: ^6.0.1 version: link:../../packages/integrations/solid astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro solid-js: specifier: ^1.9.11 @@ -355,7 +355,7 @@ importers: specifier: ^8.0.4 version: link:../../packages/integrations/svelte astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro svelte: specifier: ^5.53.5 @@ -367,7 +367,7 @@ importers: specifier: ^6.0.1 version: link:../../packages/integrations/vue astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro vue: specifier: ^3.5.29 @@ -379,25 +379,25 @@ importers: specifier: ^10.0.4 version: link:../../packages/integrations/node astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro examples/ssr: @@ -409,7 +409,7 @@ importers: specifier: ^8.0.4 version: link:../../packages/integrations/svelte astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro svelte: specifier: ^5.53.5 @@ -418,7 +418,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro sass: specifier: ^1.97.3 @@ -433,7 +433,7 @@ importers: specifier: ^18.17.8 version: 18.19.130 astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro examples/with-markdoc: @@ -442,7 +442,7 @@ importers: specifier: ^1.0.3 version: link:../../packages/integrations/markdoc astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro examples/with-mdx: @@ -454,7 +454,7 @@ importers: specifier: ^5.1.0 version: link:../../packages/integrations/preact astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro preact: specifier: ^10.28.4 @@ -469,7 +469,7 @@ importers: specifier: ^1.0.0 version: 1.0.0(nanostores@1.1.1)(preact@10.29.0) astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro nanostores: specifier: ^1.1.1 @@ -490,7 +490,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.4 @@ -502,7 +502,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^6.1.0 + specifier: ^6.1.1 version: link:../../packages/astro vitest: specifier: ^4.1.0