diff --git a/.changeset/four-tips-accept.md b/.changeset/four-tips-accept.md deleted file mode 100644 index bfab504736..0000000000 --- a/.changeset/four-tips-accept.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -'astro': patch ---- - -Allow passing a cryptography key via ASTRO_KEY - -For Server islands Astro creates a cryptography key in order to hash props for the islands, preventing accidental leakage of secrets. - -If you deploy to an environment with rolling updates then there could be multiple instances of your app with different keys, causing potential key mismatches. - -To fix this you can now pass the `ASTRO_KEY` environment variable to your build in order to reuse the same key. - -To generate a key use: - -``` -astro create-key -``` - -This will print out an environment variable to set like: - -``` -ASTRO_KEY=PIAuyPNn2aKU/bviapEuc/nVzdzZPizKNo3OqF/5PmQ= -``` diff --git a/.changeset/green-bulldogs-shout.md b/.changeset/green-bulldogs-shout.md deleted file mode 100644 index c58892b6c1..0000000000 --- a/.changeset/green-bulldogs-shout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes `astro add` not using the proper export point when adding certain adapters diff --git a/.changeset/long-lemons-add.md b/.changeset/long-lemons-add.md deleted file mode 100644 index 2ad0ecd20c..0000000000 --- a/.changeset/long-lemons-add.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/preact': patch ---- - -Preact components no longer throw an error if a property is null. diff --git a/.changeset/nasty-dogs-sort.md b/.changeset/nasty-dogs-sort.md deleted file mode 100644 index 792320403e..0000000000 --- a/.changeset/nasty-dogs-sort.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': minor ---- - -Updates the default Astro config with `// @ts-check` if the Typescript preset is `strict` or `strictest` diff --git a/examples/basics/package.json b/examples/basics/package.json index 4e428a169b..a6bbf72554 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 5f74e00eff..2935f2ceed 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -14,6 +14,6 @@ "@astrojs/mdx": "^3.1.5", "@astrojs/rss": "^4.0.7", "@astrojs/sitemap": "^3.1.6", - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/component/package.json b/examples/component/package.json index c0a820844c..3f44cb9385 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^4.15.3" + "astro": "^4.15.4" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json index e9ad07a456..6d5aea4c37 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest run" }, "dependencies": { - "astro": "^4.15.3", + "astro": "^4.15.4", "@astrojs/react": "^3.6.2", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index e65fd6a68d..1d0b64c2c3 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -14,6 +14,6 @@ "@astrojs/alpinejs": "^0.4.0", "@types/alpinejs": "^3.13.10", "alpinejs": "^3.14.1", - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index a3801d34d0..1aba743b6d 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/lit": "^4.3.0", "@webcomponents/template-shadowroot": "^0.2.1", - "astro": "^4.15.3", + "astro": "^4.15.4", "lit": "^3.2.0" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 1b0f5c0205..015b84921a 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -11,14 +11,14 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^3.5.2", + "@astrojs/preact": "^3.5.3", "@astrojs/react": "^3.6.2", "@astrojs/solid-js": "^4.4.1", "@astrojs/svelte": "^5.7.0", "@astrojs/vue": "^4.5.0", "@types/react": "^18.3.5", "@types/react-dom": "^18.3.0", - "astro": "^4.15.3", + "astro": "^4.15.4", "preact": "^10.23.2", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index e79537b6df..2d2924649b 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^3.5.2", + "@astrojs/preact": "^3.5.3", "@preact/signals": "^1.3.0", - "astro": "^4.15.3", + "astro": "^4.15.4", "preact": "^10.23.2" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index dff8d9ea71..97cb985ef9 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -14,7 +14,7 @@ "@astrojs/react": "^3.6.2", "@types/react": "^18.3.5", "@types/react-dom": "^18.3.0", - "astro": "^4.15.3", + "astro": "^4.15.4", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 9341152021..8ccd47f529 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/solid-js": "^4.4.1", - "astro": "^4.15.3", + "astro": "^4.15.4", "solid-js": "^1.8.22" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 638b4faf6a..eb29897a7c 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/svelte": "^5.7.0", - "astro": "^4.15.3", + "astro": "^4.15.4", "svelte": "^4.2.19" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 5fd11ed4b7..29d24f2869 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/vue": "^4.5.0", - "astro": "^4.15.3", + "astro": "^4.15.4", "vue": "^3.4.38" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 5bc45625cf..4115eb8014 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -12,6 +12,6 @@ }, "dependencies": { "@astrojs/node": "^8.3.3", - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 0dbece71b5..3377faa51e 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^4.15.3" + "astro": "^4.15.4" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/middleware/package.json b/examples/middleware/package.json index ef40f32714..a35011515d 100644 --- a/examples/middleware/package.json +++ b/examples/middleware/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "@astrojs/node": "^8.3.3", - "astro": "^4.15.3", + "astro": "^4.15.4", "html-minifier": "^4.0.0" }, "devDependencies": { diff --git a/examples/minimal/package.json b/examples/minimal/package.json index a6d7a94f0a..8a892c29f4 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 88254e77ed..0106f52211 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 398c2b253c..fb6256b222 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/server-islands/package.json b/examples/server-islands/package.json index f0fdc1c18d..f3546ad4bb 100644 --- a/examples/server-islands/package.json +++ b/examples/server-islands/package.json @@ -17,7 +17,7 @@ "@tailwindcss/forms": "^0.5.8", "@types/react": "^18.3.5", "@types/react-dom": "^18.3.0", - "astro": "^4.15.3", + "astro": "^4.15.4", "postcss": "^8.4.43", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 9fde2d8244..652197543d 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -14,7 +14,7 @@ "dependencies": { "@astrojs/node": "^8.3.3", "@astrojs/svelte": "^5.7.0", - "astro": "^4.15.3", + "astro": "^4.15.4", "svelte": "^4.2.19" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index 44c9720bd1..76ec978fee 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.15.3", + "astro": "^4.15.4", "sass": "^1.77.8", "sharp": "^0.33.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 1a494a716f..6e452f1ada 100644 --- a/examples/toolbar-app/package.json +++ b/examples/toolbar-app/package.json @@ -15,6 +15,6 @@ "./app": "./dist/app.js" }, "devDependencies": { - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/view-transitions/package.json b/examples/view-transitions/package.json index 08353d203a..1563b1cb9e 100644 --- a/examples/view-transitions/package.json +++ b/examples/view-transitions/package.json @@ -12,6 +12,6 @@ "devDependencies": { "@astrojs/tailwind": "^5.1.0", "@astrojs/node": "^8.3.3", - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index d2d803acff..94241cc272 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -12,6 +12,6 @@ }, "dependencies": { "@astrojs/markdoc": "^0.11.4", - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index d3957788b6..fdc774ee1d 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/markdown-remark": "^5.2.0", - "astro": "^4.15.3", + "astro": "^4.15.4", "hast-util-select": "^6.0.2", "rehype-autolink-headings": "^7.1.0", "rehype-slug": "^6.0.0", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index 51b0ed6832..420c6270d1 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.15.3" + "astro": "^4.15.4" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index ef86548e52..1b4e7cd4f7 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@astrojs/mdx": "^3.1.5", - "@astrojs/preact": "^3.5.2", - "astro": "^4.15.3", + "@astrojs/preact": "^3.5.3", + "astro": "^4.15.4", "preact": "^10.23.2" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 95c46b50ad..8706fad193 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^3.5.2", + "@astrojs/preact": "^3.5.3", "@nanostores/preact": "^0.5.2", - "astro": "^4.15.3", + "astro": "^4.15.4", "nanostores": "^0.11.3", "preact": "^10.23.2" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 52da03b95b..c3e3f8201a 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -14,7 +14,7 @@ "@astrojs/mdx": "^3.1.5", "@astrojs/tailwind": "^5.1.0", "@types/canvas-confetti": "^1.6.4", - "astro": "^4.15.3", + "astro": "^4.15.4", "autoprefixer": "^10.4.20", "canvas-confetti": "^1.9.3", "postcss": "^8.4.43", diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 3ef191b187..39f9472595 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^4.15.3", + "astro": "^4.15.4", "vitest": "^2.0.5" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index a5b6337cb6..7853efb165 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,31 @@ # astro +## 4.15.4 + +### Patch Changes + +- [#11879](https://github.com/withastro/astro/pull/11879) [`bd1d4aa`](https://github.com/withastro/astro/commit/bd1d4aaf8262187b4f132d7fe0365902131ddf1a) Thanks [@matthewp](https://github.com/matthewp)! - Allow passing a cryptography key via ASTRO_KEY + + For Server islands Astro creates a cryptography key in order to hash props for the islands, preventing accidental leakage of secrets. + + If you deploy to an environment with rolling updates then there could be multiple instances of your app with different keys, causing potential key mismatches. + + To fix this you can now pass the `ASTRO_KEY` environment variable to your build in order to reuse the same key. + + To generate a key use: + + ``` + astro create-key + ``` + + This will print out an environment variable to set like: + + ``` + ASTRO_KEY=PIAuyPNn2aKU/bviapEuc/nVzdzZPizKNo3OqF/5PmQ= + ``` + +- [#11935](https://github.com/withastro/astro/pull/11935) [`c58193a`](https://github.com/withastro/astro/commit/c58193a691775af5c568e461c63040a42e2471f7) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes `astro add` not using the proper export point when adding certain adapters + ## 4.15.3 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 976b687e27..d2117995f7 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "4.15.3", + "version": "4.15.4", "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 ebde2e51fa..9d91eab2a6 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro +## 4.9.0 + +### Minor Changes + +- [#11924](https://github.com/withastro/astro/pull/11924) [`7d70ba3`](https://github.com/withastro/astro/commit/7d70ba317889b9281c7891038779a68fcb8f0778) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Updates the default Astro config with `// @ts-check` if the Typescript preset is `strict` or `strictest` + ## 4.8.4 ### Patch Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index b3bfd006f7..fcae9af3d0 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "4.8.4", + "version": "4.9.0", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md index 43330b468e..b7138a78d2 100644 --- a/packages/integrations/preact/CHANGELOG.md +++ b/packages/integrations/preact/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/preact +## 3.5.3 + +### Patch Changes + +- [#11930](https://github.com/withastro/astro/pull/11930) [`4a44e82`](https://github.com/withastro/astro/commit/4a44e82bbdf0572190618d8c5882c63a6525a198) Thanks [@lukasbachlechner](https://github.com/lukasbachlechner)! - Preact components no longer throw an error if a property is null. + ## 3.5.2 ### Patch Changes diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index 31006ab707..5874d666d3 100644 --- a/packages/integrations/preact/package.json +++ b/packages/integrations/preact/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/preact", "description": "Use Preact components within Astro", - "version": "3.5.2", + "version": "3.5.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 29ef628484..e53be306e3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -116,7 +116,7 @@ importers: examples/basics: dependencies: astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/blog: @@ -131,13 +131,13 @@ importers: specifier: ^3.1.6 version: link:../../packages/integrations/sitemap astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/container-with-vitest: @@ -146,7 +146,7 @@ importers: specifier: ^3.6.2 version: link:../../packages/integrations/react astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -177,7 +177,7 @@ importers: specifier: ^3.14.1 version: 3.14.1 astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/framework-lit: @@ -189,7 +189,7 @@ importers: specifier: ^0.2.1 version: 0.2.1 astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro lit: specifier: ^3.2.0 @@ -198,7 +198,7 @@ importers: examples/framework-multiple: dependencies: '@astrojs/preact': - specifier: ^3.5.2 + specifier: ^3.5.3 version: link:../../packages/integrations/preact '@astrojs/react': specifier: ^3.6.2 @@ -219,7 +219,7 @@ importers: specifier: ^18.3.0 version: 18.3.0 astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro preact: specifier: ^10.23.2 @@ -243,13 +243,13 @@ importers: examples/framework-preact: dependencies: '@astrojs/preact': - specifier: ^3.5.2 + specifier: ^3.5.3 version: link:../../packages/integrations/preact '@preact/signals': specifier: ^1.3.0 version: 1.3.0(preact@10.23.2) astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro preact: specifier: ^10.23.2 @@ -267,7 +267,7 @@ importers: specifier: ^18.3.0 version: 18.3.0 astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -282,7 +282,7 @@ importers: specifier: ^4.4.1 version: link:../../packages/integrations/solid astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro solid-js: specifier: ^1.8.22 @@ -294,7 +294,7 @@ importers: specifier: ^5.7.0 version: link:../../packages/integrations/svelte astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro svelte: specifier: ^4.2.19 @@ -306,7 +306,7 @@ importers: specifier: ^4.5.0 version: link:../../packages/integrations/vue astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro vue: specifier: ^3.4.38 @@ -318,13 +318,13 @@ importers: specifier: ^8.3.3 version: 8.3.3(astro@packages+astro) astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/middleware: @@ -333,7 +333,7 @@ importers: specifier: ^8.3.3 version: 8.3.3(astro@packages+astro) astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro html-minifier: specifier: ^4.0.0 @@ -346,19 +346,19 @@ importers: examples/minimal: dependencies: astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/non-html-pages: dependencies: astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/server-islands: @@ -385,7 +385,7 @@ importers: specifier: ^18.3.0 version: 18.3.0 astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro postcss: specifier: ^8.4.43 @@ -409,7 +409,7 @@ importers: specifier: ^5.7.0 version: link:../../packages/integrations/svelte astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro svelte: specifier: ^4.2.19 @@ -418,7 +418,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro sass: specifier: ^1.77.8 @@ -430,7 +430,7 @@ importers: examples/toolbar-app: devDependencies: astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/view-transitions: @@ -442,7 +442,7 @@ importers: specifier: ^5.1.0 version: link:../../packages/integrations/tailwind astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/with-markdoc: @@ -451,7 +451,7 @@ importers: specifier: ^0.11.4 version: link:../../packages/integrations/markdoc astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/with-markdown-plugins: @@ -460,7 +460,7 @@ importers: specifier: ^5.2.0 version: link:../../packages/markdown/remark astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro hast-util-select: specifier: ^6.0.2 @@ -481,7 +481,7 @@ importers: examples/with-markdown-shiki: dependencies: astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro examples/with-mdx: @@ -490,10 +490,10 @@ importers: specifier: ^3.1.5 version: link:../../packages/integrations/mdx '@astrojs/preact': - specifier: ^3.5.2 + specifier: ^3.5.3 version: link:../../packages/integrations/preact astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro preact: specifier: ^10.23.2 @@ -502,13 +502,13 @@ importers: examples/with-nanostores: dependencies: '@astrojs/preact': - specifier: ^3.5.2 + specifier: ^3.5.3 version: link:../../packages/integrations/preact '@nanostores/preact': specifier: ^0.5.2 version: 0.5.2(nanostores@0.11.3)(preact@10.23.2) astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro nanostores: specifier: ^0.11.3 @@ -529,7 +529,7 @@ importers: specifier: ^1.6.4 version: 1.6.4 astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro autoprefixer: specifier: ^10.4.20 @@ -547,7 +547,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^4.15.3 + specifier: ^4.15.4 version: link:../../packages/astro vitest: specifier: ^2.0.5