diff --git a/.changeset/chilly-carrots-think.md b/.changeset/chilly-carrots-think.md deleted file mode 100644 index a90ab8715..000000000 --- a/.changeset/chilly-carrots-think.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -preventing multiple doctype injection into html documents diff --git a/.changeset/famous-dancers-explain.md b/.changeset/famous-dancers-explain.md deleted file mode 100644 index 9038ba733..000000000 --- a/.changeset/famous-dancers-explain.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@astrojs/vercel': patch ---- - -- Upgraded @vercel/nft to 0.22.1 -- Fix monorepos (#5020) diff --git a/.changeset/friendly-bottles-push.md b/.changeset/friendly-bottles-push.md deleted file mode 100644 index 73c677311..000000000 --- a/.changeset/friendly-bottles-push.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@astrojs/react': minor ---- - -Add support for mui - -This adds support for [mui](https://mui.com/) through configuration. Users will now not need to configure this library to get it to work. diff --git a/.changeset/itchy-tigers-help.md b/.changeset/itchy-tigers-help.md deleted file mode 100644 index 7ca2646f5..000000000 --- a/.changeset/itchy-tigers-help.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -'@astrojs/preact': minor -'astro': patch ---- - -Shared state in Preact components with signals - -This makes it possible to share client state between Preact islands via signals. - -For example, you can create a signals in an Astro component and then pass it to multiple islands: - -```astro ---- -// Component Imports -import Counter from '../components/Counter'; -import { signal } from '@preact/signals'; -const count = signal(0); ---- - - - -``` diff --git a/.changeset/six-oranges-shop.md b/.changeset/six-oranges-shop.md deleted file mode 100644 index 7bb52016f..000000000 --- a/.changeset/six-oranges-shop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -New algorithm for shorter CSS bundle names diff --git a/.changeset/sixty-actors-look.md b/.changeset/sixty-actors-look.md deleted file mode 100644 index fe6c1adb6..000000000 --- a/.changeset/sixty-actors-look.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/image': patch ---- - -Fix remote images in SSG mode diff --git a/.changeset/small-laws-dream.md b/.changeset/small-laws-dream.md deleted file mode 100644 index 8061f3ea2..000000000 --- a/.changeset/small-laws-dream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/image': patch ---- - -Support strict dependency install diff --git a/examples/basics/package.json b/examples/basics/package.json index 2766ee888..0317758ca 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6" + "astro": "^1.4.7" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 2618664e5..722b1a2fe 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "@astrojs/mdx": "^0.11.4", "@astrojs/rss": "^1.0.2", "@astrojs/sitemap": "^1.0.0" diff --git a/examples/component/package.json b/examples/component/package.json index 68328de75..107065147 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.4.6" + "astro": "^1.4.7" }, "peerDependencies": { - "astro": "^1.4.6" + "astro": "^1.4.7" } } diff --git a/examples/deno/package.json b/examples/deno/package.json index 03d098b06..bd3af4dba 100644 --- a/examples/deno/package.json +++ b/examples/deno/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6" + "astro": "^1.4.7" }, "devDependencies": { "@astrojs/deno": "^1.1.0" diff --git a/examples/docs/package.json b/examples/docs/package.json index 7ee7a147a..d84a96527 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,12 +12,12 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "preact": "^10.7.3", "react": "^18.1.0", "react-dom": "^18.1.0", - "@astrojs/react": "^1.1.4", - "@astrojs/preact": "^1.1.1", + "@astrojs/react": "^1.2.0", + "@astrojs/preact": "^1.2.0", "@algolia/client-search": "^4.13.1", "@docsearch/css": "^3.1.0", "@docsearch/react": "^3.1.0", diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index c43da4318..b22c9c637 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "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 d14f98d65..b0742ff94 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "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 444662ba8..9adb7a9e1 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -11,15 +11,15 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "preact": "^10.7.3", "react": "^18.1.0", "react-dom": "^18.1.0", "solid-js": "^1.4.3", "svelte": "^3.48.0", "vue": "^3.2.37", - "@astrojs/preact": "^1.1.1", - "@astrojs/react": "^1.1.4", + "@astrojs/preact": "^1.2.0", + "@astrojs/react": "^1.2.0", "@astrojs/solid-js": "^1.1.1", "@astrojs/svelte": "^1.0.1", "@astrojs/vue": "^1.1.0" diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 28845d536..6460bff84 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "preact": "^10.7.3", - "@astrojs/preact": "^1.1.1", + "@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 763e2ed17..44cb415ba 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,10 +11,10 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "react": "^18.1.0", "react-dom": "^18.1.0", - "@astrojs/react": "^1.1.4", + "@astrojs/react": "^1.2.0", "@types/react": "^18.0.10", "@types/react-dom": "^18.0.5" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index c269ec054..9ba2cf652 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "solid-js": "^1.4.3", "@astrojs/solid-js": "^1.1.1" } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 7e8787946..020a1d135 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.1", - "astro": "^1.4.6" + "astro": "^1.4.7" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 9ac75f1fc..a27c9c407 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "vue": "^3.2.37", "@astrojs/vue": "^1.1.0" } diff --git a/examples/integration/package.json b/examples/integration/package.json index bb22851a4..8beb4f866 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.4.2" + "astro": "^1.4.7" }, "peerDependencies": { - "astro": "^1.4.2" + "astro": "^1.4.7" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index e163dafb6..4cc8bb39b 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6" + "astro": "^1.4.7" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index b8670a3e0..3dd1d0889 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6" + "astro": "^1.4.7" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 69476170a..dd6ac8137 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6" + "astro": "^1.4.7" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index c525e9364..5d05fca69 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -13,7 +13,7 @@ }, "devDependencies": {}, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "svelte": "^3.48.0", "@astrojs/svelte": "^1.0.1", "@astrojs/node": "^1.1.0", diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 2312f5d56..abb6fe575 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "@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 c7ba0ceb7..e899f3874 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6" + "astro": "^1.4.7" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index a56043cb6..be6fba523 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "preact": "^10.6.5", - "@astrojs/preact": "^1.1.1", + "@astrojs/preact": "^1.2.0", "@astrojs/mdx": "^0.11.4" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 5d2c9d3b4..a25ad90bb 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "preact": "^10.7.3", - "@astrojs/preact": "^1.1.1", + "@astrojs/preact": "^1.2.0", "nanostores": "^0.5.12", "@nanostores/preact": "^0.1.3" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 6a972630b..f85137fd2 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "@astrojs/tailwind": "^2.0.2", "autoprefixer": "^10.4.7", "canvas-confetti": "^1.5.1", diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index 4cc23862b..5ed93e41d 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.4.6", + "astro": "^1.4.7", "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 85b5936e1..778e86b41 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^1.4.6", + "astro": "^1.4.7", "vitest": "^0.20.3" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index f1c4231b2..9bf98dcf3 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,31 @@ # astro +## 1.4.7 + +### Patch Changes + +- [#5035](https://github.com/withastro/astro/pull/5035) [`d7bfb144b`](https://github.com/withastro/astro/commit/d7bfb144ba1718d14664ec755adf6e2281a4ab71) Thanks [@AirBorne04](https://github.com/AirBorne04)! - preventing multiple doctype injection into html documents + +- [#5015](https://github.com/withastro/astro/pull/5015) [`b1964e9e1`](https://github.com/withastro/astro/commit/b1964e9e1b7f9178036e266b89d3c8b9cbffd1c6) Thanks [@matthewp](https://github.com/matthewp)! - Shared state in Preact components with signals + + This makes it possible to share client state between Preact islands via signals. + + For example, you can create a signals in an Astro component and then pass it to multiple islands: + + ```astro + --- + // Component Imports + import Counter from '../components/Counter'; + import { signal } from '@preact/signals'; + const count = signal(0); + --- + + + + ``` + +- [#5036](https://github.com/withastro/astro/pull/5036) [`38fdb4ca6`](https://github.com/withastro/astro/commit/38fdb4ca6f7c6af2fff69fe5bd60bdf2c9d7a6f1) Thanks [@matthewp](https://github.com/matthewp)! - New algorithm for shorter CSS bundle names + ## 1.4.6 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 2e4c4f221..73f30610f 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.4.6", + "version": "1.4.7", "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/image/CHANGELOG.md b/packages/integrations/image/CHANGELOG.md index f4ca4fedb..224725a4a 100644 --- a/packages/integrations/image/CHANGELOG.md +++ b/packages/integrations/image/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/image +## 0.9.3 + +### Patch Changes + +- [#5021](https://github.com/withastro/astro/pull/5021) [`062335dbf`](https://github.com/withastro/astro/commit/062335dbf7300ad5370e29ebcf7a05d5a4703a1c) Thanks [@matthewp](https://github.com/matthewp)! - Fix remote images in SSG mode + +- [#5034](https://github.com/withastro/astro/pull/5034) [`2d9d42216`](https://github.com/withastro/astro/commit/2d9d42216722334db03adb14e59773db8389b7f9) Thanks [@bluwy](https://github.com/bluwy)! - Support strict dependency install + ## 0.9.2 ### Patch Changes diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json index c941d3fba..202bd427b 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.9.2", + "version": "0.9.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md index adc14708e..fcc9d4739 100644 --- a/packages/integrations/preact/CHANGELOG.md +++ b/packages/integrations/preact/CHANGELOG.md @@ -1,5 +1,27 @@ # @astrojs/preact +## 1.2.0 + +### Minor Changes + +- [#5015](https://github.com/withastro/astro/pull/5015) [`b1964e9e1`](https://github.com/withastro/astro/commit/b1964e9e1b7f9178036e266b89d3c8b9cbffd1c6) Thanks [@matthewp](https://github.com/matthewp)! - Shared state in Preact components with signals + + This makes it possible to share client state between Preact islands via signals. + + For example, you can create a signals in an Astro component and then pass it to multiple islands: + + ```astro + --- + // Component Imports + import Counter from '../components/Counter'; + import { signal } from '@preact/signals'; + const count = signal(0); + --- + + + + ``` + ## 1.1.1 ### Patch Changes diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index 8bd8d2a13..609321616 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": "1.1.1", + "version": "1.2.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index fe77b21b8..2b4a26e47 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/react +## 1.2.0 + +### Minor Changes + +- [#5016](https://github.com/withastro/astro/pull/5016) [`6efeaeb39`](https://github.com/withastro/astro/commit/6efeaeb39ed7e6642b31603745750ccb9fe0ff1e) Thanks [@matthewp](https://github.com/matthewp)! - Add support for mui + + This adds support for [mui](https://mui.com/) through configuration. Users will now not need to configure this library to get it to work. + ## 1.1.4 ### Patch Changes diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index e13550bae..7b7b7644f 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": "1.1.4", + "version": "1.2.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md index f6a5c7779..5722af5a5 100644 --- a/packages/integrations/vercel/CHANGELOG.md +++ b/packages/integrations/vercel/CHANGELOG.md @@ -1,5 +1,12 @@ # @astrojs/vercel +## 2.1.1 + +### Patch Changes + +- [#5033](https://github.com/withastro/astro/pull/5033) [`c1f991408`](https://github.com/withastro/astro/commit/c1f991408b817217dbd4035dcc4ac0a2fecd08b8) Thanks [@JuanM04](https://github.com/JuanM04)! - - Upgraded @vercel/nft to 0.22.1 + - Fix monorepos (#5020) + ## 2.1.0 ### Minor Changes diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json index 37b16a388..df1315635 100644 --- a/packages/integrations/vercel/package.json +++ b/packages/integrations/vercel/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/vercel", "description": "Deploy your site to Vercel", - "version": "2.1.0", + "version": "2.1.1", "type": "module", "author": "withastro", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 38bb2f9fd..fc38bc221 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -58,7 +58,7 @@ importers: examples/basics: specifiers: - astro: ^1.4.6 + astro: ^1.4.7 dependencies: astro: link:../../packages/astro @@ -67,7 +67,7 @@ importers: '@astrojs/mdx': ^0.11.4 '@astrojs/rss': ^1.0.2 '@astrojs/sitemap': ^1.0.0 - astro: ^1.4.6 + astro: ^1.4.7 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx '@astrojs/rss': link:../../packages/astro-rss @@ -76,14 +76,14 @@ importers: examples/component: specifiers: - astro: ^1.4.6 + astro: ^1.4.7 devDependencies: astro: link:../../packages/astro examples/deno: specifiers: '@astrojs/deno': ^1.1.0 - astro: ^1.4.6 + astro: ^1.4.7 dependencies: astro: link:../../packages/astro devDependencies: @@ -92,14 +92,14 @@ importers: examples/docs: specifiers: '@algolia/client-search': ^4.13.1 - '@astrojs/preact': ^1.1.1 - '@astrojs/react': ^1.1.4 + '@astrojs/preact': ^1.2.0 + '@astrojs/react': ^1.2.0 '@docsearch/css': ^3.1.0 '@docsearch/react': ^3.1.0 '@types/node': ^18.0.0 '@types/react': ^17.0.45 '@types/react-dom': ^18.0.0 - astro: ^1.4.6 + astro: ^1.4.7 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -122,7 +122,7 @@ importers: '@astrojs/alpinejs': ^0.1.2 '@types/alpinejs': ^3.7.0 alpinejs: ^3.10.2 - astro: ^1.4.6 + astro: ^1.4.7 dependencies: '@astrojs/alpinejs': link:../../packages/integrations/alpinejs '@types/alpinejs': 3.7.0 @@ -133,7 +133,7 @@ importers: specifiers: '@astrojs/lit': ^1.0.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.4.6 + astro: ^1.4.7 lit: ^2.2.5 dependencies: '@astrojs/lit': link:../../packages/integrations/lit @@ -143,12 +143,12 @@ importers: examples/framework-multiple: specifiers: - '@astrojs/preact': ^1.1.1 - '@astrojs/react': ^1.1.4 + '@astrojs/preact': ^1.2.0 + '@astrojs/react': ^1.2.0 '@astrojs/solid-js': ^1.1.1 '@astrojs/svelte': ^1.0.1 '@astrojs/vue': ^1.1.0 - astro: ^1.4.6 + astro: ^1.4.7 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -171,9 +171,9 @@ importers: examples/framework-preact: specifiers: - '@astrojs/preact': ^1.1.1 + '@astrojs/preact': ^1.2.0 '@preact/signals': ^1.1.0 - astro: ^1.4.6 + astro: ^1.4.7 preact: ^10.7.3 dependencies: '@astrojs/preact': link:../../packages/integrations/preact @@ -183,10 +183,10 @@ importers: examples/framework-react: specifiers: - '@astrojs/react': ^1.1.4 + '@astrojs/react': ^1.2.0 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.4.6 + astro: ^1.4.7 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -200,7 +200,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^1.1.1 - astro: ^1.4.6 + astro: ^1.4.7 solid-js: ^1.4.3 dependencies: '@astrojs/solid-js': link:../../packages/integrations/solid @@ -210,7 +210,7 @@ importers: examples/framework-svelte: specifiers: '@astrojs/svelte': ^1.0.1 - astro: ^1.4.6 + astro: ^1.4.7 svelte: ^3.48.0 dependencies: '@astrojs/svelte': link:../../packages/integrations/svelte @@ -220,7 +220,7 @@ importers: examples/framework-vue: specifiers: '@astrojs/vue': ^1.1.0 - astro: ^1.4.6 + astro: ^1.4.7 vue: ^3.2.37 dependencies: '@astrojs/vue': link:../../packages/integrations/vue @@ -229,25 +229,25 @@ importers: examples/integration: specifiers: - astro: ^1.4.2 + astro: ^1.4.7 devDependencies: astro: link:../../packages/astro examples/minimal: specifiers: - astro: ^1.4.6 + astro: ^1.4.7 dependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.4.6 + astro: ^1.4.7 dependencies: astro: link:../../packages/astro examples/portfolio: specifiers: - astro: ^1.4.6 + astro: ^1.4.7 dependencies: astro: link:../../packages/astro @@ -255,7 +255,7 @@ importers: specifiers: '@astrojs/node': ^1.1.0 '@astrojs/svelte': ^1.0.1 - astro: ^1.4.6 + astro: ^1.4.7 concurrently: ^7.2.1 lightcookie: ^1.0.25 svelte: ^3.48.0 @@ -274,7 +274,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^1.1.3 - astro: ^1.4.6 + astro: ^1.4.7 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -291,15 +291,15 @@ importers: examples/with-markdown-shiki: specifiers: - astro: ^1.4.6 + astro: ^1.4.7 dependencies: astro: link:../../packages/astro examples/with-mdx: specifiers: '@astrojs/mdx': ^0.11.4 - '@astrojs/preact': ^1.1.1 - astro: ^1.4.6 + '@astrojs/preact': ^1.2.0 + astro: ^1.4.7 preact: ^10.6.5 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx @@ -309,9 +309,9 @@ importers: examples/with-nanostores: specifiers: - '@astrojs/preact': ^1.1.1 + '@astrojs/preact': ^1.2.0 '@nanostores/preact': ^0.1.3 - astro: ^1.4.6 + astro: ^1.4.7 nanostores: ^0.5.12 preact: ^10.7.3 dependencies: @@ -324,7 +324,7 @@ importers: examples/with-tailwindcss: specifiers: '@astrojs/tailwind': ^2.0.2 - astro: ^1.4.6 + astro: ^1.4.7 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -339,7 +339,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.4.6 + astro: ^1.4.7 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 dependencies: @@ -349,7 +349,7 @@ importers: examples/with-vitest: specifiers: - astro: ^1.4.6 + astro: ^1.4.7 vitest: ^0.20.3 dependencies: astro: link:../../packages/astro