diff --git a/.changeset/dirty-cycles-lick.md b/.changeset/dirty-cycles-lick.md deleted file mode 100644 index e8e39be9bd633..0000000000000 --- a/.changeset/dirty-cycles-lick.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -'astro': minor ---- - -Add `astro/types` entrypoint. These utilities can be used for common prop type patterns. - -## `HTMLAttributes` - -If you would like to extend valid HTML attributes for a given HTML element, you may use the provided `HTMLAttributes` typeโ€”it accepts an element name and returns the valid HTML attributes for that element name. - -```ts -import { HTMLAttributes } from 'astro/types'; -interface Props extends HTMLAttributes<'a'> { - myProp?: string; -}; -``` diff --git a/.changeset/many-rockets-admire.md b/.changeset/many-rockets-admire.md deleted file mode 100644 index a566b86d1cad6..0000000000000 --- a/.changeset/many-rockets-admire.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'astro': minor -'@astrojs/rss': patch ---- - -Add support for markdown files with the following extensions: -- `.markdown` -- `.mdown` -- `.mkdn` -- `.mkd` -- `.mdwn` diff --git a/.changeset/metal-boxes-compare.md b/.changeset/metal-boxes-compare.md deleted file mode 100644 index 7e9495a07b310..0000000000000 --- a/.changeset/metal-boxes-compare.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/node': patch ---- - -fix static server path for windows system diff --git a/.changeset/poor-frogs-clean.md b/.changeset/poor-frogs-clean.md deleted file mode 100644 index 353e304daed91..0000000000000 --- a/.changeset/poor-frogs-clean.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@astrojs/cloudflare': patch ---- - -enable access to cloudflare runtime [KV, R2, Durable Objects] -- access native cloudflare runtime through `import { getRuntime } from "@astrojs/cloudflare/runtime"` now you can call `getRuntime(Astro.request)` and get access to the runtime environment diff --git a/.changeset/smooth-panthers-clean.md b/.changeset/smooth-panthers-clean.md deleted file mode 100644 index 8d3be7a54d294..0000000000000 --- a/.changeset/smooth-panthers-clean.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'create-astro': minor ---- - -Introducing your new automated assistant: Houston! ๐ŸŽ‰ - -``` -โ•ญโ”€โ”€โ”€โ”€โ”€โ•ฎ Houston: -โ”‚ โ—  โ—ก โ—  Initiating launch sequence... right... now! -โ•ฐโ”€โ”€โ”€โ”€โ”€โ•ฏ -``` - -Updates template and TypeScript prompts for clarity and friendliness. - -Migrates template copying from [`degit`](https://github.com/Rich-Harris/degit) (unmaintained) to [`giget`](https://github.com/unjs/giget) for stability. diff --git a/.changeset/wise-swans-live.md b/.changeset/wise-swans-live.md deleted file mode 100644 index 906199d37bd7d..0000000000000 --- a/.changeset/wise-swans-live.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'astro': minor ---- - -Add support for `--base` CLI argument, which will override the [`base`](https://docs.astro.build/en/reference/configuration-reference/#base) set in your `astro.config.mjs` file. - -``` -astro --site https://astro.build --base /docs -``` diff --git a/.changeset/witty-melons-heal.md b/.changeset/witty-melons-heal.md deleted file mode 100644 index 27202d2c59670..0000000000000 --- a/.changeset/witty-melons-heal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Improve Astro libraries config handling diff --git a/examples/basics/package.json b/examples/basics/package.json index 39a1699fc1c0d..256093d338289 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3" + "astro": "^1.6.0" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index d3af8c79f0868..c62d2e71eefe3 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "@astrojs/mdx": "^0.11.5", - "@astrojs/rss": "^1.0.2", + "@astrojs/rss": "^1.0.3", "@astrojs/sitemap": "^1.0.0" } } diff --git a/examples/component/package.json b/examples/component/package.json index ab60f220bc2a1..d38db51888332 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.5.3" + "astro": "^1.6.0" }, "peerDependencies": { - "astro": "^1.5.3" + "astro": "^1.6.0" } } diff --git a/examples/deno/package.json b/examples/deno/package.json index 35c8d9bfd677b..2642a22883581 100644 --- a/examples/deno/package.json +++ b/examples/deno/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3" + "astro": "^1.6.0" }, "devDependencies": { "@astrojs/deno": "^1.2.0" diff --git a/examples/docs/package.json b/examples/docs/package.json index 360201f1a9f01..e553eef4380a7 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,7 +12,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "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 b5a24b13b546b..2e5cd817779da 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "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 940c382113e1c..0b60a15df60fb 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "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 fc2195cb75a36..11f82490fe1a9 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "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 c61e3598927bf..85c886f02f861 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "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 a990cbdd7dfb8..5fcea3290057c 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "react": "^18.1.0", "react-dom": "^18.1.0", "@astrojs/react": "^1.2.1", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 41b0e4c762357..a8420228563ca 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "solid-js": "^1.4.3", "@astrojs/solid-js": "^1.2.1" } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 3ce7663c83ef9..130c5424f9fa2 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.5.3" + "astro": "^1.6.0" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index edf546ae713b6..bddc584618b9e 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "vue": "^3.2.37", "@astrojs/vue": "^1.2.1" } diff --git a/examples/integration/package.json b/examples/integration/package.json index abcfd17b29817..fea0c07472447 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.5.3" + "astro": "^1.6.0" }, "peerDependencies": { - "astro": "^1.5.3" + "astro": "^1.6.0" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 7bf90c8022bb3..488df32143696 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3" + "astro": "^1.6.0" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 6818c334c96be..1d17f27f688f4 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3" + "astro": "^1.6.0" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 4dd2fb3dc1283..f2d5e1448081c 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3" + "astro": "^1.6.0" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 0b3f7c7bb00a6..751bf36da65b7 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,10 +12,10 @@ "server": "node dist/server/entry.mjs" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "svelte": "^3.48.0", "@astrojs/svelte": "^1.0.2", - "@astrojs/node": "^2.0.1", + "@astrojs/node": "^2.0.2", "concurrently": "^7.2.1", "unocss": "^0.15.6", "vite-imagetools": "^4.0.4" diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 371e19987f7f0..e6072e79e1ddd 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "@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 34eed9fad1b69..e0cc739b6624a 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3" + "astro": "^1.6.0" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 34d5424ce342b..fb4fb7bf1a858 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "preact": "^10.6.5", "@astrojs/preact": "^1.2.0", "@astrojs/mdx": "^0.11.5" diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index e73ea68620140..fdec8f1ac7b60 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "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 b33bd0a913397..f4fb27d97bd5d 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -14,7 +14,7 @@ "@astrojs/mdx": "^0.11.5", "@astrojs/tailwind": "^2.1.1", "@types/canvas-confetti": "^1.4.3", - "astro": "^1.5.3", + "astro": "^1.6.0", "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 115e9a9d3eef4..4e02514100344 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.5.3", + "astro": "^1.6.0", "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 782876289182e..b218061cee8fd 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^1.5.3", + "astro": "^1.6.0", "vitest": "^0.20.3" } } diff --git a/packages/astro-rss/CHANGELOG.md b/packages/astro-rss/CHANGELOG.md index 12519ca64b345..88859d8d3259d 100644 --- a/packages/astro-rss/CHANGELOG.md +++ b/packages/astro-rss/CHANGELOG.md @@ -1,5 +1,16 @@ # @astrojs/rss +## 1.0.3 + +### Patch Changes + +- [#5164](https://github.com/withastro/astro/pull/5164) [`4a8a346ca`](https://github.com/withastro/astro/commit/4a8a346ca9a6d6ed8def2fa32329c1db922893d2) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Add support for markdown files with the following extensions: + - `.markdown` + - `.mdown` + - `.mkdn` + - `.mkd` + - `.mdwn` + ## 1.0.2 ### Patch Changes diff --git a/packages/astro-rss/package.json b/packages/astro-rss/package.json index 132e031ffa1b7..a349482852c60 100644 --- a/packages/astro-rss/package.json +++ b/packages/astro-rss/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/rss", "description": "Add RSS feeds to your Astro projects", - "version": "1.0.2", + "version": "1.0.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 95a563de0a6d4..de7c5963685f5 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,40 @@ # astro +## 1.6.0 + +### Minor Changes + +- [#5147](https://github.com/withastro/astro/pull/5147) [`0bf0758fb`](https://github.com/withastro/astro/commit/0bf0758fb831a91f6628e10a5baabf02f30f1f41) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Add `astro/types` entrypoint. These utilities can be used for common prop type patterns. + + ## `HTMLAttributes` + + If you would like to extend valid HTML attributes for a given HTML element, you may use the provided `HTMLAttributes` typeโ€”it accepts an element name and returns the valid HTML attributes for that element name. + + ```ts + import { HTMLAttributes } from 'astro/types'; + interface Props extends HTMLAttributes<'a'> { + myProp?: string; + } + ``` + +- [#5164](https://github.com/withastro/astro/pull/5164) [`4a8a346ca`](https://github.com/withastro/astro/commit/4a8a346ca9a6d6ed8def2fa32329c1db922893d2) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Add support for markdown files with the following extensions: + + - `.markdown` + - `.mdown` + - `.mkdn` + - `.mkd` + - `.mdwn` + +- [#4917](https://github.com/withastro/astro/pull/4917) [`ddf2f8390`](https://github.com/withastro/astro/commit/ddf2f8390e8dcc64b44636524bdcddae977779f4) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Add support for `--base` CLI argument, which will override the [`base`](https://docs.astro.build/en/reference/configuration-reference/#base) set in your `astro.config.mjs` file. + + ``` + astro --site https://astro.build --base /docs + ``` + +### Patch Changes + +- [#5203](https://github.com/withastro/astro/pull/5203) [`3d99fdd1e`](https://github.com/withastro/astro/commit/3d99fdd1e7ea563775d86d1b00196c4c0c024500) Thanks [@bluwy](https://github.com/bluwy)! - Improve Astro libraries config handling + ## 1.5.3 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 6ebfb9bab8e45..08dbf3b562512 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.5.3", + "version": "1.6.0", "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 58be96037c78c..746ed3bfce87f 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,21 @@ # create-astro +## 1.2.0 + +### Minor Changes + +- [#5088](https://github.com/withastro/astro/pull/5088) [`040837628`](https://github.com/withastro/astro/commit/04083762810a1a9e078a7e68edab945c8063b1ab) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Introducing your new automated assistant: Houston! ๐ŸŽ‰ + + ``` + โ•ญโ”€โ”€โ”€โ”€โ”€โ•ฎ Houston: + โ”‚ โ—  โ—ก โ—  Initiating launch sequence... right... now! + โ•ฐโ”€โ”€โ”€โ”€โ”€โ•ฏ + ``` + + Updates template and TypeScript prompts for clarity and friendliness. + + Migrates template copying from [`degit`](https://github.com/Rich-Harris/degit) (unmaintained) to [`giget`](https://github.com/unjs/giget) for stability. + ## 1.1.0 ### Minor Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index d348b8778f983..7c2bd66612d15 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "1.1.0", + "version": "1.2.0", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/integrations/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md index 19c246cdfbdb0..0ef6d0201b7ce 100644 --- a/packages/integrations/cloudflare/CHANGELOG.md +++ b/packages/integrations/cloudflare/CHANGELOG.md @@ -1,5 +1,12 @@ # @astrojs/cloudflare +## 3.1.1 + +### Patch Changes + +- [#5103](https://github.com/withastro/astro/pull/5103) [`d151d9f3f`](https://github.com/withastro/astro/commit/d151d9f3f29c0a57c59b8029a18717808ccc7f8f) Thanks [@AirBorne04](https://github.com/AirBorne04)! - enable access to cloudflare runtime [KV, R2, Durable Objects] + - access native cloudflare runtime through `import { getRuntime } from "@astrojs/cloudflare/runtime"` now you can call `getRuntime(Astro.request)` and get access to the runtime environment + ## 3.1.0 ### Minor Changes diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index df1348a18868a..46f588908542a 100644 --- a/packages/integrations/cloudflare/package.json +++ b/packages/integrations/cloudflare/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/cloudflare", "description": "Deploy your site to cloudflare workers or cloudflare pages", - "version": "3.1.0", + "version": "3.1.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md index 06cc02f57572e..ff8e772216120 100644 --- a/packages/integrations/node/CHANGELOG.md +++ b/packages/integrations/node/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/node +## 2.0.2 + +### Patch Changes + +- [#5207](https://github.com/withastro/astro/pull/5207) [`c203a5cc2`](https://github.com/withastro/astro/commit/c203a5cc2f12d8c1c3e96d4f08bdd2bb2823e997) Thanks [@BeanWei](https://github.com/BeanWei)! - fix static server path for windows system + ## 2.0.1 ### Patch Changes diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json index 69baca5e2cc3d..849b2292f8cb6 100644 --- a/packages/integrations/node/package.json +++ b/packages/integrations/node/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/node", "description": "Deploy your site to a Node.js server", - "version": "2.0.1", + "version": "2.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4ef405d6773e9..5064651fe3d76 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -61,16 +61,16 @@ importers: examples/basics: specifiers: - astro: ^1.5.3 + astro: ^1.6.0 dependencies: astro: link:../../packages/astro examples/blog: specifiers: '@astrojs/mdx': ^0.11.5 - '@astrojs/rss': ^1.0.2 + '@astrojs/rss': ^1.0.3 '@astrojs/sitemap': ^1.0.0 - astro: ^1.5.3 + astro: ^1.6.0 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx '@astrojs/rss': link:../../packages/astro-rss @@ -79,14 +79,14 @@ importers: examples/component: specifiers: - astro: ^1.5.3 + astro: ^1.6.0 devDependencies: astro: link:../../packages/astro examples/deno: specifiers: '@astrojs/deno': ^1.2.0 - astro: ^1.5.3 + astro: ^1.6.0 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.5.3 + astro: ^1.6.0 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.5.3 + astro: ^1.6.0 dependencies: '@astrojs/alpinejs': link:../../packages/integrations/alpinejs '@types/alpinejs': 3.7.0 @@ -136,7 +136,7 @@ importers: specifiers: '@astrojs/lit': ^1.0.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.5.3 + astro: ^1.6.0 lit: ^2.2.5 dependencies: '@astrojs/lit': link:../../packages/integrations/lit @@ -151,7 +151,7 @@ importers: '@astrojs/solid-js': ^1.2.1 '@astrojs/svelte': ^1.0.2 '@astrojs/vue': ^1.2.1 - astro: ^1.5.3 + astro: ^1.6.0 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.5.3 + astro: ^1.6.0 preact: ^10.7.3 dependencies: '@astrojs/preact': link:../../packages/integrations/preact @@ -189,7 +189,7 @@ importers: '@astrojs/react': ^1.2.1 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.5.3 + astro: ^1.6.0 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -203,7 +203,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^1.2.1 - astro: ^1.5.3 + astro: ^1.6.0 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.5.3 + astro: ^1.6.0 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.5.3 + astro: ^1.6.0 vue: ^3.2.37 dependencies: '@astrojs/vue': link:../../packages/integrations/vue @@ -232,33 +232,33 @@ importers: examples/integration: specifiers: - astro: ^1.5.3 + astro: ^1.6.0 devDependencies: astro: link:../../packages/astro examples/minimal: specifiers: - astro: ^1.5.3 + astro: ^1.6.0 dependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.5.3 + astro: ^1.6.0 dependencies: astro: link:../../packages/astro examples/portfolio: specifiers: - astro: ^1.5.3 + astro: ^1.6.0 dependencies: astro: link:../../packages/astro examples/ssr: specifiers: - '@astrojs/node': ^2.0.1 + '@astrojs/node': ^2.0.2 '@astrojs/svelte': ^1.0.2 - astro: ^1.5.3 + astro: ^1.6.0 concurrently: ^7.2.1 svelte: ^3.48.0 unocss: ^0.15.6 @@ -275,7 +275,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^1.1.3 - astro: ^1.5.3 + astro: ^1.6.0 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -292,7 +292,7 @@ importers: examples/with-markdown-shiki: specifiers: - astro: ^1.5.3 + astro: ^1.6.0 dependencies: astro: link:../../packages/astro @@ -300,7 +300,7 @@ importers: specifiers: '@astrojs/mdx': ^0.11.5 '@astrojs/preact': ^1.2.0 - astro: ^1.5.3 + astro: ^1.6.0 preact: ^10.6.5 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx @@ -312,7 +312,7 @@ importers: specifiers: '@astrojs/preact': ^1.2.0 '@nanostores/preact': ^0.1.3 - astro: ^1.5.3 + astro: ^1.6.0 nanostores: ^0.5.12 preact: ^10.7.3 dependencies: @@ -327,7 +327,7 @@ importers: '@astrojs/mdx': ^0.11.5 '@astrojs/tailwind': ^2.1.1 '@types/canvas-confetti': ^1.4.3 - astro: ^1.5.3 + astro: ^1.6.0 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -344,7 +344,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.5.3 + astro: ^1.6.0 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 dependencies: @@ -354,7 +354,7 @@ importers: examples/with-vitest: specifiers: - astro: ^1.5.3 + astro: ^1.6.0 vitest: ^0.20.3 dependencies: astro: link:../../packages/astro