From 2938589709b2c022ff603dc6c82684a4bf1fe11f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 12 Oct 2022 15:38:55 +0000 Subject: [PATCH] [ci] release --- .changeset/early-pillows-deliver.md | 5 -- .changeset/new-hotels-unite.md | 6 -- .changeset/serious-icons-dream.md | 5 -- .changeset/sixty-ladybugs-return.md | 5 -- .changeset/ten-candles-relate.md | 7 --- .changeset/ten-phones-drop.md | 5 -- .changeset/thin-parents-breathe.md | 5 -- .changeset/witty-sheep-wave.md | 7 --- examples/basics/package.json | 2 +- examples/blog/package.json | 2 +- 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 | 6 +- examples/framework-preact/package.json | 2 +- examples/framework-react/package.json | 2 +- examples/framework-solid/package.json | 4 +- examples/framework-svelte/package.json | 4 +- 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 | 4 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown-shiki/package.json | 2 +- examples/with-mdx/package.json | 2 +- 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 | 19 +++++++ packages/astro/package.json | 2 +- packages/integrations/solid/CHANGELOG.md | 6 ++ packages/integrations/solid/package.json | 2 +- packages/integrations/svelte/CHANGELOG.md | 6 ++ packages/integrations/svelte/package.json | 2 +- packages/integrations/tailwind/CHANGELOG.md | 8 +++ packages/integrations/tailwind/package.json | 2 +- pnpm-lock.yaml | 62 ++++++++++----------- 42 files changed, 107 insertions(+), 113 deletions(-) delete mode 100644 .changeset/early-pillows-deliver.md delete mode 100644 .changeset/new-hotels-unite.md delete mode 100644 .changeset/serious-icons-dream.md delete mode 100644 .changeset/sixty-ladybugs-return.md delete mode 100644 .changeset/ten-candles-relate.md delete mode 100644 .changeset/ten-phones-drop.md delete mode 100644 .changeset/thin-parents-breathe.md delete mode 100644 .changeset/witty-sheep-wave.md diff --git a/.changeset/early-pillows-deliver.md b/.changeset/early-pillows-deliver.md deleted file mode 100644 index 745ff35f07b0e..0000000000000 --- a/.changeset/early-pillows-deliver.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/svelte': patch ---- - -Allow class to be passed into Svelte islands diff --git a/.changeset/new-hotels-unite.md b/.changeset/new-hotels-unite.md deleted file mode 100644 index 8febc2d47edaa..0000000000000 --- a/.changeset/new-hotels-unite.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'astro': minor ---- - -- Added `isRestart` and `addWatchFile` to integration step `isRestart`. -- Restart dev server automatically when tsconfig changes. diff --git a/.changeset/serious-icons-dream.md b/.changeset/serious-icons-dream.md deleted file mode 100644 index 968f8a4b451eb..0000000000000 --- a/.changeset/serious-icons-dream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Skip JSX tagging for export statements with source diff --git a/.changeset/sixty-ladybugs-return.md b/.changeset/sixty-ladybugs-return.md deleted file mode 100644 index 0f8282dc59da2..0000000000000 --- a/.changeset/sixty-ladybugs-return.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Upgrade Astro compiler to 0.27.1 diff --git a/.changeset/ten-candles-relate.md b/.changeset/ten-candles-relate.md deleted file mode 100644 index 402e46a1cdee0..0000000000000 --- a/.changeset/ten-candles-relate.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@astrojs/tailwind': minor ---- - -## HMR on config file changes - -New in this release is the ability for config changes to automatically reflect via HMR. Now when you edit your `tsconfig.json` or `tailwind.config.js` configs, the changes will reload automatically without the need to restart your dev server. diff --git a/.changeset/ten-phones-drop.md b/.changeset/ten-phones-drop.md deleted file mode 100644 index 4233ec43300a3..0000000000000 --- a/.changeset/ten-phones-drop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/solid-js': minor ---- - -Auto ssr.noExternal solidjs dependencies diff --git a/.changeset/thin-parents-breathe.md b/.changeset/thin-parents-breathe.md deleted file mode 100644 index 2867ab3b62f7c..0000000000000 --- a/.changeset/thin-parents-breathe.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Support strict dependency install for libraries with JSX diff --git a/.changeset/witty-sheep-wave.md b/.changeset/witty-sheep-wave.md deleted file mode 100644 index cac7841e46596..0000000000000 --- a/.changeset/witty-sheep-wave.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'astro': patch ---- - -Update Astro.cookies.set types to allow booleans and numbers - -Note that booleans and numbers were already allowed, they just were not allowed by the type definitions. diff --git a/examples/basics/package.json b/examples/basics/package.json index 0317758cacfe0..0a5b48aaaa686 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7" + "astro": "^1.5.0" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 722b1a2fe74ad..6baaa6746c367 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.0", "@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 1070651476111..4fd6e320d0834 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.4.7" + "astro": "^1.5.0" }, "peerDependencies": { - "astro": "^1.4.7" + "astro": "^1.5.0" } } diff --git a/examples/deno/package.json b/examples/deno/package.json index bd3af4dba2a9a..8314c9a2f2c47 100644 --- a/examples/deno/package.json +++ b/examples/deno/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7" + "astro": "^1.5.0" }, "devDependencies": { "@astrojs/deno": "^1.1.0" diff --git a/examples/docs/package.json b/examples/docs/package.json index d84a96527e27f..34ea9c03d4388 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,7 +12,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.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 b22c9c637010f..581f3b6637feb 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.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 b0742ff94ee23..160dcd4d2cda6 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.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 9adb7a9e154ab..4b25ab7bd9e14 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.0", "preact": "^10.7.3", "react": "^18.1.0", "react-dom": "^18.1.0", @@ -20,8 +20,8 @@ "vue": "^3.2.37", "@astrojs/preact": "^1.2.0", "@astrojs/react": "^1.2.0", - "@astrojs/solid-js": "^1.1.1", - "@astrojs/svelte": "^1.0.1", + "@astrojs/solid-js": "^1.2.0", + "@astrojs/svelte": "^1.0.2", "@astrojs/vue": "^1.1.0" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 6460bff844f67..6a94916a3bd09 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.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 44cb415ba088f..88bdd9917607b 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.0", "react": "^18.1.0", "react-dom": "^18.1.0", "@astrojs/react": "^1.2.0", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 9ba2cf652e031..2c19e901596bb 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.0", "solid-js": "^1.4.3", - "@astrojs/solid-js": "^1.1.1" + "@astrojs/solid-js": "^1.2.0" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 020a1d13541b3..1a5fc2cc55cd7 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "svelte": "^3.48.0", - "@astrojs/svelte": "^1.0.1", - "astro": "^1.4.7" + "@astrojs/svelte": "^1.0.2", + "astro": "^1.5.0" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index a27c9c40792b7..779ddf150a849 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.0", "vue": "^3.2.37", "@astrojs/vue": "^1.1.0" } diff --git a/examples/integration/package.json b/examples/integration/package.json index 8beb4f8660e75..3dfd744ca77dc 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.4.7" + "astro": "^1.5.0" }, "peerDependencies": { - "astro": "^1.4.7" + "astro": "^1.5.0" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 4cc8bb39b5147..d184053a454e4 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7" + "astro": "^1.5.0" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 3dd1d08898265..703c90365fe63 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.7" + "astro": "^1.5.0" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index dd6ac8137e0ed..7cd4cafe65639 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7" + "astro": "^1.5.0" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 5d05fca697ac9..6649c799532f4 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -13,9 +13,9 @@ }, "devDependencies": {}, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.0", "svelte": "^3.48.0", - "@astrojs/svelte": "^1.0.1", + "@astrojs/svelte": "^1.0.2", "@astrojs/node": "^1.1.0", "concurrently": "^7.2.1", "lightcookie": "^1.0.25", diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index abb6fe575a67f..12acd79c92d73 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.7", + "astro": "^1.5.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 e899f3874a0c6..2413062dee02f 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.7" + "astro": "^1.5.0" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index be6fba5237c94..1a7157ac114c6 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.0", "preact": "^10.6.5", "@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 a25ad90bb0c4d..c17a816c65e5a 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.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 4ffa967517531..26095362ef8ba 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/tailwind": "^2.0.2", + "@astrojs/tailwind": "^2.1.0", "@types/canvas-confetti": "^1.4.3", - "astro": "^1.4.7", + "astro": "^1.5.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 5ed93e41d6802..0b52021486978 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.7", + "astro": "^1.5.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 778e86b415166..f78c36630d934 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^1.4.7", + "astro": "^1.5.0", "vitest": "^0.20.3" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 9bf98dcf3dfc1..143f364bf8f8a 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,24 @@ # astro +## 1.5.0 + +### Minor Changes + +- [#4947](https://github.com/withastro/astro/pull/4947) [`a5e3ecc80`](https://github.com/withastro/astro/commit/a5e3ecc8039c1e115ce5597362e18cd35d04e40b) Thanks [@JuanM04](https://github.com/JuanM04)! - - Added `isRestart` and `addWatchFile` to integration step `isRestart`. + - Restart dev server automatically when tsconfig changes. + +### Patch Changes + +- [#5057](https://github.com/withastro/astro/pull/5057) [`baf88ee9e`](https://github.com/withastro/astro/commit/baf88ee9e5e692a94981d7a696fbdcb4cd8ab2a6) Thanks [@bluwy](https://github.com/bluwy)! - Skip JSX tagging for export statements with source + +- [#5044](https://github.com/withastro/astro/pull/5044) [`44ea0c6d9`](https://github.com/withastro/astro/commit/44ea0c6d941a26a3c38fc6dc045a8a25215d154a) Thanks [@JuanM04](https://github.com/JuanM04)! - Upgrade Astro compiler to 0.27.1 + +- [#5059](https://github.com/withastro/astro/pull/5059) [`f7fcdfe62`](https://github.com/withastro/astro/commit/f7fcdfe6210b3cf08cad92c49b64adf169b9e744) Thanks [@bluwy](https://github.com/bluwy)! - Support strict dependency install for libraries with JSX + +- [#5047](https://github.com/withastro/astro/pull/5047) [`1e2799243`](https://github.com/withastro/astro/commit/1e27992437aa0371b8550acb3e3f79e62721a506) Thanks [@matthewp](https://github.com/matthewp)! - Update Astro.cookies.set types to allow booleans and numbers + + Note that booleans and numbers were already allowed, they just were not allowed by the type definitions. + ## 1.4.7 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 252a169f6ef36..47c8f8d71c6c4 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.4.7", + "version": "1.5.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/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md index 123c84b2939c9..575298726dbfe 100644 --- a/packages/integrations/solid/CHANGELOG.md +++ b/packages/integrations/solid/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/solid-js +## 1.2.0 + +### Minor Changes + +- [#5059](https://github.com/withastro/astro/pull/5059) [`f7fcdfe62`](https://github.com/withastro/astro/commit/f7fcdfe6210b3cf08cad92c49b64adf169b9e744) Thanks [@bluwy](https://github.com/bluwy)! - Auto ssr.noExternal solidjs dependencies + ## 1.1.1 ### Patch Changes diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json index edb58cbae1f0e..b9bff301ecc91 100644 --- a/packages/integrations/solid/package.json +++ b/packages/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/solid-js", - "version": "1.1.1", + "version": "1.2.0", "description": "Use Solid components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md index 60f1056d44526..216816067c115 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/svelte +## 1.0.2 + +### Patch Changes + +- [#5045](https://github.com/withastro/astro/pull/5045) [`0f2a88ba5`](https://github.com/withastro/astro/commit/0f2a88ba5c19318854be12cc81609f2dbc5012f7) Thanks [@matthewp](https://github.com/matthewp)! - Allow class to be passed into Svelte islands + ## 1.0.1 ### Patch Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index bed9faa2d3b3a..a4ad25e54b8d8 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "1.0.1", + "version": "1.0.2", "description": "Use Svelte components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/tailwind/CHANGELOG.md b/packages/integrations/tailwind/CHANGELOG.md index e43b6365ae9aa..35c944506f59f 100644 --- a/packages/integrations/tailwind/CHANGELOG.md +++ b/packages/integrations/tailwind/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/tailwind +## 2.1.0 + +### Minor Changes + +- [#4947](https://github.com/withastro/astro/pull/4947) [`a5e3ecc80`](https://github.com/withastro/astro/commit/a5e3ecc8039c1e115ce5597362e18cd35d04e40b) Thanks [@JuanM04](https://github.com/JuanM04)! - ## HMR on config file changes + + New in this release is the ability for config changes to automatically reflect via HMR. Now when you edit your `tsconfig.json` or `tailwind.config.js` configs, the changes will reload automatically without the need to restart your dev server. + ## 2.0.2 ### Patch Changes diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json index 46833acd37474..22ec6482c895b 100644 --- a/packages/integrations/tailwind/package.json +++ b/packages/integrations/tailwind/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/tailwind", "description": "Tailwind + Astro Integrations", - "version": "2.0.2", + "version": "2.1.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 67501c8385be4..69a3a033bdff9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -58,7 +58,7 @@ importers: examples/basics: specifiers: - astro: ^1.4.7 + astro: ^1.5.0 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.7 + astro: ^1.5.0 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx '@astrojs/rss': link:../../packages/astro-rss @@ -76,14 +76,14 @@ importers: examples/component: specifiers: - astro: ^1.4.7 + astro: ^1.5.0 devDependencies: astro: link:../../packages/astro examples/deno: specifiers: '@astrojs/deno': ^1.1.0 - astro: ^1.4.7 + astro: ^1.5.0 dependencies: astro: link:../../packages/astro devDependencies: @@ -99,7 +99,7 @@ importers: '@types/node': ^18.0.0 '@types/react': ^17.0.45 '@types/react-dom': ^18.0.0 - astro: ^1.4.7 + astro: ^1.5.0 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.7 + astro: ^1.5.0 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.7 + astro: ^1.5.0 lit: ^2.2.5 dependencies: '@astrojs/lit': link:../../packages/integrations/lit @@ -145,10 +145,10 @@ importers: specifiers: '@astrojs/preact': ^1.2.0 '@astrojs/react': ^1.2.0 - '@astrojs/solid-js': ^1.1.1 - '@astrojs/svelte': ^1.0.1 + '@astrojs/solid-js': ^1.2.0 + '@astrojs/svelte': ^1.0.2 '@astrojs/vue': ^1.1.0 - astro: ^1.4.7 + astro: ^1.5.0 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -173,7 +173,7 @@ importers: specifiers: '@astrojs/preact': ^1.2.0 '@preact/signals': ^1.1.0 - astro: ^1.4.7 + astro: ^1.5.0 preact: ^10.7.3 dependencies: '@astrojs/preact': link:../../packages/integrations/preact @@ -186,7 +186,7 @@ importers: '@astrojs/react': ^1.2.0 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.4.7 + astro: ^1.5.0 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -199,8 +199,8 @@ importers: examples/framework-solid: specifiers: - '@astrojs/solid-js': ^1.1.1 - astro: ^1.4.7 + '@astrojs/solid-js': ^1.2.0 + astro: ^1.5.0 solid-js: ^1.4.3 dependencies: '@astrojs/solid-js': link:../../packages/integrations/solid @@ -209,8 +209,8 @@ importers: examples/framework-svelte: specifiers: - '@astrojs/svelte': ^1.0.1 - astro: ^1.4.7 + '@astrojs/svelte': ^1.0.2 + astro: ^1.5.0 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.7 + astro: ^1.5.0 vue: ^3.2.37 dependencies: '@astrojs/vue': link:../../packages/integrations/vue @@ -229,33 +229,33 @@ importers: examples/integration: specifiers: - astro: ^1.4.7 + astro: ^1.5.0 devDependencies: astro: link:../../packages/astro examples/minimal: specifiers: - astro: ^1.4.7 + astro: ^1.5.0 dependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.4.7 + astro: ^1.5.0 dependencies: astro: link:../../packages/astro examples/portfolio: specifiers: - astro: ^1.4.7 + astro: ^1.5.0 dependencies: astro: link:../../packages/astro examples/ssr: specifiers: '@astrojs/node': ^1.1.0 - '@astrojs/svelte': ^1.0.1 - astro: ^1.4.7 + '@astrojs/svelte': ^1.0.2 + astro: ^1.5.0 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.7 + astro: ^1.5.0 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -291,7 +291,7 @@ importers: examples/with-markdown-shiki: specifiers: - astro: ^1.4.7 + astro: ^1.5.0 dependencies: astro: link:../../packages/astro @@ -299,7 +299,7 @@ importers: specifiers: '@astrojs/mdx': ^0.11.4 '@astrojs/preact': ^1.2.0 - astro: ^1.4.7 + astro: ^1.5.0 preact: ^10.6.5 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx @@ -311,7 +311,7 @@ importers: specifiers: '@astrojs/preact': ^1.2.0 '@nanostores/preact': ^0.1.3 - astro: ^1.4.7 + astro: ^1.5.0 nanostores: ^0.5.12 preact: ^10.7.3 dependencies: @@ -323,9 +323,9 @@ importers: examples/with-tailwindcss: specifiers: - '@astrojs/tailwind': ^2.0.2 + '@astrojs/tailwind': ^2.1.0 '@types/canvas-confetti': ^1.4.3 - astro: ^1.4.7 + astro: ^1.5.0 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -341,7 +341,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.4.7 + astro: ^1.5.0 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 dependencies: @@ -351,7 +351,7 @@ importers: examples/with-vitest: specifiers: - astro: ^1.4.7 + astro: ^1.5.0 vitest: ^0.20.3 dependencies: astro: link:../../packages/astro