From 92447974f220834571e66f995f4513adaf933904 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 3 Mar 2022 11:52:40 -0600 Subject: [PATCH] [ci] release (#2714) Co-authored-by: github-actions[bot] --- .changeset/thirty-lobsters-ring.md | 6 --- 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/fast-build/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/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio-svelte/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 2 +- 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 | 2 +- examples/with-nanostores/package.json | 2 +- examples/with-tailwindcss/package.json | 2 +- examples/with-vite-plugin-pwa/package.json | 2 +- packages/astro/CHANGELOG.md | 49 ++++++++++++--------- packages/astro/package.json | 4 +- packages/markdown/remark/CHANGELOG.md | 14 ++++-- packages/markdown/remark/package.json | 2 +- 33 files changed, 70 insertions(+), 61 deletions(-) delete mode 100644 .changeset/thirty-lobsters-ring.md diff --git a/.changeset/thirty-lobsters-ring.md b/.changeset/thirty-lobsters-ring.md deleted file mode 100644 index 569ac6be4655..000000000000 --- a/.changeset/thirty-lobsters-ring.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'astro': patch -'@astrojs/markdown-remark': patch ---- - -Changed `data-astro-raw` to `is:raw` internally diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index 58d411eb852b..0f1af8006c90 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4", + "astro": "^0.23.5", "sass": "^1.49.8" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 8e8d211ccfdb..37fdc91789e9 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index e92a317cdd33..40a802e1f95e 100644 --- a/examples/component/demo/package.json +++ b/examples/component/demo/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/component/package.json b/examples/component/package.json index 455c5c206e89..f682f5a04007 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -12,6 +12,6 @@ "serve": "astro --project-root demo preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index 6c3e285c305b..2d57a15158cd 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,6 +12,6 @@ "@docsearch/react": "^1.0.0-alpha.28" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json index ced94f9a4250..b73edd44267c 100644 --- a/examples/env-vars/package.json +++ b/examples/env-vars/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/fast-build/package.json b/examples/fast-build/package.json index 18c29a8887bd..3a6d22de5a51 100644 --- a/examples/fast-build/package.json +++ b/examples/fast-build/package.json @@ -10,7 +10,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4", + "astro": "^0.23.5", "preact": "~10.6.5", "unocss": "^0.15.5", "vite-imagetools": "^4.0.1" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index b5493cc2ee1e..9d54006006a1 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index c2eac44cf15a..8b1b1c8715ff 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.23.4" + "astro": "^0.23.5" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 1c61cf89a4dc..9962d8194887 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/renderer-solid": "^0.4.0", - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 0d60b5cb5c88..85ca45671e7f 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 69d6eb40a518..8d10178a7765 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index b4ddd116d182..684a730e0894 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.23.4" + "astro": "^0.23.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index a0973f3d854d..2defb181afda 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index d2ef5c670876..e3f178a270c2 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index ee36b904d13f..2a5daaf728e5 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index d3646031b1c1..25ce79fbc8ec 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.23.4" + "astro": "^0.23.5" } } diff --git a/examples/portfolio-svelte/package.json b/examples/portfolio-svelte/package.json index 8f259fe42843..8c1c2d8a26a9 100644 --- a/examples/portfolio-svelte/package.json +++ b/examples/portfolio-svelte/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index b793ff6e39f9..bb5766c865c8 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 971f4446b594..7efc529c547d 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -11,7 +11,7 @@ "server": "node server/server.mjs" }, "devDependencies": { - "astro": "^0.23.4", + "astro": "^0.23.5", "unocss": "^0.15.5", "vite-imagetools": "^4.0.1" }, diff --git a/examples/starter/package.json b/examples/starter/package.json index 225a6b6d132b..5520cb801379 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index e3e0c70ba7bf..2df0f18b2e07 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 1975e068236a..bdaf667ab912 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4", + "astro": "^0.23.5", "hast-util-select": "5.0.1", "rehype-autolink-headings": "^6.1.0", "rehype-slug": "^5.0.0", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index 659087ccd334..5c7d92b2f022 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index c90c72366b88..56cde0844aaf 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index ae6a4db2cc2b..83b339b6a443 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -17,6 +17,6 @@ }, "devDependencies": { "@astrojs/renderer-solid": "^0.4.0", - "astro": "^0.23.4" + "astro": "^0.23.5" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 65bc68672440..bff274578d1d 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.4", + "astro": "^0.23.5", "autoprefixer": "^10.4.0", "tailwindcss": "^3.0.5" } diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index 3b161b7bb757..894d5e0af58e 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.23.4", + "astro": "^0.23.5", "vite-plugin-pwa": "0.11.5" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 9edc35780ccb..c68c0e5689d8 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,14 @@ # astro +## 0.23.5 + +### Patch Changes + +- [#2706](https://github.com/withastro/astro/pull/2706) [`b2c37385`](https://github.com/withastro/astro/commit/b2c37385f94614232d9a378ef2ef3264d5405cc8) Thanks [@JuanM04](https://github.com/JuanM04)! - Changed `data-astro-raw` to `is:raw` internally + +- Updated dependencies [[`b2c37385`](https://github.com/withastro/astro/commit/b2c37385f94614232d9a378ef2ef3264d5405cc8)]: + - @astrojs/markdown-remark@0.6.4 + ## 0.23.4 ### Patch Changes @@ -73,12 +82,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/', + }), + }; } ``` @@ -240,12 +249,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/', + }), + }; } ``` @@ -1600,10 +1609,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' }]], + }, }; ``` @@ -1623,10 +1632,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 63c19bf73dc7..72010af36605 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.23.4", + "version": "0.23.5", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", @@ -60,7 +60,7 @@ "dependencies": { "@astrojs/compiler": "^0.11.4", "@astrojs/language-server": "^0.8.6", - "@astrojs/markdown-remark": "^0.6.3", + "@astrojs/markdown-remark": "^0.6.4", "@astrojs/prism": "0.4.0", "@astrojs/renderer-preact": "^0.5.0", "@astrojs/renderer-react": "0.5.0", diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md index c73e6826913b..b8b111164ce7 100644 --- a/packages/markdown/remark/CHANGELOG.md +++ b/packages/markdown/remark/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/markdown-remark +## 0.6.4 + +### Patch Changes + +- [#2706](https://github.com/withastro/astro/pull/2706) [`b2c37385`](https://github.com/withastro/astro/commit/b2c37385f94614232d9a378ef2ef3264d5405cc8) Thanks [@JuanM04](https://github.com/JuanM04)! - Changed `data-astro-raw` to `is:raw` internally + ## 0.6.3 ### Patch Changes @@ -153,10 +159,10 @@ ```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' }]], + }, }; ``` diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json index 29e196c92780..0b92ce6aadae 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-remark", - "version": "0.6.3", + "version": "0.6.4", "type": "module", "author": "withastro", "license": "MIT",