From 2b89613539f854ff9836573454f513d2ed1cbeb8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 15 Mar 2022 19:40:27 -0500 Subject: [PATCH] [ci] release (#2808) Co-authored-by: github-actions[bot] --- .changeset/large-snakes-lay.md | 5 -- .changeset/spicy-chicken-pump.md | 5 -- examples/blog-multiple-authors/package.json | 2 +- examples/blog/package.json | 2 +- examples/component/demo/package.json | 2 +- examples/component/package.json | 2 +- examples/docs/package.json | 2 +- examples/env-vars/package.json | 2 +- examples/framework-alpine/package.json | 2 +- examples/framework-lit/package.json | 2 +- examples/framework-multiple/package.json | 4 +- examples/framework-preact/package.json | 2 +- examples/framework-react/package.json | 2 +- examples/framework-solid/package.json | 2 +- examples/framework-svelte/package.json | 4 +- examples/framework-vue/package.json | 2 +- examples/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 4 +- examples/starter/package.json | 2 +- examples/subpath/package.json | 2 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown-shiki/package.json | 2 +- examples/with-markdown/package.json | 4 +- examples/with-nanostores/package.json | 4 +- examples/with-tailwindcss/package.json | 2 +- examples/with-vite-plugin-pwa/package.json | 2 +- packages/astro/CHANGELOG.md | 67 +++++++++++-------- packages/astro/package.json | 4 +- .../renderers/renderer-svelte/CHANGELOG.md | 6 ++ .../renderers/renderer-svelte/package.json | 2 +- scripts/CHANGELOG.md | 8 +++ scripts/package.json | 2 +- 34 files changed, 87 insertions(+), 74 deletions(-) delete mode 100644 .changeset/large-snakes-lay.md delete mode 100644 .changeset/spicy-chicken-pump.md create mode 100644 scripts/CHANGELOG.md diff --git a/.changeset/large-snakes-lay.md b/.changeset/large-snakes-lay.md deleted file mode 100644 index 95e296e00..000000000 --- a/.changeset/large-snakes-lay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/renderer-svelte': patch ---- - -Remove "PostCSS configuration was not passed or is invalid" error when using the Svelte renderer diff --git a/.changeset/spicy-chicken-pump.md b/.changeset/spicy-chicken-pump.md deleted file mode 100644 index c4e41a5f9..000000000 --- a/.changeset/spicy-chicken-pump.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix a warning from Vite regarding internal sourcemaps diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index d4b6f5fec..d2e77885d 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/renderer-preact": "^0.5.0", - "astro": "^0.24.2", + "astro": "^0.24.3", "sass": "^1.49.9" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 66f9e4e2f..13b11a14c 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.24.2", + "astro": "^0.24.3", "@astrojs/renderer-preact": "^0.5.0" } } diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index 3d7248c35..a532652c5 100644 --- a/examples/component/demo/package.json +++ b/examples/component/demo/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@example/my-component": "workspace:*", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/component/package.json b/examples/component/package.json index f920add4e..ac59a732d 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -8,6 +8,6 @@ "serve": "astro --project-root demo preview" }, "devDependencies": { - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index 07ed416b9..3468af34f 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -19,6 +19,6 @@ "devDependencies": { "@astrojs/renderer-preact": "^0.5.0", "@astrojs/renderer-react": "^0.5.0", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json index 52c383e6f..904461276 100644 --- a/examples/env-vars/package.json +++ b/examples/env-vars/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 2ccd76235..89c08517e 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index d4d22dba4..4d68428b5 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/renderer-lit": "^0.4.0", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index d4d9392d4..1b299dba9 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -13,8 +13,8 @@ "@astrojs/renderer-preact": "^0.5.0", "@astrojs/renderer-react": "^0.5.0", "@astrojs/renderer-solid": "^0.4.0", - "@astrojs/renderer-svelte": "^0.5.1", + "@astrojs/renderer-svelte": "^0.5.2", "@astrojs/renderer-vue": "^0.4.0", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 15c9996c5..23e834b17 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/renderer-preact": "^0.5.0", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 579c21692..399246155 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/renderer-react": "^0.5.0", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index d07ddb4c1..e11ec1ca5 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/renderer-solid": "^0.4.0", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 991ed5393..4370b867f 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/renderer-svelte": "^0.5.1", - "astro": "^0.24.2" + "@astrojs/renderer-svelte": "^0.5.2", + "astro": "^0.24.3" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 3ed3d9a42..e8779da77 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/renderer-vue": "^0.4.0", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 8dfb4150b..024764242 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index f1eece9b9..591aee9e5 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index ff9d69628..bbf074abf 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/renderer-preact": "^0.5.0", - "astro": "^0.24.2", + "astro": "^0.24.3", "sass": "^1.49.9" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 5af30d29f..5180ae7f9 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -11,8 +11,8 @@ "server": "node server/server.mjs" }, "devDependencies": { - "@astrojs/renderer-svelte": "^0.5.1", - "astro": "^0.24.2", + "@astrojs/renderer-svelte": "^0.5.2", + "astro": "^0.24.3", "unocss": "^0.15.6", "vite-imagetools": "^4.0.3" } diff --git a/examples/starter/package.json b/examples/starter/package.json index 5c84b1adb..ed4f1e556 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index 87ed54e95..aab141e2a 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/renderer-react": "^0.5.0", - "astro": "^0.24.2", + "astro": "^0.24.3", "sass": "^1.49.9" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 436e55b07..dd858364e 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.6.4", - "astro": "^0.24.2", + "astro": "^0.24.3", "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 86ba8f8ab..8a95504fa 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.6.4", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index 6cc66d005..4979a80fa 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -12,8 +12,8 @@ "@astrojs/markdown-remark": "^0.6.4", "@astrojs/renderer-preact": "^0.5.0", "@astrojs/renderer-react": "^0.5.0", - "@astrojs/renderer-svelte": "^0.5.1", + "@astrojs/renderer-svelte": "^0.5.2", "@astrojs/renderer-vue": "^0.4.0", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 62d372e5c..85b7a4d2a 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -23,8 +23,8 @@ "@astrojs/renderer-preact": "^0.5.0", "@astrojs/renderer-react": "^0.5.0", "@astrojs/renderer-solid": "^0.4.0", - "@astrojs/renderer-svelte": "^0.5.1", + "@astrojs/renderer-svelte": "^0.5.2", "@astrojs/renderer-vue": "^0.4.0", - "astro": "^0.24.2" + "astro": "^0.24.3" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 78d2aeb18..36edd5130 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/renderer-preact": "^0.5.0", - "astro": "^0.24.2", + "astro": "^0.24.3", "autoprefixer": "^10.4.2", "postcss": "^8.4.8", "tailwindcss": "^3.0.23" diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index b64f25302..e8dc51701 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": "^0.24.2", + "astro": "^0.24.3", "vite-plugin-pwa": "0.11.11", "workbox-window": "^6.5.1" } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index cfac0f0f6..52974e9d0 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,14 @@ # astro +## 0.24.3 + +### Patch Changes + +- [#2806](https://github.com/withastro/astro/pull/2806) [`9e59ec92`](https://github.com/withastro/astro/commit/9e59ec921fe539233a1a22b9f0c34ca3cfd05247) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fix a warning from Vite regarding internal sourcemaps + +- Updated dependencies [[`79282163`](https://github.com/withastro/astro/commit/79282163e229bfe332b1221be3099f751b05807b)]: + - @astrojs/renderer-svelte@0.5.2 + ## 0.24.2 ### Patch Changes @@ -16,7 +25,7 @@ import { defineConfig } from 'astro/config'; export default defineConfig({ - renderers: [], + renderers: [], }); ``` @@ -54,9 +63,9 @@ ```json { - "scripts": { - "build": "astro build --legacy-build" - } + "scripts": { + "build": "astro build --legacy-build" + } } ``` @@ -76,7 +85,7 @@ ```ts if (Astro.slots.has('default')) { - const content = await Astro.slots.render('default'); + const content = await Astro.slots.render('default'); } ``` @@ -160,7 +169,7 @@ ```ts if (Astro.slots.has('default')) { - const content = await Astro.slots.render('default'); + const content = await Astro.slots.render('default'); } ``` @@ -184,9 +193,9 @@ ```json { - "scripts": { - "build": "astro build --legacy-build" - } + "scripts": { + "build": "astro build --legacy-build" + } } ``` @@ -298,12 +307,12 @@ ```typescript // src/pages/company.json.ts export async function get() { - return { - body: JSON.stringify({ - name: 'Astro Technology Company', - url: 'https://astro.build/', - }), - }; + return { + body: JSON.stringify({ + name: 'Astro Technology Company', + url: 'https://astro.build/', + }), + }; } ``` @@ -465,12 +474,12 @@ ```typescript // src/pages/company.json.ts export async function get() { - return { - body: JSON.stringify({ - name: 'Astro Technology Company', - url: 'https://astro.build/', - }), - }; + return { + body: JSON.stringify({ + name: 'Astro Technology Company', + url: 'https://astro.build/', + }), + }; } ``` @@ -1825,10 +1834,10 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve ```js export default { - markdownOptions: { - remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]], - rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]], - }, + markdownOptions: { + remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]], + rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]], + }, }; ``` @@ -1848,10 +1857,10 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve ```js export default { - name: '@matthewp/my-renderer', - server: './server.js', - client: './client.js', - hydrationPolyfills: ['./my-polyfill.js'], + name: '@matthewp/my-renderer', + server: './server.js', + client: './client.js', + hydrationPolyfills: ['./my-polyfill.js'], }; ``` diff --git a/packages/astro/package.json b/packages/astro/package.json index 7db88fcd2..f868a81e4 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.24.2", + "version": "0.24.3", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", @@ -67,7 +67,7 @@ "@astrojs/prism": "0.4.0", "@astrojs/renderer-preact": "^0.5.0", "@astrojs/renderer-react": "0.5.0", - "@astrojs/renderer-svelte": "0.5.1", + "@astrojs/renderer-svelte": "0.5.2", "@astrojs/renderer-vue": "0.4.0", "@astrojs/webapi": "^0.11.0", "@babel/core": "^7.17.5", diff --git a/packages/renderers/renderer-svelte/CHANGELOG.md b/packages/renderers/renderer-svelte/CHANGELOG.md index f4da6acaf..2ca67ddac 100644 --- a/packages/renderers/renderer-svelte/CHANGELOG.md +++ b/packages/renderers/renderer-svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/renderer-svelte +## 0.5.2 + +### Patch Changes + +- [#2807](https://github.com/withastro/astro/pull/2807) [`79282163`](https://github.com/withastro/astro/commit/79282163e229bfe332b1221be3099f751b05807b) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Remove "PostCSS configuration was not passed or is invalid" error when using the Svelte renderer + ## 0.5.1 ### Patch Changes diff --git a/packages/renderers/renderer-svelte/package.json b/packages/renderers/renderer-svelte/package.json index 189aadf69..031a4277d 100644 --- a/packages/renderers/renderer-svelte/package.json +++ b/packages/renderers/renderer-svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/renderer-svelte", - "version": "0.5.1", + "version": "0.5.2", "description": "Use Svelte components within Astro", "type": "module", "author": "withastro", diff --git a/scripts/CHANGELOG.md b/scripts/CHANGELOG.md new file mode 100644 index 000000000..97077327c --- /dev/null +++ b/scripts/CHANGELOG.md @@ -0,0 +1,8 @@ +# astro-scripts + +## 0.0.2 + +### Patch Changes + +- Updated dependencies [[`79282163`](https://github.com/withastro/astro/commit/79282163e229bfe332b1221be3099f751b05807b)]: + - @astrojs/renderer-svelte@0.5.2 diff --git a/scripts/package.json b/scripts/package.json index 34e7dfa2e..c66bd0f48 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -1,6 +1,6 @@ { "name": "astro-scripts", - "version": "0.0.1", + "version": "0.0.2", "private": true, "type": "module", "main": "./index.js",