From f8115180f346375f8eb089e63be99d227d2d23b2 Mon Sep 17 00:00:00 2001 From: "Fred K. Bot" <108291165+fredkbot@users.noreply.github.com> Date: Thu, 10 Nov 2022 13:01:45 -0800 Subject: [PATCH] [ci] release (#5329) Co-authored-by: github-actions[bot] --- .changeset/curly-experts-think.md | 5 -- .changeset/fifty-olives-end.md | 5 -- .changeset/good-ghosts-attack.md | 5 -- .changeset/heavy-kangaroos-sin.md | 5 -- .changeset/hot-parrots-exist.md | 5 -- .changeset/plenty-eyes-develop.md | 7 --- .changeset/poor-eagles-melt.md | 5 -- .changeset/spotty-planes-fix.md | 5 -- examples/basics/package.json | 2 +- examples/blog/package.json | 4 +- examples/component/package.json | 4 +- examples/deno/package.json | 2 +- examples/docs/package.json | 2 +- examples/framework-alpine/package.json | 2 +- examples/framework-lit/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 | 4 +- examples/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 2 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown-shiki/package.json | 2 +- examples/with-mdx/package.json | 4 +- examples/with-nanostores/package.json | 2 +- examples/with-tailwindcss/package.json | 4 +- examples/with-vite-plugin-pwa/package.json | 2 +- examples/with-vitest/package.json | 2 +- packages/astro/CHANGELOG.md | 18 ++++++ packages/astro/package.json | 2 +- packages/integrations/cloudflare/package.json | 2 +- packages/integrations/deno/package.json | 2 +- packages/integrations/image/CHANGELOG.md | 6 ++ packages/integrations/image/package.json | 2 +- packages/integrations/mdx/CHANGELOG.md | 6 ++ packages/integrations/mdx/package.json | 2 +- packages/integrations/node/package.json | 2 +- pnpm-lock.yaml | 58 +++++++++---------- 44 files changed, 96 insertions(+), 108 deletions(-) delete mode 100644 .changeset/curly-experts-think.md delete mode 100644 .changeset/fifty-olives-end.md delete mode 100644 .changeset/good-ghosts-attack.md delete mode 100644 .changeset/heavy-kangaroos-sin.md delete mode 100644 .changeset/hot-parrots-exist.md delete mode 100644 .changeset/plenty-eyes-develop.md delete mode 100644 .changeset/poor-eagles-melt.md delete mode 100644 .changeset/spotty-planes-fix.md diff --git a/.changeset/curly-experts-think.md b/.changeset/curly-experts-think.md deleted file mode 100644 index 8696703e72..0000000000 --- a/.changeset/curly-experts-think.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Improved error messages descriptions and hints to be more informative diff --git a/.changeset/fifty-olives-end.md b/.changeset/fifty-olives-end.md deleted file mode 100644 index 393418e66b..0000000000 --- a/.changeset/fifty-olives-end.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/image': patch ---- - -Share fallback img src with source of Picture component diff --git a/.changeset/good-ghosts-attack.md b/.changeset/good-ghosts-attack.md deleted file mode 100644 index c4a8404b2c..0000000000 --- a/.changeset/good-ghosts-attack.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Allow dynamic segments in injected routes diff --git a/.changeset/heavy-kangaroos-sin.md b/.changeset/heavy-kangaroos-sin.md deleted file mode 100644 index 65dce57a36..0000000000 --- a/.changeset/heavy-kangaroos-sin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/mdx': patch ---- - -Preserve code element node `data.meta` in `properties.metastring` for rehype syntax highlighters, like `rehype-pretty-code`` diff --git a/.changeset/hot-parrots-exist.md b/.changeset/hot-parrots-exist.md deleted file mode 100644 index f7c663987e..0000000000 --- a/.changeset/hot-parrots-exist.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Prevent jsx throws from hanging server diff --git a/.changeset/plenty-eyes-develop.md b/.changeset/plenty-eyes-develop.md deleted file mode 100644 index 74073721bf..0000000000 --- a/.changeset/plenty-eyes-develop.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'astro': patch ---- - -404 when not using subpath for items in public in dev - -Previously if using a base like `base: '/subpath/` you could load things from the root, which would break in prod. Now you must include the subpath. diff --git a/.changeset/poor-eagles-melt.md b/.changeset/poor-eagles-melt.md deleted file mode 100644 index ae335265b6..0000000000 --- a/.changeset/poor-eagles-melt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Upgrade `@astrojs/compiler` to latest diff --git a/.changeset/spotty-planes-fix.md b/.changeset/spotty-planes-fix.md deleted file mode 100644 index c764a4860a..0000000000 --- a/.changeset/spotty-planes-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Update Astro language-server to 0.28.3 diff --git a/examples/basics/package.json b/examples/basics/package.json index c8389b9b3c..bafe63d14c 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 640e416a0c..d00d246edd 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", - "@astrojs/mdx": "^0.11.5", + "astro": "^1.6.6", + "@astrojs/mdx": "^0.11.6", "@astrojs/rss": "^1.0.3", "@astrojs/sitemap": "^1.0.0" } diff --git a/examples/component/package.json b/examples/component/package.json index ca7887ad08..a707db3a1c 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" }, "peerDependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" } } diff --git a/examples/deno/package.json b/examples/deno/package.json index e3ce7523bc..711fb406ca 100644 --- a/examples/deno/package.json +++ b/examples/deno/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" }, "devDependencies": { "@astrojs/deno": "^2.0.0" diff --git a/examples/docs/package.json b/examples/docs/package.json index acb5d86b93..a2da5225ed 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,7 +12,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "preact": "^10.7.3", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 0142663938..1914755176 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "alpinejs": "^3.10.2", "@astrojs/alpinejs": "^0.1.2", "@types/alpinejs": "^3.7.0" diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index bf4a72957d..d22634bb3b 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "lit": "^2.2.5", "@astrojs/lit": "^1.0.0", "@webcomponents/template-shadowroot": "^0.1.0" diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 7bbae4ff24..f516050351 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "preact": "^10.7.3", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 0ed034b292..e0794214fb 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "preact": "^10.7.3", "@astrojs/preact": "^1.2.0", "@preact/signals": "^1.1.0" diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index f375e7d75b..c01ab4386c 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "react": "^18.1.0", "react-dom": "^18.1.0", "@astrojs/react": "^1.2.2", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 58341e3e5d..c551d2726d 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "solid-js": "^1.4.3", "@astrojs/solid-js": "^1.2.2" } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 2b0201fe37..fce20b00b9 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -13,6 +13,6 @@ "dependencies": { "svelte": "^3.48.0", "@astrojs/svelte": "^1.0.2", - "astro": "^1.6.5" + "astro": "^1.6.6" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 9442c0aa58..2ea033ce1b 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "vue": "^3.2.37", "@astrojs/vue": "^1.2.1" } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 5e5bd81766..a4c94fccad 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -13,6 +13,6 @@ }, "dependencies": { "@astrojs/node": "^3.0.0", - "astro": "^1.6.5" + "astro": "^1.6.6" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index e96199b4d5..3a9c2400b0 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" }, "peerDependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 2d27f7e210..e78911c36f 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index f77e0150e7..9a39d7023c 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 523ddfb6ae..52edb388aa 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index d50b9459e1..0d84a555b1 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,7 +12,7 @@ "server": "node dist/server/entry.mjs" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "svelte": "^3.48.0", "@astrojs/svelte": "^1.0.2", "@astrojs/node": "^3.0.0", diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 205e514972..8ec447c58c 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "@astrojs/markdown-remark": "^1.1.3", "hast-util-select": "5.0.1", "rehype-autolink-headings": "^6.1.1", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index d58bf44b70..9be67f60ba 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 64467669f3..092399af9c 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "preact": "^10.6.5", "@astrojs/preact": "^1.2.0", - "@astrojs/mdx": "^0.11.5" + "@astrojs/mdx": "^0.11.6" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index f242f7d4ab..01d40b9b74 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "preact": "^10.7.3", "@astrojs/preact": "^1.2.0", "nanostores": "^0.5.12", diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 1a8176cbbc..dbb4c1f482 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -11,10 +11,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^0.11.5", + "@astrojs/mdx": "^0.11.6", "@astrojs/tailwind": "^2.1.2", "@types/canvas-confetti": "^1.4.3", - "astro": "^1.6.5", + "astro": "^1.6.6", "autoprefixer": "^10.4.7", "canvas-confetti": "^1.5.1", "postcss": "^8.4.14", diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index 0a47fdd753..3b6b315d83 100644 --- a/examples/with-vite-plugin-pwa/package.json +++ b/examples/with-vite-plugin-pwa/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "vite-plugin-pwa": "0.11.11", "workbox-window": "^6.5.3" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index c67d6447c3..6d179a5b91 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^1.6.5", + "astro": "^1.6.6", "vitest": "^0.20.3" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 3fe64f0e4d..ccf091808c 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,23 @@ # astro +## 1.6.6 + +### Patch Changes + +- [#5316](https://github.com/withastro/astro/pull/5316) [`a780f2595`](https://github.com/withastro/astro/commit/a780f2595db86a773be0be1fefcbd9cbab2e8fc2) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Improved error messages descriptions and hints to be more informative + +- [#5331](https://github.com/withastro/astro/pull/5331) [`688f8e4bc`](https://github.com/withastro/astro/commit/688f8e4bc1d8a284ee3d29f6122dbdebc02310ff) Thanks [@matthewp](https://github.com/matthewp)! - Allow dynamic segments in injected routes + +- [#5330](https://github.com/withastro/astro/pull/5330) [`7e19e8b30`](https://github.com/withastro/astro/commit/7e19e8b30d0b411d69eb7d9c1de9dc304f084b37) Thanks [@matthewp](https://github.com/matthewp)! - Prevent jsx throws from hanging server + +- [#5328](https://github.com/withastro/astro/pull/5328) [`bcd0f8f8c`](https://github.com/withastro/astro/commit/bcd0f8f8c4c27d19296ec08d7bf7d8f5047d583e) Thanks [@matthewp](https://github.com/matthewp)! - 404 when not using subpath for items in public in dev + + Previously if using a base like `base: '/subpath/` you could load things from the root, which would break in prod. Now you must include the subpath. + +- [#5339](https://github.com/withastro/astro/pull/5339) [`03a8f89d5`](https://github.com/withastro/astro/commit/03a8f89d5ff79f43f4025fda0c93fd3c85482412) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Upgrade `@astrojs/compiler` to latest + +- [#5327](https://github.com/withastro/astro/pull/5327) [`0dcdc6fb1`](https://github.com/withastro/astro/commit/0dcdc6fb1e6160c8a225a65c4810f565e2b673b5) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update Astro language-server to 0.28.3 + ## 1.6.5 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 4f5fbfeaf3..fc584e7b3e 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.6.5", + "version": "1.6.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/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index 66c05bba10..c97963ed32 100644 --- a/packages/integrations/cloudflare/package.json +++ b/packages/integrations/cloudflare/package.json @@ -37,7 +37,7 @@ "esbuild": "^0.14.42" }, "peerDependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" }, "devDependencies": { "astro": "workspace:*", diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json index 966b651ef4..667b1a2978 100644 --- a/packages/integrations/deno/package.json +++ b/packages/integrations/deno/package.json @@ -32,7 +32,7 @@ "esbuild": "^0.14.43" }, "peerDependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" }, "devDependencies": { "astro": "workspace:*", diff --git a/packages/integrations/image/CHANGELOG.md b/packages/integrations/image/CHANGELOG.md index 42256f1460..e934a48dc8 100644 --- a/packages/integrations/image/CHANGELOG.md +++ b/packages/integrations/image/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/image +## 0.11.3 + +### Patch Changes + +- [#5324](https://github.com/withastro/astro/pull/5324) [`dc00ca464`](https://github.com/withastro/astro/commit/dc00ca464865feccd3760b54e0ccc58dbc1e804d) Thanks [@bluwy](https://github.com/bluwy)! - Share fallback img src with source of Picture component + ## 0.11.2 ### Patch Changes diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json index 5e6ee1584d..26c2d8caaa 100644 --- a/packages/integrations/image/package.json +++ b/packages/integrations/image/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/image", "description": "Load and transform images in your Astro site.", - "version": "0.11.2", + "version": "0.11.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index 62ecd23910..1ec6bf704e 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/mdx +## 0.11.6 + +### Patch Changes + +- [#5335](https://github.com/withastro/astro/pull/5335) [`dca762cf7`](https://github.com/withastro/astro/commit/dca762cf734a657d8f126fd6958892b6163a4f67) Thanks [@bluwy](https://github.com/bluwy)! - Preserve code element node `data.meta` in `properties.metastring` for rehype syntax highlighters, like `rehype-pretty-code`` + ## 0.11.5 ### Patch Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index 44189f4e32..41ff139ce0 100644 --- a/packages/integrations/mdx/package.json +++ b/packages/integrations/mdx/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/mdx", "description": "Use MDX within Astro", - "version": "0.11.5", + "version": "0.11.6", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json index bcf2c24031..990d153753 100644 --- a/packages/integrations/node/package.json +++ b/packages/integrations/node/package.json @@ -34,7 +34,7 @@ "send": "^0.18.0" }, "peerDependencies": { - "astro": "^1.6.5" + "astro": "^1.6.6" }, "devDependencies": { "@types/send": "^0.17.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a872886698..6054af20a2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -61,16 +61,16 @@ importers: examples/basics: specifiers: - astro: ^1.6.5 + astro: ^1.6.6 dependencies: astro: link:../../packages/astro examples/blog: specifiers: - '@astrojs/mdx': ^0.11.5 + '@astrojs/mdx': ^0.11.6 '@astrojs/rss': ^1.0.3 '@astrojs/sitemap': ^1.0.0 - astro: ^1.6.5 + astro: ^1.6.6 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx '@astrojs/rss': link:../../packages/astro-rss @@ -79,14 +79,14 @@ importers: examples/component: specifiers: - astro: ^1.6.5 + astro: ^1.6.6 devDependencies: astro: link:../../packages/astro examples/deno: specifiers: '@astrojs/deno': ^2.0.0 - astro: ^1.6.5 + astro: ^1.6.6 dependencies: astro: link:../../packages/astro devDependencies: @@ -102,7 +102,7 @@ importers: '@types/node': ^18.0.0 '@types/react': ^17.0.45 '@types/react-dom': ^18.0.0 - astro: ^1.6.5 + astro: ^1.6.6 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -125,7 +125,7 @@ importers: '@astrojs/alpinejs': ^0.1.2 '@types/alpinejs': ^3.7.0 alpinejs: ^3.10.2 - astro: ^1.6.5 + astro: ^1.6.6 dependencies: '@astrojs/alpinejs': link:../../packages/integrations/alpinejs '@types/alpinejs': 3.7.1 @@ -136,7 +136,7 @@ importers: specifiers: '@astrojs/lit': ^1.0.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.6.5 + astro: ^1.6.6 lit: ^2.2.5 dependencies: '@astrojs/lit': link:../../packages/integrations/lit @@ -151,7 +151,7 @@ importers: '@astrojs/solid-js': ^1.2.2 '@astrojs/svelte': ^1.0.2 '@astrojs/vue': ^1.2.1 - astro: ^1.6.5 + astro: ^1.6.6 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -176,7 +176,7 @@ importers: specifiers: '@astrojs/preact': ^1.2.0 '@preact/signals': ^1.1.0 - astro: ^1.6.5 + astro: ^1.6.6 preact: ^10.7.3 dependencies: '@astrojs/preact': link:../../packages/integrations/preact @@ -189,7 +189,7 @@ importers: '@astrojs/react': ^1.2.2 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.6.5 + astro: ^1.6.6 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -203,7 +203,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^1.2.2 - astro: ^1.6.5 + astro: ^1.6.6 solid-js: ^1.4.3 dependencies: '@astrojs/solid-js': link:../../packages/integrations/solid @@ -213,7 +213,7 @@ importers: examples/framework-svelte: specifiers: '@astrojs/svelte': ^1.0.2 - astro: ^1.6.5 + astro: ^1.6.6 svelte: ^3.48.0 dependencies: '@astrojs/svelte': link:../../packages/integrations/svelte @@ -223,7 +223,7 @@ importers: examples/framework-vue: specifiers: '@astrojs/vue': ^1.2.1 - astro: ^1.6.5 + astro: ^1.6.6 vue: ^3.2.37 dependencies: '@astrojs/vue': link:../../packages/integrations/vue @@ -233,32 +233,32 @@ importers: examples/hackernews: specifiers: '@astrojs/node': ^3.0.0 - astro: ^1.6.5 + astro: ^1.6.6 dependencies: '@astrojs/node': link:../../packages/integrations/node astro: link:../../packages/astro examples/integration: specifiers: - astro: ^1.6.5 + astro: ^1.6.6 devDependencies: astro: link:../../packages/astro examples/minimal: specifiers: - astro: ^1.6.5 + astro: ^1.6.6 dependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.6.5 + astro: ^1.6.6 dependencies: astro: link:../../packages/astro examples/portfolio: specifiers: - astro: ^1.6.5 + astro: ^1.6.6 dependencies: astro: link:../../packages/astro @@ -266,7 +266,7 @@ importers: specifiers: '@astrojs/node': ^3.0.0 '@astrojs/svelte': ^1.0.2 - astro: ^1.6.5 + astro: ^1.6.6 concurrently: ^7.2.1 svelte: ^3.48.0 unocss: ^0.15.6 @@ -283,7 +283,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^1.1.3 - astro: ^1.6.5 + astro: ^1.6.6 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -300,15 +300,15 @@ importers: examples/with-markdown-shiki: specifiers: - astro: ^1.6.5 + astro: ^1.6.6 dependencies: astro: link:../../packages/astro examples/with-mdx: specifiers: - '@astrojs/mdx': ^0.11.5 + '@astrojs/mdx': ^0.11.6 '@astrojs/preact': ^1.2.0 - astro: ^1.6.5 + astro: ^1.6.6 preact: ^10.6.5 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx @@ -320,7 +320,7 @@ importers: specifiers: '@astrojs/preact': ^1.2.0 '@nanostores/preact': ^0.1.3 - astro: ^1.6.5 + astro: ^1.6.6 nanostores: ^0.5.12 preact: ^10.7.3 dependencies: @@ -332,10 +332,10 @@ importers: examples/with-tailwindcss: specifiers: - '@astrojs/mdx': ^0.11.5 + '@astrojs/mdx': ^0.11.6 '@astrojs/tailwind': ^2.1.2 '@types/canvas-confetti': ^1.4.3 - astro: ^1.6.5 + astro: ^1.6.6 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -352,7 +352,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.6.5 + astro: ^1.6.6 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 dependencies: @@ -362,7 +362,7 @@ importers: examples/with-vitest: specifiers: - astro: ^1.6.5 + astro: ^1.6.6 vitest: ^0.20.3 dependencies: astro: link:../../packages/astro