diff --git a/.changeset/five-zoos-look.md b/.changeset/five-zoos-look.md deleted file mode 100644 index f882dee9b..000000000 --- a/.changeset/five-zoos-look.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/cloudflare': patch ---- - -fix custom 404 pages not rendering diff --git a/.changeset/funny-pianos-mix.md b/.changeset/funny-pianos-mix.md deleted file mode 100644 index 249ba4dea..000000000 --- a/.changeset/funny-pianos-mix.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -'astro': patch ---- - -Support for streaming responses - -Astro supports streaming in its templates. Any time Astro encounters an async boundary it will stream out HTML that occurs before it. For example: - -```astro ---- -import LoadTodos from '../components/LoadTodos.astro'; ---- - - -App - - - - - -``` - -In this arbtrary example Astro will streaming out the `` section and everything else until it encounters `` and then stop. LoadTodos, which is also an Astro component will stream its contents as well; stopping and waiting at any other asynchronous components. - -As part of this Astro also now supports async iterables within its templates. This means you can do this: - -```astro - -``` - -Which will stream out `
  • `s one at a time, waiting a second between each. diff --git a/.changeset/stupid-steaks-hang.md b/.changeset/stupid-steaks-hang.md deleted file mode 100644 index 157e89480..000000000 --- a/.changeset/stupid-steaks-hang.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Make Astro.redirect use a 302 status code diff --git a/examples/basics/package.json b/examples/basics/package.json index d87a9c600..db7d28f1e 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" } } diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index 4e397b055..ffc3f1ddb 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.2.0", - "astro": "^1.0.0-beta.54", + "astro": "^1.0.0-beta.55", "sass": "^1.52.2" }, "dependencies": { diff --git a/examples/blog/package.json b/examples/blog/package.json index 8ff825236..001460990 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.2.0", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" }, "dependencies": { "preact": "^10.7.3" diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index 2bf062117..1e3408492 100644 --- a/examples/component/demo/package.json +++ b/examples/component/demo/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@example/my-component": "workspace:*", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" } } diff --git a/examples/component/package.json b/examples/component/package.json index 16c159349..1bd5af19f 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -8,6 +8,6 @@ "serve": "astro --root demo preview" }, "devDependencies": { - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index e27a421c6..a464038e5 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -20,6 +20,6 @@ "devDependencies": { "@astrojs/preact": "^0.2.0", "@astrojs/react": "^0.2.0", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" } } diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json index aef9b0365..0e0b6ca7c 100644 --- a/examples/env-vars/package.json +++ b/examples/env-vars/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index f07762b55..96a6bd6bc 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" }, "dependencies": { "alpinejs": "^3.10.2" diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 86077aa0e..c00c36c82 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/lit": "^0.3.0", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index f7af906e0..a95e648b4 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -15,7 +15,7 @@ "@astrojs/solid-js": "^0.2.0", "@astrojs/svelte": "^0.2.0", "@astrojs/vue": "^0.2.0", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 5085607df..36842a431 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.2.0", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" }, "dependencies": { "preact": "^10.7.3" diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index a9378a304..0d8533e4e 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -12,7 +12,7 @@ "@astrojs/react": "^0.2.0", "@types/react": "^18.0.10", "@types/react-dom": "^18.0.5", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" }, "dependencies": { "react": "^18.1.0", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 3f1bc3ec5..82ddc9d8c 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/solid-js": "^0.2.0", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" }, "dependencies": { "solid-js": "^1.4.3" diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 60d18f27a..c8ec4fb36 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/svelte": "^0.2.0", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" }, "dependencies": { "svelte": "^3.48.0" diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 72552314b..6e53ef3d9 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/vue": "^0.2.0", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" }, "dependencies": { "vue": "^3.2.36" diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json index c58571797..d0d8bf2d0 100644 --- a/examples/integrations-playground/package.json +++ b/examples/integrations-playground/package.json @@ -16,7 +16,7 @@ "@astrojs/solid-js": "0.2.0", "@astrojs/tailwind": "^0.2.1", "@astrojs/turbolinks": "^0.1.3", - "astro": "^1.0.0-beta.54", + "astro": "^1.0.0-beta.55", "solid-js": "^1.4.3" }, "dependencies": { diff --git a/examples/minimal/package.json b/examples/minimal/package.json index b887e42a7..b2aa9ee99 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 022ece7de..19194e4f8 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 2be4e7c52..5f5fa5040 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.2.0", - "astro": "^1.0.0-beta.54", + "astro": "^1.0.0-beta.55", "sass": "^1.52.2" }, "dependencies": { diff --git a/examples/ssr/package.json b/examples/ssr/package.json index abda3716e..9230d4812 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@astrojs/node": "^0.1.2", "@astrojs/svelte": "^0.2.0", - "astro": "^1.0.0-beta.54", + "astro": "^1.0.0-beta.55", "concurrently": "^7.2.1", "lightcookie": "^1.0.25", "unocss": "^0.15.6", diff --git a/examples/starter/package.json b/examples/starter/package.json index 798e207a5..a38003cab 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index d19ed5e0e..2fc51a223 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/react": "^0.2.0", - "astro": "^1.0.0-beta.54", + "astro": "^1.0.0-beta.55", "sass": "^1.52.2" }, "dependencies": { diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 8fe0df1c9..31506955a 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.11.3", - "astro": "^1.0.0-beta.54", + "astro": "^1.0.0-beta.55", "hast-util-select": "5.0.1", "rehype-autolink-headings": "^6.1.1", "rehype-slug": "^5.0.1", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index 9b8624634..748d7ba75 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.11.3", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" } } diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index e3c7c0a4c..e0b5c3b3e 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -14,7 +14,7 @@ "@astrojs/react": "^0.2.0", "@astrojs/svelte": "^0.2.0", "@astrojs/vue": "^0.2.0", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" }, "dependencies": { "preact": "^10.7.3", diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 1d628de3a..a00b0ebb6 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -25,6 +25,6 @@ "@astrojs/solid-js": "^0.2.0", "@astrojs/svelte": "^0.2.0", "@astrojs/vue": "^0.2.0", - "astro": "^1.0.0-beta.54" + "astro": "^1.0.0-beta.55" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 25f2bcf4b..e5f8d54d0 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/tailwind": "^0.2.1", - "astro": "^1.0.0-beta.54", + "astro": "^1.0.0-beta.55", "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 c8a71f811..1b25a1ed0 100644 --- a/examples/with-vite-plugin-pwa/package.json +++ b/examples/with-vite-plugin-pwa/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.54", + "astro": "^1.0.0-beta.55", "vite-plugin-pwa": "0.11.11", "workbox-window": "^6.5.3" } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 61b47f785..a16f62bea 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,48 @@ # astro +## 1.0.0-beta.55 + +### Patch Changes + +- [#3696](https://github.com/withastro/astro/pull/3696) [`3daaf510`](https://github.com/withastro/astro/commit/3daaf510ea767fba47ef52d2253b6221967f3b53) Thanks [@matthewp](https://github.com/matthewp)! - Support for streaming responses + + Astro supports streaming in its templates. Any time Astro encounters an async boundary it will stream out HTML that occurs before it. For example: + + ```astro + --- + import LoadTodos from '../components/LoadTodos.astro'; + --- + + + App + + + + + + ``` + + In this arbtrary example Astro will streaming out the `` section and everything else until it encounters `` and then stop. LoadTodos, which is also an Astro component will stream its contents as well; stopping and waiting at any other asynchronous components. + + As part of this Astro also now supports async iterables within its templates. This means you can do this: + + ```astro +
      + {(async function * () { + for(const number of numbers) { + await wait(1000); + + yield
    • Number: {number}
    • + yield '\n' + } + })()} +
    + ``` + + Which will stream out `
  • `s one at a time, waiting a second between each. + +* [#3700](https://github.com/withastro/astro/pull/3700) [`47c81eff`](https://github.com/withastro/astro/commit/47c81effa69fb5d7f1e576f88c27d5071f1888e3) Thanks [@matthewp](https://github.com/matthewp)! - Make Astro.redirect use a 302 status code + ## 1.0.0-beta.54 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index b1a02bcc6..49ddc48b0 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.0.0-beta.54", + "version": "1.0.0-beta.55", "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/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md index 359165e23..88913d64b 100644 --- a/packages/integrations/cloudflare/CHANGELOG.md +++ b/packages/integrations/cloudflare/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/cloudflare +## 0.2.1 + +### Patch Changes + +- [#3695](https://github.com/withastro/astro/pull/3695) [`0d667d0e`](https://github.com/withastro/astro/commit/0d667d0e572d76d4c819816ddf51ed14b43e2551) Thanks [@nrgnrg](https://github.com/nrgnrg)! - fix custom 404 pages not rendering + ## 0.2.0 ### Minor Changes diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index d3f663b2a..fabb77180 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 pages functions", - "version": "0.2.0", + "version": "0.2.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 666af6789..9ec530eb6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -49,14 +49,14 @@ importers: examples/basics: specifiers: - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 devDependencies: astro: link:../../packages/astro examples/blog: specifiers: '@astrojs/preact': ^0.2.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 preact: ^10.7.3 dependencies: preact: 10.7.3 @@ -67,7 +67,7 @@ importers: examples/blog-multiple-authors: specifiers: '@astrojs/preact': ^0.2.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 preact: ^10.7.3 sass: ^1.52.2 dependencies: @@ -79,14 +79,14 @@ importers: examples/component: specifiers: - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 devDependencies: astro: link:../../packages/astro examples/component/demo: specifiers: '@example/my-component': workspace:* - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 devDependencies: '@example/my-component': link:../packages/my-component astro: link:../../../packages/astro @@ -102,7 +102,7 @@ importers: '@docsearch/css': ^3.1.0 '@docsearch/react': ^3.1.0 '@types/react': ^17.0.45 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -121,14 +121,14 @@ importers: examples/env-vars: specifiers: - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 devDependencies: astro: link:../../packages/astro examples/framework-alpine: specifiers: alpinejs: ^3.10.2 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 dependencies: alpinejs: 3.10.2 devDependencies: @@ -138,7 +138,7 @@ importers: specifiers: '@astrojs/lit': ^0.3.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 lit: ^2.2.5 dependencies: '@webcomponents/template-shadowroot': 0.1.0 @@ -156,7 +156,7 @@ importers: '@astrojs/svelte': ^0.2.0 '@astrojs/vue': ^0.2.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 lit: ^2.2.5 preact: ^10.7.3 react: ^18.1.0 @@ -185,7 +185,7 @@ importers: examples/framework-preact: specifiers: '@astrojs/preact': ^0.2.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 preact: ^10.7.3 dependencies: preact: 10.7.3 @@ -198,7 +198,7 @@ importers: '@astrojs/react': ^0.2.0 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -213,7 +213,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^0.2.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 solid-js: ^1.4.3 dependencies: solid-js: 1.4.3 @@ -224,7 +224,7 @@ importers: examples/framework-svelte: specifiers: '@astrojs/svelte': ^0.2.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 svelte: ^3.48.0 dependencies: svelte: 3.48.0 @@ -235,7 +235,7 @@ importers: examples/framework-vue: specifiers: '@astrojs/vue': ^0.2.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 vue: ^3.2.36 dependencies: vue: 3.2.37 @@ -253,7 +253,7 @@ importers: '@astrojs/tailwind': ^0.2.1 '@astrojs/turbolinks': ^0.1.3 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 lit: ^2.2.5 preact: ^10.7.3 react: ^18.1.0 @@ -282,20 +282,20 @@ importers: examples/minimal: specifiers: - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 devDependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 devDependencies: astro: link:../../packages/astro examples/portfolio: specifiers: '@astrojs/preact': ^0.2.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 preact: ^10.7.3 sass: ^1.52.2 dependencies: @@ -309,7 +309,7 @@ importers: specifiers: '@astrojs/node': ^0.1.2 '@astrojs/svelte': ^0.2.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 concurrently: ^7.2.1 lightcookie: ^1.0.25 svelte: ^3.48.0 @@ -328,14 +328,14 @@ importers: examples/starter: specifiers: - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 devDependencies: astro: link:../../packages/astro examples/subpath: specifiers: '@astrojs/react': ^0.2.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 react: ^18.1.0 react-dom: ^18.1.0 sass: ^1.52.2 @@ -354,7 +354,7 @@ importers: '@astrojs/react': ^0.2.0 '@astrojs/svelte': ^0.2.0 '@astrojs/vue': ^0.2.0 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -377,7 +377,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^0.11.3 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -395,7 +395,7 @@ importers: examples/with-markdown-shiki: specifiers: '@astrojs/markdown-remark': ^0.11.3 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 devDependencies: '@astrojs/markdown-remark': link:../../packages/markdown/remark astro: link:../../packages/astro @@ -410,7 +410,7 @@ importers: '@nanostores/preact': ^0.1.3 '@nanostores/react': ^0.1.5 '@nanostores/vue': ^0.4.1 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 nanostores: ^0.5.12 preact: ^10.7.3 react: ^18.1.0 @@ -438,7 +438,7 @@ importers: examples/with-tailwindcss: specifiers: '@astrojs/tailwind': ^0.2.1 - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -453,7 +453,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.0.0-beta.54 + astro: ^1.0.0-beta.55 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 devDependencies: