diff options
author | 2022-02-11 10:41:47 -0500 | |
---|---|---|
committer | 2022-02-11 10:41:47 -0500 | |
commit | b1afce896a6800b52a103fd8535215972254e44c (patch) | |
tree | 61702d6da18302f00065bf9d670f65604f37e060 /packages | |
parent | 3c682f266850a87583a5eb09eb5dd80edf7e2e45 (diff) | |
download | astro-fc3407ee36721f53252c1c5e0516d965112e79c2.tar.gz astro-fc3407ee36721f53252c1c5e0516d965112e79c2.tar.zst astro-fc3407ee36721f53252c1c5e0516d965112e79c2.zip |
[ci] release (next) (#2565)astro@0.23.0-next.5@astrojs/markdown-remark@0.6.1-next.2
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages')
-rw-r--r-- | packages/astro/CHANGELOG.md | 25 | ||||
-rw-r--r-- | packages/astro/package.json | 4 | ||||
-rw-r--r-- | packages/markdown/remark/CHANGELOG.md | 14 | ||||
-rw-r--r-- | packages/markdown/remark/package.json | 2 |
4 files changed, 30 insertions, 15 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index b59bccac2..44deb130a 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,14 @@ # astro +## 0.23.0-next.5 + +### Patch Changes + +- [#2569](https://github.com/withastro/astro/pull/2569) [`82544e41`](https://github.com/withastro/astro/commit/82544e413406a62ecf3e408ca1aac5c8c15b7453) Thanks [@matthewp](https://github.com/matthewp)! - Fixes pageUrlFormat: 'file' in the static build + +- Updated dependencies [[`d71c4620`](https://github.com/withastro/astro/commit/d71c46207af40de6811596ca4f5e10aa9006377b)]: + - @astrojs/markdown-remark@0.6.1-next.2 + ## 0.23.0-next.4 ### Minor Changes @@ -1286,10 +1295,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' }]], + }, }; ``` @@ -1309,10 +1318,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 7cbe10a42..42efc01c0 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.23.0-next.4", + "version": "0.23.0-next.5", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", @@ -57,7 +57,7 @@ "dependencies": { "@astrojs/compiler": "^0.10.1", "@astrojs/language-server": "^0.8.6", - "@astrojs/markdown-remark": "^0.6.1-next.1", + "@astrojs/markdown-remark": "^0.6.1-next.2", "@astrojs/prism": "0.4.0", "@astrojs/renderer-preact": "^0.5.0-next.0", "@astrojs/renderer-react": "0.5.0-next.0", diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md index 58450171b..76b98312f 100644 --- a/packages/markdown/remark/CHANGELOG.md +++ b/packages/markdown/remark/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/markdown-remark +## 0.6.1-next.2 + +### Patch Changes + +- [#2564](https://github.com/withastro/astro/pull/2564) [`d71c4620`](https://github.com/withastro/astro/commit/d71c46207af40de6811596ca4f5e10aa9006377b) Thanks [@JuanM04](https://github.com/JuanM04)! - Fixed curly braces inside Shiki codeblocks + ## 0.6.1-next.1 ### Patch Changes @@ -121,10 +127,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 90d64c90c..2db3fc01f 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-remark", - "version": "0.6.1-next.1", + "version": "0.6.1-next.2", "type": "module", "author": "withastro", "license": "MIT", |