summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorGravatar github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 2022-01-12 11:30:01 -0500
committerGravatar GitHub <noreply@github.com> 2022-01-12 11:30:01 -0500
commit983bf72aa1a4a8eee907324a8301f286e1fb0e1d (patch)
tree6a0264a8ff02e76ea8b6b21af2874285700e0fbd /packages
parentd3d2b89159508d47386852cc90fd2adda56480b0 (diff)
downloadastro-983bf72aa1a4a8eee907324a8301f286e1fb0e1d.tar.gz
astro-983bf72aa1a4a8eee907324a8301f286e1fb0e1d.tar.zst
astro-983bf72aa1a4a8eee907324a8301f286e1fb0e1d.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages')
-rw-r--r--packages/astro/CHANGELOG.md30
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/renderers/renderer-solid/CHANGELOG.md6
-rw-r--r--packages/renderers/renderer-solid/package.json2
4 files changed, 30 insertions, 10 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index ad8d11099..c6e8d39b3 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,19 @@
# astro
+## 0.22.10
+
+### Patch Changes
+
+- [#2335](https://github.com/withastro/astro/pull/2335) [`f008a19c`](https://github.com/withastro/astro/commit/f008a19c9d4ad046ef7b24262605e8107c34a9bc) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Preserve pathnames for sitemap.xml
+
+* [#2358](https://github.com/withastro/astro/pull/2358) [`10074972`](https://github.com/withastro/astro/commit/1007497297769455d41e23f48dfdbec90b403f2e) Thanks [@matthewp](https://github.com/matthewp)! - Fixes the output when using the experimental-static-build flag
+
+- [#2323](https://github.com/withastro/astro/pull/2323) [`69af658b`](https://github.com/withastro/astro/commit/69af658b00be0a3b1bb0eb11c2e480973a5a6301) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Fix issue with plugins running twice in dev and build
+
+* [#2338](https://github.com/withastro/astro/pull/2338) [`c0cb7eea`](https://github.com/withastro/astro/commit/c0cb7eead5389e93c9a3e8206a301e44bd928702) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Fix preview issues triggered by pageUrlFormat & trailingSlash options
+
+- [#2363](https://github.com/withastro/astro/pull/2363) [`7e0b32c5`](https://github.com/withastro/astro/commit/7e0b32c5696ec9db3cdee3de732de056b380568a) Thanks [@matthewp](https://github.com/matthewp)! - Fixes use of --experimental-static-build with markdown pages
+
## 0.22.9
### Patch Changes
@@ -1094,10 +1108,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' }]],
+ },
};
```
@@ -1117,10 +1131,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 fd99f1eb8..53e5ceb00 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "0.22.9",
+ "version": "0.22.10",
"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/renderers/renderer-solid/CHANGELOG.md b/packages/renderers/renderer-solid/CHANGELOG.md
index ee130a862..9497e3425 100644
--- a/packages/renderers/renderer-solid/CHANGELOG.md
+++ b/packages/renderers/renderer-solid/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/renderer-solid
+## 0.3.1
+
+### Patch Changes
+
+- [#2359](https://github.com/withastro/astro/pull/2359) [`f482c626`](https://github.com/withastro/astro/commit/f482c626a6e3472052d13cb0d348323ef4e822a8) Thanks [@toSayNothing](https://github.com/toSayNothing)! - fix renderer-solid
+
## 0.3.0
### Minor Changes
diff --git a/packages/renderers/renderer-solid/package.json b/packages/renderers/renderer-solid/package.json
index 91bef4a18..1b86fbb90 100644
--- a/packages/renderers/renderer-solid/package.json
+++ b/packages/renderers/renderer-solid/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/renderer-solid",
- "version": "0.3.0",
+ "version": "0.3.1",
"description": "Use Solid components within Astro",
"type": "module",
"author": "withastro",