summaryrefslogtreecommitdiff
path: root/packages/integrations/markdoc
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-03-24 10:17:01 -0700
committerGravatar GitHub <noreply@github.com> 2023-03-24 13:17:01 -0400
commit12d42f47bd7edf3f92c85d63d6d17b2ed7d1051e (patch)
treeddb2fb292b4ac4e7dcfd8a30c1d4eab84ab092f8 /packages/integrations/markdoc
parenta0b6aac2f35ec9e2968b17a76239c12ae285ba0e (diff)
downloadastro-@astrojs/markdoc@0.0.5.tar.gz
astro-@astrojs/markdoc@0.0.5.tar.zst
astro-@astrojs/markdoc@0.0.5.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/markdoc')
-rw-r--r--packages/integrations/markdoc/CHANGELOG.md19
-rw-r--r--packages/integrations/markdoc/package.json2
2 files changed, 20 insertions, 1 deletions
diff --git a/packages/integrations/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md
index 80ef9ae29..f73a9ecc4 100644
--- a/packages/integrations/markdoc/CHANGELOG.md
+++ b/packages/integrations/markdoc/CHANGELOG.md
@@ -1,5 +1,24 @@
# @astrojs/markdoc
+## 0.0.5
+
+### Patch Changes
+
+- [#6630](https://github.com/withastro/astro/pull/6630) [`cfcf2e2ff`](https://github.com/withastro/astro/commit/cfcf2e2ffdaa68ace5c84329c05b83559a29d638) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Support automatic image optimization for Markdoc images when using `experimental.assets`. You can [follow our Assets guide](https://docs.astro.build/en/guides/assets/#enabling-assets-in-your-project) to enable this feature in your project. Then, start using relative or aliased image sources in your Markdoc files for automatic optimization:
+
+ ```md
+ <!--Relative paths-->
+
+ ![The Milky Way Galaxy](../assets/galaxy.jpg)
+
+ <!--Or configured aliases-->
+
+ ![Houston smiling and looking cute](~/assets/houston-smiling.jpg)
+ ```
+
+- Updated dependencies [[`b7194103e`](https://github.com/withastro/astro/commit/b7194103e39267bf59dcd6ba00f522e424219d16), [`cfcf2e2ff`](https://github.com/withastro/astro/commit/cfcf2e2ffdaa68ace5c84329c05b83559a29d638), [`45da39a86`](https://github.com/withastro/astro/commit/45da39a8642d64eb318840b18dfc2b5ccc6561bc), [`7daef9a29`](https://github.com/withastro/astro/commit/7daef9a2993b5d457f3d243a1ebfd1dd383b3327)]:
+ - astro@2.1.7
+
## 0.0.4
### Patch Changes
diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json
index 70c0eea99..67b311c65 100644
--- a/packages/integrations/markdoc/package.json
+++ b/packages/integrations/markdoc/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/markdoc",
"description": "Add support for Markdoc pages in your Astro site",
- "version": "0.0.4",
+ "version": "0.0.5",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",