From 4efbfdd78d239f708a76eac38c2e971fc956a54e Mon Sep 17 00:00:00 2001 From: "Fred K. Bot" <108291165+fredkbot@users.noreply.github.com> Date: Wed, 26 Oct 2022 05:43:23 -0700 Subject: [PATCH] [ci] release (#5135) Co-authored-by: github-actions[bot] --- .changeset/chilly-experts-add.md | 9 ---- .changeset/clever-keys-hammer.md | 5 -- .changeset/dry-dragons-greet.md | 5 -- .changeset/gentle-insects-run.md | 5 -- .changeset/nine-roses-explain.md | 5 -- .changeset/smart-chicken-develop.md | 5 -- .changeset/wicked-laws-heal.md | 11 ---- 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/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 | 10 ++++ packages/astro/package.json | 2 +- packages/integrations/image/CHANGELOG.md | 18 +++++++ packages/integrations/image/package.json | 2 +- packages/integrations/mdx/CHANGELOG.md | 6 +++ packages/integrations/mdx/package.json | 2 +- packages/integrations/vercel/CHANGELOG.md | 6 +++ packages/integrations/vercel/package.json | 2 +- pnpm-lock.yaml | 56 ++++++++++----------- 41 files changed, 102 insertions(+), 107 deletions(-) delete mode 100644 .changeset/chilly-experts-add.md delete mode 100644 .changeset/clever-keys-hammer.md delete mode 100644 .changeset/dry-dragons-greet.md delete mode 100644 .changeset/gentle-insects-run.md delete mode 100644 .changeset/nine-roses-explain.md delete mode 100644 .changeset/smart-chicken-develop.md delete mode 100644 .changeset/wicked-laws-heal.md diff --git a/.changeset/chilly-experts-add.md b/.changeset/chilly-experts-add.md deleted file mode 100644 index 46c228c7d..000000000 --- a/.changeset/chilly-experts-add.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@astrojs/image': minor ---- - -Removes the `content-visibility: auto` styling added by the `` and `` components. - -**Why:** The [content-visibility](https://developer.mozilla.org/en-US/docs/Web/CSS/content-visibility) style is rarely needed for an `` and can actually break certain layouts. - -**Migration:** Do images in your layout actually depend on `content-visibility`? No problem! You can add these styles where needed in your own component styles. diff --git a/.changeset/clever-keys-hammer.md b/.changeset/clever-keys-hammer.md deleted file mode 100644 index 5e91f47e4..000000000 --- a/.changeset/clever-keys-hammer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/mdx': patch ---- - -Support recmaPlugins config option diff --git a/.changeset/dry-dragons-greet.md b/.changeset/dry-dragons-greet.md deleted file mode 100644 index 024dd2cdd..000000000 --- a/.changeset/dry-dragons-greet.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix `.css?raw` usage diff --git a/.changeset/gentle-insects-run.md b/.changeset/gentle-insects-run.md deleted file mode 100644 index a2531c521..000000000 --- a/.changeset/gentle-insects-run.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Update `@astrojs/compiler` and use the new `resolvePath` option. This allows removing much of the runtime code, which should improve rendering performance for Astro and MDX pages. diff --git a/.changeset/nine-roses-explain.md b/.changeset/nine-roses-explain.md deleted file mode 100644 index 0b4c8e019..000000000 --- a/.changeset/nine-roses-explain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/vercel': patch ---- - -Edge adapter includes all the generated files (all files inside `dist/`) instead of only `entry.mjs` diff --git a/.changeset/smart-chicken-develop.md b/.changeset/smart-chicken-develop.md deleted file mode 100644 index da87ad052..000000000 --- a/.changeset/smart-chicken-develop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -`astro add` no longer automatically installs optional peer dependencies diff --git a/.changeset/wicked-laws-heal.md b/.changeset/wicked-laws-heal.md deleted file mode 100644 index bcaac6132..000000000 --- a/.changeset/wicked-laws-heal.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@astrojs/image': minor ---- - -HTML attributes included on the `` component are now passed down to the underlying `` element. - -**Why?** - -- when styling a `` the `class` and `style` attributes belong on the `` itself -- `` elements [should not](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture#attributes) actually provide any `aria-` attributes -- `width` and `height` can be added to the `` to help prevent layout shift diff --git a/examples/basics/package.json b/examples/basics/package.json index b70ca6110..39a1699fc 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2" + "astro": "^1.5.3" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index d50495adb..d3af8c79f 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", - "@astrojs/mdx": "^0.11.4", + "astro": "^1.5.3", + "@astrojs/mdx": "^0.11.5", "@astrojs/rss": "^1.0.2", "@astrojs/sitemap": "^1.0.0" } diff --git a/examples/component/package.json b/examples/component/package.json index b963b7cc2..ab60f220b 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.5.2" + "astro": "^1.5.3" }, "peerDependencies": { - "astro": "^1.5.2" + "astro": "^1.5.3" } } diff --git a/examples/deno/package.json b/examples/deno/package.json index 86f8afaed..35c8d9bfd 100644 --- a/examples/deno/package.json +++ b/examples/deno/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2" + "astro": "^1.5.3" }, "devDependencies": { "@astrojs/deno": "^1.2.0" diff --git a/examples/docs/package.json b/examples/docs/package.json index aec6dd2fe..360201f1a 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,7 +12,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "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 cbd2c7d3f..b5a24b13b 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "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 e45f09e4f..940c38211 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "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 6344c2d42..fc2195cb7 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "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 fd1d8c4d3..c61e35989 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "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 f4809b7a6..a990cbdd7 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "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 bfc67cc7d..41b0e4c76 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "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 0c3374ad4..3ce7663c8 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.2" + "astro": "^1.5.3" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 6eb8da1b0..edf546ae7 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "vue": "^3.2.37", "@astrojs/vue": "^1.2.1" } diff --git a/examples/integration/package.json b/examples/integration/package.json index adae0a346..abcfd17b2 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.5.2" + "astro": "^1.5.3" }, "peerDependencies": { - "astro": "^1.5.2" + "astro": "^1.5.3" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 1bfe21554..7bf90c802 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2" + "astro": "^1.5.3" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 5c1db8c77..6818c334c 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.2" + "astro": "^1.5.3" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 385a99bd1..4dd2fb3dc 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2" + "astro": "^1.5.3" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 586c2b9d3..0b3f7c7bb 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,7 +12,7 @@ "server": "node dist/server/entry.mjs" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "svelte": "^3.48.0", "@astrojs/svelte": "^1.0.2", "@astrojs/node": "^2.0.1", diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 6b90e09e1..371e19987 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.2", + "astro": "^1.5.3", "@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 41a336834..34eed9fad 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.2" + "astro": "^1.5.3" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index eb712d7c2..34d5424ce 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "preact": "^10.6.5", "@astrojs/preact": "^1.2.0", - "@astrojs/mdx": "^0.11.4" + "@astrojs/mdx": "^0.11.5" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 9fbe5c4ce..e73ea6862 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "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 5bc7162cd..b33bd0a91 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -11,10 +11,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^0.11.4", + "@astrojs/mdx": "^0.11.5", "@astrojs/tailwind": "^2.1.1", "@types/canvas-confetti": "^1.4.3", - "astro": "^1.5.2", + "astro": "^1.5.3", "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 d41074b0d..115e9a9d3 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.2", + "astro": "^1.5.3", "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 8cb091d7a..782876289 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^1.5.2", + "astro": "^1.5.3", "vitest": "^0.20.3" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 33a077cef..95a563de0 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,15 @@ # astro +## 1.5.3 + +### Patch Changes + +- [#5133](https://github.com/withastro/astro/pull/5133) [`1c477dd8d`](https://github.com/withastro/astro/commit/1c477dd8d9026fcbd533b4e6d11908e167ce7247) Thanks [@bluwy](https://github.com/bluwy)! - Fix `.css?raw` usage + +- [#5133](https://github.com/withastro/astro/pull/5133) [`1c477dd8d`](https://github.com/withastro/astro/commit/1c477dd8d9026fcbd533b4e6d11908e167ce7247) Thanks [@bluwy](https://github.com/bluwy)! - Update `@astrojs/compiler` and use the new `resolvePath` option. This allows removing much of the runtime code, which should improve rendering performance for Astro and MDX pages. + +- [#5192](https://github.com/withastro/astro/pull/5192) [`8728ee0b9`](https://github.com/withastro/astro/commit/8728ee0b94ef28524900367a06b9fe806babd574) Thanks [@tony-sull](https://github.com/tony-sull)! - `astro add` no longer automatically installs optional peer dependencies + ## 1.5.2 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index fdfe081e7..527a87e1a 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.5.2", + "version": "1.5.3", "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 8bc7b470e..3c6632685 100644 --- a/packages/integrations/image/CHANGELOG.md +++ b/packages/integrations/image/CHANGELOG.md @@ -1,5 +1,23 @@ # @astrojs/image +## 0.11.0 + +### Minor Changes + +- [#5180](https://github.com/withastro/astro/pull/5180) [`b77200f42`](https://github.com/withastro/astro/commit/b77200f42399ea31b0045bc0e6bfe2c1c5ccc970) Thanks [@tony-sull](https://github.com/tony-sull)! - Removes the `content-visibility: auto` styling added by the `` and `` components. + + **Why:** The [content-visibility](https://developer.mozilla.org/en-US/docs/Web/CSS/content-visibility) style is rarely needed for an `` and can actually break certain layouts. + + **Migration:** Do images in your layout actually depend on `content-visibility`? No problem! You can add these styles where needed in your own component styles. + +- [#5038](https://github.com/withastro/astro/pull/5038) [`ed2dfdae5`](https://github.com/withastro/astro/commit/ed2dfdae5bea93746be883bc528c1fb6407af6eb) Thanks [@emmanuelchucks](https://github.com/emmanuelchucks)! - HTML attributes included on the `` component are now passed down to the underlying `` element. + + **Why?** + + - when styling a `` the `class` and `style` attributes belong on the `` itself + - `` elements [should not](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture#attributes) actually provide any `aria-` attributes + - `width` and `height` can be added to the `` to help prevent layout shift + ## 0.10.0 ### Minor Changes diff --git a/packages/integrations/image/package.json b/packages/integrations/image/package.json index 293a985e2..d43da956b 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.10.0", + "version": "0.11.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index d02c39ea8..62ecd2391 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/mdx +## 0.11.5 + +### Patch Changes + +- [#5146](https://github.com/withastro/astro/pull/5146) [`308e565ad`](https://github.com/withastro/astro/commit/308e565ad39957e3353d72ca5d3bbce1a1b45008) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Support recmaPlugins config option + ## 0.11.4 ### Patch Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index 6ef66c27e..3275b27a3 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.4", + "version": "0.11.5", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md index 0d89cb7a0..426a470e4 100644 --- a/packages/integrations/vercel/CHANGELOG.md +++ b/packages/integrations/vercel/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/vercel +## 2.3.2 + +### Patch Changes + +- [#5175](https://github.com/withastro/astro/pull/5175) [`abf41da77`](https://github.com/withastro/astro/commit/abf41da774516395a49aca30693dccdc4f8d7114) Thanks [@JuanM04](https://github.com/JuanM04)! - Edge adapter includes all the generated files (all files inside `dist/`) instead of only `entry.mjs` + ## 2.3.1 ### Patch Changes diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json index 4dc43181b..5c2240094 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.1", + "version": "2.3.2", "type": "module", "author": "withastro", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e75bc2e81..c3305b60a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -61,16 +61,16 @@ importers: examples/basics: specifiers: - astro: ^1.5.2 + astro: ^1.5.3 dependencies: astro: link:../../packages/astro examples/blog: specifiers: - '@astrojs/mdx': ^0.11.4 + '@astrojs/mdx': ^0.11.5 '@astrojs/rss': ^1.0.2 '@astrojs/sitemap': ^1.0.0 - astro: ^1.5.2 + astro: ^1.5.3 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx '@astrojs/rss': link:../../packages/astro-rss @@ -79,14 +79,14 @@ importers: examples/component: specifiers: - astro: ^1.5.2 + astro: ^1.5.3 devDependencies: astro: link:../../packages/astro examples/deno: specifiers: '@astrojs/deno': ^1.2.0 - astro: ^1.5.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 vue: ^3.2.37 dependencies: '@astrojs/vue': link:../../packages/integrations/vue @@ -232,25 +232,25 @@ importers: examples/integration: specifiers: - astro: ^1.5.2 + astro: ^1.5.3 devDependencies: astro: link:../../packages/astro examples/minimal: specifiers: - astro: ^1.5.2 + astro: ^1.5.3 dependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.5.2 + astro: ^1.5.3 dependencies: astro: link:../../packages/astro examples/portfolio: specifiers: - astro: ^1.5.2 + astro: ^1.5.3 dependencies: astro: link:../../packages/astro @@ -258,7 +258,7 @@ importers: specifiers: '@astrojs/node': ^2.0.1 '@astrojs/svelte': ^1.0.2 - astro: ^1.5.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -292,15 +292,15 @@ importers: examples/with-markdown-shiki: specifiers: - astro: ^1.5.2 + astro: ^1.5.3 dependencies: astro: link:../../packages/astro examples/with-mdx: specifiers: - '@astrojs/mdx': ^0.11.4 + '@astrojs/mdx': ^0.11.5 '@astrojs/preact': ^1.2.0 - astro: ^1.5.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 nanostores: ^0.5.12 preact: ^10.7.3 dependencies: @@ -324,10 +324,10 @@ importers: examples/with-tailwindcss: specifiers: - '@astrojs/mdx': ^0.11.4 + '@astrojs/mdx': ^0.11.5 '@astrojs/tailwind': ^2.1.1 '@types/canvas-confetti': ^1.4.3 - astro: ^1.5.2 + astro: ^1.5.3 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.2 + astro: ^1.5.3 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 dependencies: @@ -354,7 +354,7 @@ importers: examples/with-vitest: specifiers: - astro: ^1.5.2 + astro: ^1.5.3 vitest: ^0.20.3 dependencies: astro: link:../../packages/astro