summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/astro/CHANGELOG.md13
-rw-r--r--packages/astro/package.json4
-rw-r--r--packages/markdown-support/CHANGELOG.md7
-rw-r--r--packages/markdown-support/package.json2
4 files changed, 23 insertions, 3 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 1a3f4a277..f201ebf9f 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,18 @@
# astro
+## 0.20.5
+
+### Patch Changes
+
+- b03f8771: Add human readable config verification errors
+- b03f8771: Sitemaps will not create entries for 404.html pages
+- b03f8771: Fix parsing of an empty `<pre></pre>` tag in markdown files, which expected the pre tag to have a child
+- b03f8771: Add new `<Code>` component, powered by the more modern shiki syntax highlighter.
+- b03f8771: Fix astro bin bug in some pre-ESM versions of Node v14.x
+- Updated dependencies [b03f8771]
+- Updated dependencies [b03f8771]
+ - @astrojs/markdown-support@0.3.1
+
## 0.20.4
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index d170bd133..702d7ed57 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "0.20.4",
+ "version": "0.20.5",
"author": "Skypack",
"license": "MIT",
"type": "module",
@@ -44,7 +44,7 @@
"test": "uvu test -i fixtures -i benchmark -i test-utils.js"
},
"dependencies": {
- "@astrojs/markdown-support": "0.3.0",
+ "@astrojs/markdown-support": "0.3.1",
"@astrojs/parser": "0.20.2",
"@astrojs/prism": "0.2.2",
"@astrojs/renderer-preact": "0.2.1",
diff --git a/packages/markdown-support/CHANGELOG.md b/packages/markdown-support/CHANGELOG.md
index d08ed3e4e..eff4e46a6 100644
--- a/packages/markdown-support/CHANGELOG.md
+++ b/packages/markdown-support/CHANGELOG.md
@@ -1,5 +1,12 @@
# @astrojs/markdown-support
+## 0.3.1
+
+### Patch Changes
+
+- b03f8771: Fix parsing of an empty `<pre></pre>` tag in markdown files, which expected the pre tag to have a child
+- b03f8771: Fix the importing of `unified` `Plugin` and `UnifiedPlugin` types
+
## 0.3.0
### Minor Changes
diff --git a/packages/markdown-support/package.json b/packages/markdown-support/package.json
index 8eb6dca25..3c2714ec6 100644
--- a/packages/markdown-support/package.json
+++ b/packages/markdown-support/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/markdown-support",
- "version": "0.3.0",
+ "version": "0.3.1",
"main": "./dist/index.js",
"type": "module",
"repository": {