summaryrefslogtreecommitdiff
path: root/packages/integrations/mdx
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-03-07 11:49:19 -0800
committerGravatar GitHub <noreply@github.com> 2023-03-07 14:49:19 -0500
commitafaf366fb37bc78a845890cf012dbc7d07bfb305 (patch)
treecba96f7b712cd522891d0fb83cba3625678c5a3d /packages/integrations/mdx
parent5ce750b015c32cc6ea3948a1d4f7cd4a68d9a752 (diff)
downloadastro-@astrojs/alpinejs@0.2.0.tar.gz
astro-@astrojs/alpinejs@0.2.0.tar.zst
astro-@astrojs/alpinejs@0.2.0.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/mdx')
-rw-r--r--packages/integrations/mdx/CHANGELOG.md33
-rw-r--r--packages/integrations/mdx/package.json6
2 files changed, 36 insertions, 3 deletions
diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md
index 0b0e095ac..66bab8042 100644
--- a/packages/integrations/mdx/CHANGELOG.md
+++ b/packages/integrations/mdx/CHANGELOG.md
@@ -1,5 +1,38 @@
# @astrojs/mdx
+## 0.18.0
+
+### Minor Changes
+
+- [#6344](https://github.com/withastro/astro/pull/6344) [`694918a56`](https://github.com/withastro/astro/commit/694918a56b01104831296be0c25456135a63c784) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add a new experimental flag (`experimental.assets`) to enable our new core Assets story.
+
+ This unlocks a few features:
+
+ - A new built-in image component and JavaScript API to transform and optimize images.
+ - Relative images with automatic optimization in Markdown.
+ - Support for validating assets using content collections.
+ - and more!
+
+ See [Assets (Experimental)](https://docs.astro.build/en/guides/assets/) on our docs site for more information on how to use this feature!
+
+- [#6213](https://github.com/withastro/astro/pull/6213) [`afbbc4d5b`](https://github.com/withastro/astro/commit/afbbc4d5bfafc1779bac00b41c2a1cb1c90f2808) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Updated compilation settings to disable downlevelling for Node 14
+
+### Patch Changes
+
+- [#6209](https://github.com/withastro/astro/pull/6209) [`fec583909`](https://github.com/withastro/astro/commit/fec583909ab62829dc0c1600e2387979365f2b94) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Introduce the (experimental) `@astrojs/markdoc` integration. This unlocks Markdoc inside your Content Collections, bringing support for Astro and UI components in your content. This also improves Astro core internals to make Content Collections extensible to more file types in the future.
+
+ You can install this integration using the `astro add` command:
+
+ ```
+ astro add markdoc
+ ```
+
+ [Read the `@astrojs/markdoc` documentation](https://docs.astro.build/en/guides/integrations-guide/markdoc/) for usage instructions, and browse the [new `with-markdoc` starter](https://astro.new/with-markdoc) to try for yourself.
+
+- Updated dependencies [[`694918a56`](https://github.com/withastro/astro/commit/694918a56b01104831296be0c25456135a63c784), [`afbbc4d5b`](https://github.com/withastro/astro/commit/afbbc4d5bfafc1779bac00b41c2a1cb1c90f2808)]:
+ - @astrojs/markdown-remark@2.1.0
+ - @astrojs/prism@2.1.0
+
## 0.17.2
### Patch Changes
diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json
index e7c5542c3..d33925fdb 100644
--- a/packages/integrations/mdx/package.json
+++ b/packages/integrations/mdx/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/mdx",
"description": "Use MDX within Astro",
- "version": "0.17.2",
+ "version": "0.18.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
@@ -30,8 +30,8 @@
"test:match": "mocha --timeout 20000 -g"
},
"dependencies": {
- "@astrojs/markdown-remark": "^2.0.1",
- "@astrojs/prism": "^2.0.0",
+ "@astrojs/markdown-remark": "^2.1.0",
+ "@astrojs/prism": "^2.1.0",
"@mdx-js/mdx": "^2.3.0",
"@mdx-js/rollup": "^2.3.0",
"acorn": "^8.8.0",