From dd62f08c2808c84f01674eb58d99f2d2dae9de80 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 1 May 2024 06:10:03 +0000 Subject: [PATCH] [ci] release --- .changeset/afraid-mirrors-tease.md | 5 -- .changeset/angry-lemons-tie.md | 7 --- .changeset/curly-spoons-pull.md | 5 -- .changeset/happy-pumpkins-rescue.md | 5 -- .changeset/twelve-bulldogs-raise.md | 5 -- examples/basics/package.json | 2 +- examples/blog/package.json | 2 +- examples/component/package.json | 2 +- examples/framework-alpine/package.json | 2 +- examples/framework-lit/package.json | 2 +- examples/framework-multiple/package.json | 4 +- examples/framework-preact/package.json | 2 +- examples/framework-react/package.json | 4 +- 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/middleware/package.json | 2 +- examples/minimal/package.json | 2 +- examples/non-html-pages/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/view-transitions/package.json | 2 +- examples/with-markdoc/package.json | 2 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown-shiki/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/package.json | 2 +- packages/db/CHANGELOG.md | 10 ++++ packages/db/package.json | 2 +- packages/integrations/react/CHANGELOG.md | 6 +++ packages/integrations/react/package.json | 2 +- pnpm-lock.yaml | 60 ++++++++++----------- 40 files changed, 87 insertions(+), 90 deletions(-) delete mode 100644 .changeset/afraid-mirrors-tease.md delete mode 100644 .changeset/angry-lemons-tie.md delete mode 100644 .changeset/curly-spoons-pull.md delete mode 100644 .changeset/happy-pumpkins-rescue.md delete mode 100644 .changeset/twelve-bulldogs-raise.md diff --git a/.changeset/afraid-mirrors-tease.md b/.changeset/afraid-mirrors-tease.md deleted file mode 100644 index 5d0c318ef8366..0000000000000 --- a/.changeset/afraid-mirrors-tease.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Skips adding CSS dependencies of CSS Vite modules as style tags in the HTML diff --git a/.changeset/angry-lemons-tie.md b/.changeset/angry-lemons-tie.md deleted file mode 100644 index 91e0978f49533..0000000000000 --- a/.changeset/angry-lemons-tie.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@astrojs/db": patch ---- - -Improves the typing of the `asDrizzleTable()` utility - -Fixes a type error when passing the output of `defineTable()` to the utility and returns a more detailed type inferred from the columns of the passed table config. diff --git a/.changeset/curly-spoons-pull.md b/.changeset/curly-spoons-pull.md deleted file mode 100644 index 7d0d085fe4750..0000000000000 --- a/.changeset/curly-spoons-pull.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Detects overlapping navigation and view transitions and automatically aborts all but the most recent one. diff --git a/.changeset/happy-pumpkins-rescue.md b/.changeset/happy-pumpkins-rescue.md deleted file mode 100644 index c43a157511079..0000000000000 --- a/.changeset/happy-pumpkins-rescue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/db": patch ---- - -Provide a better error message when app token is missing in CI diff --git a/.changeset/twelve-bulldogs-raise.md b/.changeset/twelve-bulldogs-raise.md deleted file mode 100644 index d0acf5c094290..0000000000000 --- a/.changeset/twelve-bulldogs-raise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/react": patch ---- - -Removes using deprecated `ReactDOMServer.renderToStaticNodeStream` API diff --git a/examples/basics/package.json b/examples/basics/package.json index 432fb69c4a4a4..5c3e3c5919534 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 2b291959f2b4c..2dc4327a21f75 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -14,6 +14,6 @@ "@astrojs/mdx": "^2.3.1", "@astrojs/rss": "^4.0.5", "@astrojs/sitemap": "^3.1.4", - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/component/package.json b/examples/component/package.json index b48d3284f9a4e..5d58f7aad0471 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^4.7.0" + "astro": "^4.7.1" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 079c9b37e43a6..9bc2f9a223073 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.5", "alpinejs": "^3.13.3", - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index b545d307c1f87..6ce8901808642 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/lit": "^4.0.1", "@webcomponents/template-shadowroot": "^0.2.1", - "astro": "^4.7.0", + "astro": "^4.7.1", "lit": "^3.1.2" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 96ebae4a39744..2a38551750859 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -12,13 +12,13 @@ }, "dependencies": { "@astrojs/preact": "^3.2.0", - "@astrojs/react": "^3.3.1", + "@astrojs/react": "^3.3.2", "@astrojs/solid-js": "^4.1.0", "@astrojs/svelte": "^5.4.0", "@astrojs/vue": "^4.1.0", "@types/react": "^18.2.37", "@types/react-dom": "^18.2.15", - "astro": "^4.7.0", + "astro": "^4.7.1", "preact": "^10.19.2", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 6f2b14f306890..c771cfaebe9d6 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/preact": "^3.2.0", "@preact/signals": "^1.2.1", - "astro": "^4.7.0", + "astro": "^4.7.1", "preact": "^10.19.2" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 6f75d049036c9..154d81ff638d2 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,10 +11,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/react": "^3.3.1", + "@astrojs/react": "^3.3.2", "@types/react": "^18.2.37", "@types/react-dom": "^18.2.15", - "astro": "^4.7.0", + "astro": "^4.7.1", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 7937d208aefe9..c73286b7fc77c 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/solid-js": "^4.1.0", - "astro": "^4.7.0", + "astro": "^4.7.1", "solid-js": "^1.8.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 9889bd7d2318b..d976d3bac0b72 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/svelte": "^5.4.0", - "astro": "^4.7.0", + "astro": "^4.7.1", "svelte": "^4.2.5" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 000cd53203685..20d24b1bdf3a3 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/vue": "^4.1.0", - "astro": "^4.7.0", + "astro": "^4.7.1", "vue": "^3.3.8" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 44c2cd938a978..0fb6bb59a37d2 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -12,6 +12,6 @@ }, "dependencies": { "@astrojs/node": "^8.2.5", - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 5ffce1c86a02c..bb18d81ca471e 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^4.7.0" + "astro": "^4.7.1" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/middleware/package.json b/examples/middleware/package.json index fae6a84565d91..760ea6f2abd6a 100644 --- a/examples/middleware/package.json +++ b/examples/middleware/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "@astrojs/node": "^8.2.5", - "astro": "^4.7.0", + "astro": "^4.7.1", "html-minifier": "^4.0.0" }, "devDependencies": { diff --git a/examples/minimal/package.json b/examples/minimal/package.json index cb282c938f65a..530023511b7a9 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 5c609d8dd7932..6f0420779b427 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 9fe9d5f11cd07..07ac5a14094e8 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 37302f7c84e5c..c93536811ad6e 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -14,7 +14,7 @@ "dependencies": { "@astrojs/node": "^8.2.5", "@astrojs/svelte": "^5.4.0", - "astro": "^4.7.0", + "astro": "^4.7.1", "svelte": "^4.2.5" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index baba24ec94194..8a16cd5e24580 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.7.0", + "astro": "^4.7.1", "sass": "^1.69.5", "sharp": "^0.33.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index ada6648fe54b3..22d073256d056 100644 --- a/examples/toolbar-app/package.json +++ b/examples/toolbar-app/package.json @@ -15,6 +15,6 @@ "./app": "./dist/app.js" }, "devDependencies": { - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/view-transitions/package.json b/examples/view-transitions/package.json index 1485fbf529244..95898e2685c23 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.2.5", - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index c592e4cd861bf..7d48e13db4526 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -12,6 +12,6 @@ }, "dependencies": { "@astrojs/markdoc": "^0.11.0", - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 33827e16c99da..061f5e20b3a5d 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/markdown-remark": "^5.1.0", - "astro": "^4.7.0", + "astro": "^4.7.1", "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 bda2955f5bf3f..0bb88803cdcd7 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.7.0" + "astro": "^4.7.1" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 3f6938c86d8ba..5eb9f7a6f626a 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/mdx": "^2.3.1", "@astrojs/preact": "^3.2.0", - "astro": "^4.7.0", + "astro": "^4.7.1", "preact": "^10.19.2" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index fd2ca0add3852..e27d6d1efa86c 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/preact": "^3.2.0", "@nanostores/preact": "^0.5.0", - "astro": "^4.7.0", + "astro": "^4.7.1", "nanostores": "^0.9.5", "preact": "^10.19.2" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 171e7d54dd187..6bb09d0d4fbbc 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -14,7 +14,7 @@ "@astrojs/mdx": "^2.3.1", "@astrojs/tailwind": "^5.1.0", "@types/canvas-confetti": "^1.6.3", - "astro": "^4.7.0", + "astro": "^4.7.1", "autoprefixer": "^10.4.15", "canvas-confetti": "^1.9.1", "postcss": "^8.4.28", diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 432db1b04c99c..5a5e254e94597 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^4.7.0", + "astro": "^4.7.1", "vitest": "^1.5.0" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 33e47f6d2a656..9bb7c8db761a6 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,13 @@ # astro +## 4.7.1 + +### Patch Changes + +- [#10911](https://github.com/withastro/astro/pull/10911) [`a86dc9d`](https://github.com/withastro/astro/commit/a86dc9d269fc4409c458cfa05dcfaeee12bade2f) Thanks [@bluwy](https://github.com/bluwy)! - Skips adding CSS dependencies of CSS Vite modules as style tags in the HTML + +- [#10900](https://github.com/withastro/astro/pull/10900) [`36bb3b6`](https://github.com/withastro/astro/commit/36bb3b6025eb51f6e027a76a514cc7ebb29deb10) Thanks [@martrapp](https://github.com/martrapp)! - Detects overlapping navigation and view transitions and automatically aborts all but the most recent one. + ## 4.7.0 ### Minor Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 07cb5f6361bf3..6c3bcfeddbf3a 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "4.7.0", + "version": "4.7.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/db/CHANGELOG.md b/packages/db/CHANGELOG.md index 2b89cae73ccc1..75f46de32c38d 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,15 @@ # @astrojs/db +## 0.10.7 + +### Patch Changes + +- [#10882](https://github.com/withastro/astro/pull/10882) [`cf58d1e`](https://github.com/withastro/astro/commit/cf58d1ed56c671d0ee077dfecc286002b4bae5ed) Thanks [@delucis](https://github.com/delucis)! - Improves the typing of the `asDrizzleTable()` utility + + Fixes a type error when passing the output of `defineTable()` to the utility and returns a more detailed type inferred from the columns of the passed table config. + +- [#10918](https://github.com/withastro/astro/pull/10918) [`ca605f4`](https://github.com/withastro/astro/commit/ca605f4dd8fcd070d3d5a5ca2f7080d921801e17) Thanks [@matthewp](https://github.com/matthewp)! - Provide a better error message when app token is missing in CI + ## 0.10.6 ### Patch Changes diff --git a/packages/db/package.json b/packages/db/package.json index e83e407905aff..24d7f350287a9 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/db", - "version": "0.10.6", + "version": "0.10.7", "description": "Add libSQL and Astro Studio support to your Astro site", "license": "MIT", "repository": { diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index b1664f60123c3..af63e5c5cbd57 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/react +## 3.3.2 + +### Patch Changes + +- [#10893](https://github.com/withastro/astro/pull/10893) [`fd7a9ed`](https://github.com/withastro/astro/commit/fd7a9ed3379a123f02f297b69fa5da0053e84a89) Thanks [@Angrigo](https://github.com/Angrigo)! - Removes using deprecated `ReactDOMServer.renderToStaticNodeStream` API + ## 3.3.1 ### Patch Changes diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index ba7bbae814e88..90eaba4c3f3d1 100644 --- a/packages/integrations/react/package.json +++ b/packages/integrations/react/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/react", "description": "Use React components within Astro", - "version": "3.3.1", + "version": "3.3.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ce5f061d9cb88..cb460a49c1473 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -128,7 +128,7 @@ importers: examples/basics: dependencies: astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/blog: @@ -143,13 +143,13 @@ importers: specifier: ^3.1.4 version: link:../../packages/integrations/sitemap astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/framework-alpine: @@ -164,7 +164,7 @@ importers: specifier: ^3.13.3 version: 3.13.8 astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/framework-lit: @@ -176,7 +176,7 @@ importers: specifier: ^0.2.1 version: 0.2.1 astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro lit: specifier: ^3.1.2 @@ -188,7 +188,7 @@ importers: specifier: ^3.2.0 version: link:../../packages/integrations/preact '@astrojs/react': - specifier: ^3.3.1 + specifier: ^3.3.2 version: link:../../packages/integrations/react '@astrojs/solid-js': specifier: ^4.1.0 @@ -206,7 +206,7 @@ importers: specifier: ^18.2.15 version: 18.2.25 astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro preact: specifier: ^10.19.2 @@ -236,7 +236,7 @@ importers: specifier: ^1.2.1 version: 1.2.1(preact@10.20.2) astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro preact: specifier: ^10.19.2 @@ -245,7 +245,7 @@ importers: examples/framework-react: dependencies: '@astrojs/react': - specifier: ^3.3.1 + specifier: ^3.3.2 version: link:../../packages/integrations/react '@types/react': specifier: ^18.2.37 @@ -254,7 +254,7 @@ importers: specifier: ^18.2.15 version: 18.2.25 astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro react: specifier: ^18.2.0 @@ -269,7 +269,7 @@ importers: specifier: ^4.1.0 version: link:../../packages/integrations/solid astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro solid-js: specifier: ^1.8.5 @@ -281,7 +281,7 @@ importers: specifier: ^5.4.0 version: link:../../packages/integrations/svelte astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro svelte: specifier: ^4.2.5 @@ -293,7 +293,7 @@ importers: specifier: ^4.1.0 version: link:../../packages/integrations/vue astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro vue: specifier: ^3.3.8 @@ -305,13 +305,13 @@ importers: specifier: ^8.2.5 version: link:../../packages/integrations/node astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/middleware: @@ -320,7 +320,7 @@ importers: specifier: ^8.2.5 version: link:../../packages/integrations/node astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro html-minifier: specifier: ^4.0.0 @@ -333,19 +333,19 @@ importers: examples/minimal: dependencies: astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/non-html-pages: dependencies: astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/ssr: @@ -357,7 +357,7 @@ importers: specifier: ^5.4.0 version: link:../../packages/integrations/svelte astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro svelte: specifier: ^4.2.5 @@ -366,7 +366,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro sass: specifier: ^1.69.5 @@ -378,7 +378,7 @@ importers: examples/toolbar-app: devDependencies: astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/view-transitions: @@ -390,7 +390,7 @@ importers: specifier: ^5.1.0 version: link:../../packages/integrations/tailwind astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/with-markdoc: @@ -399,7 +399,7 @@ importers: specifier: ^0.11.0 version: link:../../packages/integrations/markdoc astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/with-markdown-plugins: @@ -408,7 +408,7 @@ importers: specifier: ^5.1.0 version: link:../../packages/markdown/remark astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro hast-util-select: specifier: ^6.0.2 @@ -429,7 +429,7 @@ importers: examples/with-markdown-shiki: dependencies: astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro examples/with-mdx: @@ -441,7 +441,7 @@ importers: specifier: ^3.2.0 version: link:../../packages/integrations/preact astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro preact: specifier: ^10.19.2 @@ -456,7 +456,7 @@ importers: specifier: ^0.5.0 version: 0.5.1(nanostores@0.9.5)(preact@10.20.2) astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro nanostores: specifier: ^0.9.5 @@ -477,7 +477,7 @@ importers: specifier: ^1.6.3 version: 1.6.4 astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro autoprefixer: specifier: ^10.4.15 @@ -495,7 +495,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^4.7.0 + specifier: ^4.7.1 version: link:../../packages/astro vitest: specifier: ^1.5.0