summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 2022-02-11 10:41:47 -0500
committerGravatar GitHub <noreply@github.com> 2022-02-11 10:41:47 -0500
commitb1afce896a6800b52a103fd8535215972254e44c (patch)
tree61702d6da18302f00065bf9d670f65604f37e060
parent3c682f266850a87583a5eb09eb5dd80edf7e2e45 (diff)
downloadastro-b1afce896a6800b52a103fd8535215972254e44c.tar.gz
astro-b1afce896a6800b52a103fd8535215972254e44c.tar.zst
astro-b1afce896a6800b52a103fd8535215972254e44c.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r--.changeset/pre.json2
-rw-r--r--examples/blog-multiple-authors/package.json2
-rw-r--r--examples/blog/package.json2
-rw-r--r--examples/component/demo/package.json2
-rw-r--r--examples/component/package.json2
-rw-r--r--examples/docs/package.json2
-rw-r--r--examples/fast-build/package.json2
-rw-r--r--examples/framework-alpine/package.json2
-rw-r--r--examples/framework-lit/package.json2
-rw-r--r--examples/framework-multiple/package.json2
-rw-r--r--examples/framework-preact/package.json2
-rw-r--r--examples/framework-react/package.json2
-rw-r--r--examples/framework-solid/package.json2
-rw-r--r--examples/framework-svelte/package.json2
-rw-r--r--examples/framework-vue/package.json2
-rw-r--r--examples/minimal/package.json2
-rw-r--r--examples/portfolio-svelte/package.json2
-rw-r--r--examples/portfolio/package.json2
-rw-r--r--examples/starter/package.json2
-rw-r--r--examples/subpath/package.json2
-rw-r--r--examples/with-markdown-plugins/package.json2
-rw-r--r--examples/with-markdown-shiki/package.json2
-rw-r--r--examples/with-markdown/package.json2
-rw-r--r--examples/with-nanostores/package.json2
-rw-r--r--examples/with-tailwindcss/package.json2
-rw-r--r--examples/with-vite-plugin-pwa/package.json2
-rw-r--r--packages/astro/CHANGELOG.md25
-rw-r--r--packages/astro/package.json4
-rw-r--r--packages/markdown/remark/CHANGELOG.md14
-rw-r--r--packages/markdown/remark/package.json2
30 files changed, 57 insertions, 40 deletions
diff --git a/.changeset/pre.json b/.changeset/pre.json
index f04164c27..c32d4da85 100644
--- a/.changeset/pre.json
+++ b/.changeset/pre.json
@@ -55,6 +55,7 @@
"empty-snails-allow",
"four-mirrors-wonder",
"fresh-moose-compare",
+ "gold-kangaroos-notice",
"grumpy-chefs-judge",
"loud-seals-camp",
"many-oranges-retire",
@@ -65,6 +66,7 @@
"serious-glasses-taste",
"shaggy-shoes-leave",
"shy-brooms-tell",
+ "six-ants-hunt",
"tiny-owls-dress"
]
}
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json
index eee91b0b5..19fc32b87 100644
--- a/examples/blog-multiple-authors/package.json
+++ b/examples/blog-multiple-authors/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 23f671a45..3a52eca32 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json
index 0bf493ced..36a16f8d1 100644
--- a/examples/component/demo/package.json
+++ b/examples/component/demo/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index b1e19b3f3..ec25b0d7f 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.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/docs/package.json b/examples/docs/package.json
index c99c3c4eb..2d31e1b44 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.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/fast-build/package.json b/examples/fast-build/package.json
index 19f9680fe..1b3263fbe 100644
--- a/examples/fast-build/package.json
+++ b/examples/fast-build/package.json
@@ -10,7 +10,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4",
+ "astro": "^0.23.0-next.5",
"preact": "~10.5.15",
"unocss": "^0.15.5",
"vite-imagetools": "^4.0.1"
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index d0073def3..d8c43f1a4 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index 2ec5ca2c7..4fe8df3e9 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-lit": "^0.4.0-next.0",
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index ecc8085c1..2e4d77484 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.4.0-next.0",
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index eb6699caa..9c18f208d 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index bcad03639..8bd8fa867 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 087fd7818..58a6a8e5e 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.4.0-next.0",
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 647f22f02..e038c6d4a 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 269a24d09..2fb0db92d 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 75d4aba18..30f6d2233 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/portfolio-svelte/package.json b/examples/portfolio-svelte/package.json
index 47758ec81..86e2e62f6 100644
--- a/examples/portfolio-svelte/package.json
+++ b/examples/portfolio-svelte/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 220c28389..6fc77dcc2 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/starter/package.json b/examples/starter/package.json
index d7add14bc..9d3e3464c 100644
--- a/examples/starter/package.json
+++ b/examples/starter/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/subpath/package.json b/examples/subpath/package.json
index ad6175186..19f71ea3f 100644
--- a/examples/subpath/package.json
+++ b/examples/subpath/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 0b1bd45c0..6ba2cbf3d 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.0-next.4",
+ "astro": "^0.23.0-next.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 42295c0cd..f691bdbc1 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.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json
index 1d43e08c0..6e6e43e95 100644
--- a/examples/with-markdown/package.json
+++ b/examples/with-markdown/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 612a4b562..7dfb8f1d3 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -17,6 +17,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.4.0-next.0",
- "astro": "^0.23.0-next.4"
+ "astro": "^0.23.0-next.5"
}
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 07a1e3806..35734e3de 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.0-next.4",
+ "astro": "^0.23.0-next.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 3e73abdf4..294554b9f 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.0-next.4",
+ "astro": "^0.23.0-next.5",
"vite-plugin-pwa": "0.11.5"
}
}
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",