diff --git a/.changeset/eight-deers-repair.md b/.changeset/eight-deers-repair.md deleted file mode 100644 index d58f8a76fea4..000000000000 --- a/.changeset/eight-deers-repair.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/image': patch ---- - -Allows passing alt to getPicture diff --git a/.changeset/lazy-walls-sneeze.md b/.changeset/lazy-walls-sneeze.md deleted file mode 100644 index 117c163cc3ea..000000000000 --- a/.changeset/lazy-walls-sneeze.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Dedupe Astro package when resolving diff --git a/.changeset/plenty-tigers-pretend.md b/.changeset/plenty-tigers-pretend.md deleted file mode 100644 index 8aa23220724a..000000000000 --- a/.changeset/plenty-tigers-pretend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/vercel': patch ---- - -Updated request-transform methods diff --git a/.changeset/seven-seahorses-talk.md b/.changeset/seven-seahorses-talk.md deleted file mode 100644 index fc130f8b07f3..000000000000 --- a/.changeset/seven-seahorses-talk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Refactor Astro compile flow diff --git a/.changeset/sixty-donuts-chew.md b/.changeset/sixty-donuts-chew.md deleted file mode 100644 index 004e37c2d637..000000000000 --- a/.changeset/sixty-donuts-chew.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Refactor and remove esbuild dependency diff --git a/.changeset/sweet-chairs-buy.md b/.changeset/sweet-chairs-buy.md deleted file mode 100644 index 43148b12cad2..000000000000 --- a/.changeset/sweet-chairs-buy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/mdx': patch ---- - -Support use of `` in MDX files rendered with `` component diff --git a/.changeset/yellow-lizards-shout.md b/.changeset/yellow-lizards-shout.md deleted file mode 100644 index 10974c86c143..000000000000 --- a/.changeset/yellow-lizards-shout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Added a warning in build when trying to hydrate an Astro component diff --git a/examples/basics/package.json b/examples/basics/package.json index a805f6bb0da6..fc572693d99a 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12" + "astro": "^1.6.13" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 9547a32bf202..1f155e39a27d 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", - "@astrojs/mdx": "^0.12.0", + "astro": "^1.6.13", + "@astrojs/mdx": "^0.12.1", "@astrojs/rss": "^1.0.3", "@astrojs/sitemap": "^1.0.0" } diff --git a/examples/component/package.json b/examples/component/package.json index 0c4078310351..24565ffa933a 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.6.12" + "astro": "^1.6.13" }, "peerDependencies": { - "astro": "^1.6.12" + "astro": "^1.6.13" } } diff --git a/examples/deno/package.json b/examples/deno/package.json index 597d5b2bd202..e2721411e523 100644 --- a/examples/deno/package.json +++ b/examples/deno/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12" + "astro": "^1.6.13" }, "devDependencies": { "@astrojs/deno": "^2.0.0" diff --git a/examples/docs/package.json b/examples/docs/package.json index a00e48237215..3d561a2fe262 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,7 +12,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "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 0127d629a4b7..003e78cd881d 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "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 65575bd13fdf..fbd6dd8b9859 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "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 420d85a87c18..3d961699de7b 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "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 dba31a2351b3..c2a8a4026ace 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "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 8e12a1e561c0..d6e33f0501d2 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "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 d3b54758406b..27e68e623b7e 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "solid-js": "^1.4.3", "@astrojs/solid-js": "^1.2.3" } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index c7f3134281a4..be4047d0c850 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.12" + "astro": "^1.6.13" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 8b6f9c277e76..271431e45a37 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "vue": "^3.2.37", "@astrojs/vue": "^1.2.1" } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index ee35f60ce6bc..8f240ea32c23 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -13,6 +13,6 @@ }, "dependencies": { "@astrojs/node": "^3.1.0", - "astro": "^1.6.12" + "astro": "^1.6.13" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 9d9850737500..185725888816 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.6.12" + "astro": "^1.6.13" }, "peerDependencies": { - "astro": "^1.6.12" + "astro": "^1.6.13" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 2d4148d2ad3d..3d477be8db03 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12" + "astro": "^1.6.13" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index de1cd673c920..2819f3629dd7 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.12" + "astro": "^1.6.13" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 33d0b26c0aef..a147ac01a062 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12" + "astro": "^1.6.13" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 39c730f3b072..98c8e8b68b7c 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.12", + "astro": "^1.6.13", "svelte": "^3.48.0", "@astrojs/svelte": "^1.0.2", "@astrojs/node": "^3.1.0", diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index e318f5c8d11b..bf2f4101642e 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.12", + "astro": "^1.6.13", "@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 8a461a8d67de..932ccc150f4f 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.12" + "astro": "^1.6.13" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index ad303312fb36..d19ac3d83e2c 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "preact": "^10.6.5", "@astrojs/preact": "^1.2.0", - "@astrojs/mdx": "^0.12.0" + "@astrojs/mdx": "^0.12.1" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 61a6e0330790..07b45733f53b 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "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 0ab574661a22..c6cc9d6586e7 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -11,10 +11,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^0.12.0", + "@astrojs/mdx": "^0.12.1", "@astrojs/tailwind": "^2.1.3", "@types/canvas-confetti": "^1.4.3", - "astro": "^1.6.12", + "astro": "^1.6.13", "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 e0c92564ccb6..822312eb0e6e 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.12", + "astro": "^1.6.13", "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 6a222a28bfd4..436e673f8491 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^1.6.12", + "astro": "^1.6.13", "vitest": "^0.20.3" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 70a37bed5562..3bc3591920ef 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,17 @@ # astro +## 1.6.13 + +### Patch Changes + +- [#5506](https://github.com/withastro/astro/pull/5506) [`f536a34e5`](https://github.com/withastro/astro/commit/f536a34e53121104f87f2ad117a539daf2b7d5ee) Thanks [@bluwy](https://github.com/bluwy)! - Dedupe Astro package when resolving + +- [#5506](https://github.com/withastro/astro/pull/5506) [`f536a34e5`](https://github.com/withastro/astro/commit/f536a34e53121104f87f2ad117a539daf2b7d5ee) Thanks [@bluwy](https://github.com/bluwy)! - Refactor Astro compile flow + +- [#5533](https://github.com/withastro/astro/pull/5533) [`58188e053`](https://github.com/withastro/astro/commit/58188e053672562dfe4b7703c3e25bb47d71567d) Thanks [@bluwy](https://github.com/bluwy)! - Refactor and remove esbuild dependency + +- [#5501](https://github.com/withastro/astro/pull/5501) [`3c44033e4`](https://github.com/withastro/astro/commit/3c44033e4ebafd28472d5c6a43e55c0363c6b555) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Added a warning in build when trying to hydrate an Astro component + ## 1.6.12 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 1a0c718d2996..5fbc5bd34c3e 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.6.12", + "version": "1.6.13", "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 47be9e5b0716..f7062926b7db 100644 --- a/packages/integrations/cloudflare/package.json +++ b/packages/integrations/cloudflare/package.json @@ -38,7 +38,7 @@ "tiny-glob": "^0.2.9" }, "peerDependencies": { - "astro": "^1.6.12" + "astro": "^1.6.13" }, "devDependencies": { "astro": "workspace:*", diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json index 580438573ea1..afe7cf28edc8 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.12" + "astro": "^1.6.13" }, "devDependencies": { "astro": "workspace:*", diff --git a/packages/integrations/image/CHANGELOG.md b/packages/integrations/image/CHANGELOG.md index 0a7a2375b5eb..e5a66ff44405 100644 --- a/packages/integrations/image/CHANGELOG.md +++ b/packages/integrations/image/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/image +## 0.12.1 + +### Patch Changes + +- [#5521](https://github.com/withastro/astro/pull/5521) [`65d27666e`](https://github.com/withastro/astro/commit/65d27666e1a0e668d02f7106e89f6d7b45f5de02) Thanks [@truesri](https://github.com/truesri)! - Allows passing alt to getPicture + ## 0.12.0 ### Minor Changes diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json index 98d00618857b..ceb01bb4a45d 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.12.0", + "version": "0.12.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index 64f117047e6b..e9c506ea18b3 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/mdx +## 0.12.1 + +### Patch Changes + +- [#5522](https://github.com/withastro/astro/pull/5522) [`efc4363e0`](https://github.com/withastro/astro/commit/efc4363e0baf7f92900e20af339811bb3df42b0e) Thanks [@delucis](https://github.com/delucis)! - Support use of `` in MDX files rendered with `` component + ## 0.12.0 ### Minor Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index bd9fefa1dc7e..12049d42a3c9 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.12.0", + "version": "0.12.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json index 70b58b5d4ce2..d325095b1196 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.12" + "astro": "^1.6.13" }, "devDependencies": { "@types/node-fetch": "^2.6.2", diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md index 8786e110ff61..d17d66f8aff8 100644 --- a/packages/integrations/vercel/CHANGELOG.md +++ b/packages/integrations/vercel/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/vercel +## 2.3.5 + +### Patch Changes + +- [#5514](https://github.com/withastro/astro/pull/5514) [`a1885ea2f`](https://github.com/withastro/astro/commit/a1885ea2f59f26cbdae10c298e1e0d1063d9dca1) Thanks [@JuanM04](https://github.com/JuanM04)! - Updated request-transform methods + ## 2.3.4 ### Patch Changes diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json index 9f15ccf639fc..7a2fccf2e17e 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.3.4", + "version": "2.3.5", "type": "module", "author": "withastro", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 704bee4e9df9..0c4215e87ee3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -61,16 +61,16 @@ importers: examples/basics: specifiers: - astro: ^1.6.12 + astro: ^1.6.13 dependencies: astro: link:../../packages/astro examples/blog: specifiers: - '@astrojs/mdx': ^0.12.0 + '@astrojs/mdx': ^0.12.1 '@astrojs/rss': ^1.0.3 '@astrojs/sitemap': ^1.0.0 - astro: ^1.6.12 + astro: ^1.6.13 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx '@astrojs/rss': link:../../packages/astro-rss @@ -79,14 +79,14 @@ importers: examples/component: specifiers: - astro: ^1.6.12 + astro: ^1.6.13 devDependencies: astro: link:../../packages/astro examples/deno: specifiers: '@astrojs/deno': ^2.0.0 - astro: ^1.6.12 + astro: ^1.6.13 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.12 + astro: ^1.6.13 html-escaper: ^3.0.3 preact: ^10.7.3 react: ^18.1.0 @@ -128,7 +128,7 @@ importers: '@astrojs/alpinejs': ^0.1.2 '@types/alpinejs': ^3.7.0 alpinejs: ^3.10.2 - astro: ^1.6.12 + astro: ^1.6.13 dependencies: '@astrojs/alpinejs': link:../../packages/integrations/alpinejs '@types/alpinejs': 3.7.1 @@ -139,7 +139,7 @@ importers: specifiers: '@astrojs/lit': ^1.0.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.6.12 + astro: ^1.6.13 lit: ^2.2.5 dependencies: '@astrojs/lit': link:../../packages/integrations/lit @@ -154,7 +154,7 @@ importers: '@astrojs/solid-js': ^1.2.3 '@astrojs/svelte': ^1.0.2 '@astrojs/vue': ^1.2.1 - astro: ^1.6.12 + astro: ^1.6.13 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -179,7 +179,7 @@ importers: specifiers: '@astrojs/preact': ^1.2.0 '@preact/signals': ^1.1.0 - astro: ^1.6.12 + astro: ^1.6.13 preact: ^10.7.3 dependencies: '@astrojs/preact': link:../../packages/integrations/preact @@ -192,7 +192,7 @@ importers: '@astrojs/react': ^1.2.2 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.6.12 + astro: ^1.6.13 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -206,7 +206,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^1.2.3 - astro: ^1.6.12 + astro: ^1.6.13 solid-js: ^1.4.3 dependencies: '@astrojs/solid-js': link:../../packages/integrations/solid @@ -216,7 +216,7 @@ importers: examples/framework-svelte: specifiers: '@astrojs/svelte': ^1.0.2 - astro: ^1.6.12 + astro: ^1.6.13 svelte: ^3.48.0 dependencies: '@astrojs/svelte': link:../../packages/integrations/svelte @@ -226,7 +226,7 @@ importers: examples/framework-vue: specifiers: '@astrojs/vue': ^1.2.1 - astro: ^1.6.12 + astro: ^1.6.13 vue: ^3.2.37 dependencies: '@astrojs/vue': link:../../packages/integrations/vue @@ -236,32 +236,32 @@ importers: examples/hackernews: specifiers: '@astrojs/node': ^3.1.0 - astro: ^1.6.12 + astro: ^1.6.13 dependencies: '@astrojs/node': link:../../packages/integrations/node astro: link:../../packages/astro examples/integration: specifiers: - astro: ^1.6.12 + astro: ^1.6.13 devDependencies: astro: link:../../packages/astro examples/minimal: specifiers: - astro: ^1.6.12 + astro: ^1.6.13 dependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.6.12 + astro: ^1.6.13 dependencies: astro: link:../../packages/astro examples/portfolio: specifiers: - astro: ^1.6.12 + astro: ^1.6.13 dependencies: astro: link:../../packages/astro @@ -269,7 +269,7 @@ importers: specifiers: '@astrojs/node': ^3.1.0 '@astrojs/svelte': ^1.0.2 - astro: ^1.6.12 + astro: ^1.6.13 concurrently: ^7.2.1 svelte: ^3.48.0 unocss: ^0.15.6 @@ -286,7 +286,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^1.1.3 - astro: ^1.6.12 + astro: ^1.6.13 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -303,15 +303,15 @@ importers: examples/with-markdown-shiki: specifiers: - astro: ^1.6.12 + astro: ^1.6.13 dependencies: astro: link:../../packages/astro examples/with-mdx: specifiers: - '@astrojs/mdx': ^0.12.0 + '@astrojs/mdx': ^0.12.1 '@astrojs/preact': ^1.2.0 - astro: ^1.6.12 + astro: ^1.6.13 preact: ^10.6.5 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx @@ -323,7 +323,7 @@ importers: specifiers: '@astrojs/preact': ^1.2.0 '@nanostores/preact': ^0.1.3 - astro: ^1.6.12 + astro: ^1.6.13 nanostores: ^0.5.12 preact: ^10.7.3 dependencies: @@ -335,10 +335,10 @@ importers: examples/with-tailwindcss: specifiers: - '@astrojs/mdx': ^0.12.0 + '@astrojs/mdx': ^0.12.1 '@astrojs/tailwind': ^2.1.3 '@types/canvas-confetti': ^1.4.3 - astro: ^1.6.12 + astro: ^1.6.13 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -355,7 +355,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.6.12 + astro: ^1.6.13 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 dependencies: @@ -365,7 +365,7 @@ importers: examples/with-vitest: specifiers: - astro: ^1.6.12 + astro: ^1.6.13 vitest: ^0.20.3 dependencies: astro: link:../../packages/astro