Fix rewriting of components for custom elements#2101
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Codecov Report
@@ Coverage Diff @@
## main #2101 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 22 22
Lines 2009 2044 +35
=========================================
+ Hits 2009 2044 +35
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
wooorm
left a comment
There was a problem hiding this comment.
Looking good. One important thing. One small thing. One stylistic thing!
| '}', | ||
| 'function MDXContent(props = {}) {', | ||
| ' const {wrapper: MDXLayout} = props.components || ({});', | ||
| ' const _component0 = "a-b", {wrapper: MDXLayout} = props.components || ({});', |
There was a problem hiding this comment.
Ah, I think I understand this prop a bit better now. Looks like I didn't implement this right! I'll rework 👍
There was a problem hiding this comment.
Sweet, thanks!
You could also likely set it on that destructuring object, alongside wrapper: MDXLayout? You may need to set a computed field in the AST or so though 🤔: https://astexplorer.net/#/gist/702f0315bf76ddbaf45a0928b0b06e96/784539f882835483b4541f9eff8d81ec4a327733
wooorm
left a comment
There was a problem hiding this comment.
Getting very close, thanks for your continued work! One big thing, rest are nits
| ] of invalidComponentNameToVariable) { | ||
| _componentsId, | ||
| _componentName | ||
| ] of idToInvalidComponentName) { |
There was a problem hiding this comment.
I still kinda like name, value better, but I’m not blocking on this.
I feel a bit more strongly about not using _ to start variable names, that is often used with variables (parameters) to mark them as explicitly not used
There was a problem hiding this comment.
Understood, removed those _s! I also tried using name and value, but noticed it leads to {value: name} and {name: value} in the sections where they're used. It... kinda made my head spin, so I chose [id, componentName] instead 😆
Co-authored-by: Titus <[email protected]>
Co-authored-by: Titus <[email protected]>
jsx: true|
Released in 2.1.3! |
|
@wooorm Woo! Thanks for the thorough review and feedback here. Already learned a ton about the MDX project ❤️ |
This fixes a bug, uncovered in #2112 and in #2123, which is rather unlikely to occur. It only occurs when: 1. Custom elements (such as `<a-b></a-b>`) are injected (not authored) into a tree 2. Either: 1. A layout component is defined within an MDX document 2. A provider is used, and any component is defined within MDX documents In those cases, an accidental `const ;` was injected into the final serialized document. Which caused anything trying to run the code to crash. The problem was introduced in 9904838, the commit message of which sheds some light on why custom elements are peculiar and need extra handling. We track which component contains which other components. If some component uses `<A />`, then some code to handle `A` is injected in that component. If a different component uses `<B />`, some code for `B` is injected inside it. But the components don’t need to know about what’s used in other components. This mechanism had a mistake for custom elements: they were tracked globally. This commit fixes that, by tracking them scoped to the component that includes them. Related-to: GH-2100. Related-to: GH-2101. Closes GH-2112. Closes GH-2123. Co-authored-by: Caleb Eby <[email protected]> Co-authored-by: bholmesdev <[email protected]>
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mdx-js/react](https://mdxjs.com) ([source](https://togithub.com/mdx-js/mdx)) | [`1.6.22` -> `2.1.5`](https://renovatebot.com/diffs/npm/@mdx-js%2freact/1.6.22/2.1.5) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mdx-js/mdx</summary> ### [`v2.1.5`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.5) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.4...2.1.5) - [`90fa493`](https://togithub.com/mdx-js/mdx/commit/90fa4935) Fix bug with (injected) custom elements and layouts **Full Changelog**: mdx-js/mdx@2.1.4...2.1.5 ### [`v2.1.4`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.4) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.3...2.1.4) ##### Patches - [`9d2aa80`](https://togithub.com/mdx-js/mdx/commit/9d2aa80b) Add file, positional info to crashes in webpack loader by [@​Twipped](https://togithub.com/Twipped) in [https://github.com/mdx-js/mdx/pull/2124](https://togithub.com/mdx-js/mdx/pull/2124) - [`478c78b`](https://togithub.com/mdx-js/mdx/commit/478c78b7) Fix support for Node loaders ##### Docs - [`56d7066`](https://togithub.com/mdx-js/mdx/commit/56d70660) Add Astro to site generator docs by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2118](https://togithub.com/mdx-js/mdx/pull/2118) - [`996771a`](https://togithub.com/mdx-js/mdx/commit/996771ae) Add missing `import` to site example by [@​elpddev](https://togithub.com/elpddev) in [https://github.com/mdx-js/mdx/pull/2115](https://togithub.com/mdx-js/mdx/pull/2115) **Full Changelog**: mdx-js/mdx@2.1.3...2.1.4 ### [`v2.1.3`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.3) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.2...2.1.3) ##### Core - [`9904838`](https://togithub.com/mdx-js/mdx/commit/9904838a) Fix rewriting of components for custom elements by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2101](https://togithub.com/mdx-js/mdx/pull/2101) ##### Docs - [`69a15b7`](https://togithub.com/mdx-js/mdx/commit/69a15b76) Add link to official `mdx-js/vscode-mdx` by [@​jasikpark](https://togithub.com/jasikpark) in [https://github.com/mdx-js/mdx/pull/2098](https://togithub.com/mdx-js/mdx/pull/2098) ##### Internal stuff that slightly improve stuff - [`529b96a`](https://togithub.com/mdx-js/mdx/commit/529b96aa) Replace `astring` with `estree-util-to-js` - [`7d8dc11`](https://togithub.com/mdx-js/mdx/commit/7d8dc11c) Add `id` field to esbuild messages - [`7f37b95`](https://togithub.com/mdx-js/mdx/commit/7f37b95b) Update `@types/estree-jsx` **Full Changelog**: mdx-js/mdx@2.1.2...2.1.3 ### [`v2.1.2`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.2) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.1...2.1.2) ##### Core - [`7bcd705`](https://togithub.com/mdx-js/mdx/commit/7bcd7059) Fix some performance by improving vdom diffing by [@​0phoff](https://togithub.com/0phoff) in [https://github.com/mdx-js/mdx/pull/2062](https://togithub.com/mdx-js/mdx/pull/2062) - [`f77c33f`](https://togithub.com/mdx-js/mdx/commit/f77c33f5) Fix support for `baseUrl` rewriting `import.meta.url` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2021](https://togithub.com/mdx-js/mdx/pull/2021) ##### Docs - [`3579aa3`](https://togithub.com/mdx-js/mdx/commit/3579aa38) Add use of tla in docs - [`366ddb4`](https://togithub.com/mdx-js/mdx/commit/366ddb4d) Update examples in readme - [`63fd208`](https://togithub.com/mdx-js/mdx/commit/63fd208d) Add `@next/mdx` to Next.js getting started guide by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2040](https://togithub.com/mdx-js/mdx/pull/2040) - [`7f9a5f4`](https://togithub.com/mdx-js/mdx/commit/7f9a5f4e) Add improved getting started for current CRA 5 integration by [@​userzimmermann](https://togithub.com/userzimmermann) in [https://github.com/mdx-js/mdx/pull/2010](https://togithub.com/mdx-js/mdx/pull/2010) - [`5fa82d8`](https://togithub.com/mdx-js/mdx/commit/5fa82d81) Add `recma-nextjs-static-props` to list of plugins by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2033](https://togithub.com/mdx-js/mdx/pull/2033) - [`3c51a43`](https://togithub.com/mdx-js/mdx/commit/3c51a434) Add `remark-mdx-math-enhanced` to list of plugins by [@​mattvague](https://togithub.com/mattvague) in [https://github.com/mdx-js/mdx/pull/2028](https://togithub.com/mdx-js/mdx/pull/2028) **Full Changelog**: mdx-js/mdx@2.1.1...2.1.2 ### [`v2.1.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.0...2.1.1) - [`e79fc2b`](https://togithub.com/mdx-js/mdx/commit/e79fc2be) [`0df684b`](https://togithub.com/mdx-js/mdx/commit/0df684bc) Fix to improve `_missingMdxReference` by [@​vlad-zhukov](https://togithub.com/vlad-zhukov) in [https://github.com/mdx-js/mdx/pull/1986](https://togithub.com/mdx-js/mdx/pull/1986), [https://github.com/mdx-js/mdx/pull/1988](https://togithub.com/mdx-js/mdx/pull/1988) **Full Changelog**: mdx-js/mdx@2.1.0...2.1.1 ### [`v2.1.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.0.0...2.1.0) ##### Core - [`aff6de4`](https://togithub.com/mdx-js/mdx/commit/aff6de4f) **minor** add support for passing options to `remark-rehype` by [@​stefanprobst](https://togithub.com/stefanprobst) in [https://github.com/mdx-js/mdx/pull/1935](https://togithub.com/mdx-js/mdx/pull/1935) - [`5d4355e`](https://togithub.com/mdx-js/mdx/commit/5d4355e4) **patch** replace `got` w/ `node-fetch` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/1978](https://togithub.com/mdx-js/mdx/pull/1978) - [`656a4ae`](https://togithub.com/mdx-js/mdx/commit/656a4ae5) **patch** remove use of `URL` from `url` by [@​zfben](https://togithub.com/zfben) in [https://github.com/mdx-js/mdx/pull/1976](https://togithub.com/mdx-js/mdx/pull/1976) - [`3f739a3`](https://togithub.com/mdx-js/mdx/commit/3f739a34) **patch** add missing dependency by [@​bensmithett](https://togithub.com/bensmithett) in [https://github.com/mdx-js/mdx/pull/1936](https://togithub.com/mdx-js/mdx/pull/1936) ##### Site - [`2886021`](https://togithub.com/mdx-js/mdx/commit/28860214) [`71bc6ff`](https://togithub.com/mdx-js/mdx/commit/71bc6ff9) [`4b514e1`](https://togithub.com/mdx-js/mdx/commit/4b514e1a) Fix playground by [@​homumado](https://togithub.com/homumado) in [https://github.com/mdx-js/mdx/pull/1975](https://togithub.com/mdx-js/mdx/pull/1975) and [https://github.com/mdx-js/mdx/pull/1931](https://togithub.com/mdx-js/mdx/pull/1931), and by [@​VitorLuizC](https://togithub.com/VitorLuizC) in [https://github.com/mdx-js/mdx/pull/1928](https://togithub.com/mdx-js/mdx/pull/1928) ##### Docs - [`e6f6bc8`](https://togithub.com/mdx-js/mdx/commit/e6f6bc85) Fix to improve example by [@​dawidjaniga](https://togithub.com/dawidjaniga) in [https://github.com/mdx-js/mdx/pull/1961](https://togithub.com/mdx-js/mdx/pull/1961) - [`e527ac7`](https://togithub.com/mdx-js/mdx/commit/e527ac75) Fix typo by [@​jbesomi](https://togithub.com/jbesomi) in [https://github.com/mdx-js/mdx/pull/1949](https://togithub.com/mdx-js/mdx/pull/1949) **New Contributors**: Thanks [@​VitorLuizC](https://togithub.com/VitorLuizC), [@​homumado](https://togithub.com/homumado), [@​bensmithett](https://togithub.com/bensmithett), [@​stefanprobst](https://togithub.com/stefanprobst), [@​jbesomi](https://togithub.com/jbesomi), [@​dawidjaniga](https://togithub.com/dawidjaniga), [@​zfben](https://togithub.com/zfben) **Full Changelog**: mdx-js/mdx@2.0.0...2.1.0 ### [`v2.0.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.0.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/v1.6.22...2.0.0) Welcome to MDX 2! See the of the website for everything: - MDX 2: https://mdxjs.com/blog/v2/ - Migrating: https://mdxjs.com/migrating/v2/ <details><summary>Changelog since last RC</summary> ##### `@mdx-js/mdx` - [`4a48f1f`](https://togithub.com/mdx-js/mdx/commit/4a48f1f4) Fix custom elements ([#​1911](https://togithub.com/mdx-js/mdx/issues/1911)) ##### `@mdx-js/react` - [`9ca9d40`](https://togithub.com/mdx-js/mdx/commit/9ca9d404) Fix unnecessary top-level context changes ([#​1924](https://togithub.com/mdx-js/mdx/issues/1924)) ##### `@mdx-js/loader` - [`e0b697a`](https://togithub.com/mdx-js/mdx/commit/e0b697ab) [`9d5501b`](https://togithub.com/mdx-js/mdx/commit/9d5501b2) Add improved webpack cache ([#​1912](https://togithub.com/mdx-js/mdx/issues/1912), [#​1916](https://togithub.com/mdx-js/mdx/issues/1916)) ##### `@mdx-js/esbuild` - [`5c61f57`](https://togithub.com/mdx-js/mdx/commit/5c61f577) Fix resolve base in esbuild loader ([#​1854](https://togithub.com/mdx-js/mdx/issues/1854)) ##### `remark-mdx` - [`a5daaad`](https://togithub.com/mdx-js/mdx/commit/a5daaad6) Update `mdast-util-mdx` ([#​1925](https://togithub.com/mdx-js/mdx/issues/1925)) </details> #### New Contributors Thanks [@​redallen](https://togithub.com/redallen), [@​lonyele](https://togithub.com/lonyele), [@​PaulieScanlon](https://togithub.com/PaulieScanlon), [@​pd4d10](https://togithub.com/pd4d10), [@​Gowee](https://togithub.com/Gowee), [@​mskelton](https://togithub.com/mskelton), [@​ihupoo](https://togithub.com/ihupoo), [@​remcohaszing](https://togithub.com/remcohaszing), [@​loreanvictor](https://togithub.com/loreanvictor), [@​ChrisChinchilla](https://togithub.com/ChrisChinchilla), [@​glitteringkatie](https://togithub.com/glitteringkatie), [@​mvasilkov](https://togithub.com/mvasilkov), [@​jablko](https://togithub.com/jablko), [@​michaeloliverx](https://togithub.com/michaeloliverx), [@​yordis](https://togithub.com/yordis), [@​rodrez](https://togithub.com/rodrez), [@​imballinst](https://togithub.com/imballinst), [@​gaearon](https://togithub.com/gaearon). **Full Changelog**: mdx-js/mdx@v1.6.3...2.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/JellyfishSDK/jellyfish). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDAuNCIsInVwZGF0ZWRJblZlciI6IjMyLjI0MC40In0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mdx-js/react](https://mdxjs.com) ([source](https://togithub.com/mdx-js/mdx)) | [`^1.6.22` -> `^2.0.0`](https://renovatebot.com/diffs/npm/@mdx-js%2freact/1.6.22/2.2.1) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mdx-js/mdx</summary> ### [`v2.2.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.2.0...2.2.1) - [`e293eaf`](https://togithub.com/mdx-js/mdx/commit/e293eafa) Remove `assert/strict` for Node 14 **Full Changelog**: mdx-js/mdx@2.2.0...2.2.1 ### [`v2.2.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.5...2.2.0) ##### Features - [`641eb91`](https://togithub.com/mdx-js/mdx/commit/641eb917) Add support JSX development runtime by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2045](https://togithub.com/mdx-js/mdx/pull/2045) ##### Patches - [`3e0ab23`](https://togithub.com/mdx-js/mdx/commit/3e0ab236) Fix `@mdx-js/node-loader` from patching all runtimes ##### Docs - [`4a1415d`](https://togithub.com/mdx-js/mdx/commit/4a1415d2) Add note about use with `vite-plugin-react` - [`38c2d46`](https://togithub.com/mdx-js/mdx/commit/38c2d46a) Add note about `rollup@2` in Vite by [@​ryuujo1573](https://togithub.com/ryuujo1573) in [https://github.com/mdx-js/mdx/pull/2180](https://togithub.com/mdx-js/mdx/pull/2180) - [`caac5df`](https://togithub.com/mdx-js/mdx/commit/caac5df4) Update docs for `solid-js` supporting JSX - [`3a50cc3`](https://togithub.com/mdx-js/mdx/commit/3a50cc35) Add Solid to JSX section in Getting Started guide by [@​Djunnni](https://togithub.com/Djunnni) in [https://github.com/mdx-js/mdx/pull/2159](https://togithub.com/mdx-js/mdx/pull/2159) - [`1c83612`](https://togithub.com/mdx-js/mdx/commit/1c836126) Fix docs on types - [`2635caf`](https://togithub.com/mdx-js/mdx/commit/2635caf9) Replace deprecated Intellij plugin in docs by [@​slorber](https://togithub.com/slorber) in [https://github.com/mdx-js/mdx/pull/2178](https://togithub.com/mdx-js/mdx/pull/2178) **Full Changelog**: mdx-js/mdx@2.1.5...2.2.0 ### [`v2.1.5`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.5) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.4...2.1.5) - [`90fa493`](https://togithub.com/mdx-js/mdx/commit/90fa4935) Fix bug with (injected) custom elements and layouts **Full Changelog**: mdx-js/mdx@2.1.4...2.1.5 ### [`v2.1.4`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.4) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.3...2.1.4) ##### Patches - [`9d2aa80`](https://togithub.com/mdx-js/mdx/commit/9d2aa80b) Add file, positional info to crashes in webpack loader by [@​Twipped](https://togithub.com/Twipped) in [https://github.com/mdx-js/mdx/pull/2124](https://togithub.com/mdx-js/mdx/pull/2124) - [`478c78b`](https://togithub.com/mdx-js/mdx/commit/478c78b7) Fix support for Node loaders ##### Docs - [`56d7066`](https://togithub.com/mdx-js/mdx/commit/56d70660) Add Astro to site generator docs by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2118](https://togithub.com/mdx-js/mdx/pull/2118) - [`996771a`](https://togithub.com/mdx-js/mdx/commit/996771ae) Add missing `import` to site example by [@​elpddev](https://togithub.com/elpddev) in [https://github.com/mdx-js/mdx/pull/2115](https://togithub.com/mdx-js/mdx/pull/2115) **Full Changelog**: mdx-js/mdx@2.1.3...2.1.4 ### [`v2.1.3`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.3) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.2...2.1.3) ##### Core - [`9904838`](https://togithub.com/mdx-js/mdx/commit/9904838a) Fix rewriting of components for custom elements by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2101](https://togithub.com/mdx-js/mdx/pull/2101) ##### Docs - [`69a15b7`](https://togithub.com/mdx-js/mdx/commit/69a15b76) Add link to official `mdx-js/vscode-mdx` by [@​jasikpark](https://togithub.com/jasikpark) in [https://github.com/mdx-js/mdx/pull/2098](https://togithub.com/mdx-js/mdx/pull/2098) ##### Internal stuff that slightly improve stuff - [`529b96a`](https://togithub.com/mdx-js/mdx/commit/529b96aa) Replace `astring` with `estree-util-to-js` - [`7d8dc11`](https://togithub.com/mdx-js/mdx/commit/7d8dc11c) Add `id` field to esbuild messages - [`7f37b95`](https://togithub.com/mdx-js/mdx/commit/7f37b95b) Update `@types/estree-jsx` **Full Changelog**: mdx-js/mdx@2.1.2...2.1.3 ### [`v2.1.2`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.2) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.1...2.1.2) ##### Core - [`7bcd705`](https://togithub.com/mdx-js/mdx/commit/7bcd7059) Fix some performance by improving vdom diffing by [@​0phoff](https://togithub.com/0phoff) in [https://github.com/mdx-js/mdx/pull/2062](https://togithub.com/mdx-js/mdx/pull/2062) - [`f77c33f`](https://togithub.com/mdx-js/mdx/commit/f77c33f5) Fix support for `baseUrl` rewriting `import.meta.url` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2021](https://togithub.com/mdx-js/mdx/pull/2021) ##### Docs - [`3579aa3`](https://togithub.com/mdx-js/mdx/commit/3579aa38) Add use of tla in docs - [`366ddb4`](https://togithub.com/mdx-js/mdx/commit/366ddb4d) Update examples in readme - [`63fd208`](https://togithub.com/mdx-js/mdx/commit/63fd208d) Add `@next/mdx` to Next.js getting started guide by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2040](https://togithub.com/mdx-js/mdx/pull/2040) - [`7f9a5f4`](https://togithub.com/mdx-js/mdx/commit/7f9a5f4e) Add improved getting started for current CRA 5 integration by [@​userzimmermann](https://togithub.com/userzimmermann) in [https://github.com/mdx-js/mdx/pull/2010](https://togithub.com/mdx-js/mdx/pull/2010) - [`5fa82d8`](https://togithub.com/mdx-js/mdx/commit/5fa82d81) Add `recma-nextjs-static-props` to list of plugins by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2033](https://togithub.com/mdx-js/mdx/pull/2033) - [`3c51a43`](https://togithub.com/mdx-js/mdx/commit/3c51a434) Add `remark-mdx-math-enhanced` to list of plugins by [@​mattvague](https://togithub.com/mattvague) in [https://github.com/mdx-js/mdx/pull/2028](https://togithub.com/mdx-js/mdx/pull/2028) **Full Changelog**: mdx-js/mdx@2.1.1...2.1.2 ### [`v2.1.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.0...2.1.1) - [`e79fc2b`](https://togithub.com/mdx-js/mdx/commit/e79fc2be) [`0df684b`](https://togithub.com/mdx-js/mdx/commit/0df684bc) Fix to improve `_missingMdxReference` by [@​vlad-zhukov](https://togithub.com/vlad-zhukov) in [https://github.com/mdx-js/mdx/pull/1986](https://togithub.com/mdx-js/mdx/pull/1986), [https://github.com/mdx-js/mdx/pull/1988](https://togithub.com/mdx-js/mdx/pull/1988) **Full Changelog**: mdx-js/mdx@2.1.0...2.1.1 ### [`v2.1.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.0.0...2.1.0) ##### Core - [`aff6de4`](https://togithub.com/mdx-js/mdx/commit/aff6de4f) **minor** add support for passing options to `remark-rehype` by [@​stefanprobst](https://togithub.com/stefanprobst) in [https://github.com/mdx-js/mdx/pull/1935](https://togithub.com/mdx-js/mdx/pull/1935) - [`5d4355e`](https://togithub.com/mdx-js/mdx/commit/5d4355e4) **patch** replace `got` w/ `node-fetch` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/1978](https://togithub.com/mdx-js/mdx/pull/1978) - [`656a4ae`](https://togithub.com/mdx-js/mdx/commit/656a4ae5) **patch** remove use of `URL` from `url` by [@​zfben](https://togithub.com/zfben) in [https://github.com/mdx-js/mdx/pull/1976](https://togithub.com/mdx-js/mdx/pull/1976) - [`3f739a3`](https://togithub.com/mdx-js/mdx/commit/3f739a34) **patch** add missing dependency by [@​bensmithett](https://togithub.com/bensmithett) in [https://github.com/mdx-js/mdx/pull/1936](https://togithub.com/mdx-js/mdx/pull/1936) ##### Site - [`2886021`](https://togithub.com/mdx-js/mdx/commit/28860214) [`71bc6ff`](https://togithub.com/mdx-js/mdx/commit/71bc6ff9) [`4b514e1`](https://togithub.com/mdx-js/mdx/commit/4b514e1a) Fix playground by [@​homumado](https://togithub.com/homumado) in [https://github.com/mdx-js/mdx/pull/1975](https://togithub.com/mdx-js/mdx/pull/1975) and [https://github.com/mdx-js/mdx/pull/1931](https://togithub.com/mdx-js/mdx/pull/1931), and by [@​VitorLuizC](https://togithub.com/VitorLuizC) in [https://github.com/mdx-js/mdx/pull/1928](https://togithub.com/mdx-js/mdx/pull/1928) ##### Docs - [`e6f6bc8`](https://togithub.com/mdx-js/mdx/commit/e6f6bc85) Fix to improve example by [@​dawidjaniga](https://togithub.com/dawidjaniga) in [https://github.com/mdx-js/mdx/pull/1961](https://togithub.com/mdx-js/mdx/pull/1961) - [`e527ac7`](https://togithub.com/mdx-js/mdx/commit/e527ac75) Fix typo by [@​jbesomi](https://togithub.com/jbesomi) in [https://github.com/mdx-js/mdx/pull/1949](https://togithub.com/mdx-js/mdx/pull/1949) **New Contributors**: Thanks [@​VitorLuizC](https://togithub.com/VitorLuizC), [@​homumado](https://togithub.com/homumado), [@​bensmithett](https://togithub.com/bensmithett), [@​stefanprobst](https://togithub.com/stefanprobst), [@​jbesomi](https://togithub.com/jbesomi), [@​dawidjaniga](https://togithub.com/dawidjaniga), [@​zfben](https://togithub.com/zfben) **Full Changelog**: mdx-js/mdx@2.0.0...2.1.0 ### [`v2.0.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.0.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/v1.6.22...2.0.0) Welcome to MDX 2! See the of the website for everything: - MDX 2: https://mdxjs.com/blog/v2/ - Migrating: https://mdxjs.com/migrating/v2/ <details><summary>Changelog since last RC</summary> ##### `@mdx-js/mdx` - [`4a48f1f`](https://togithub.com/mdx-js/mdx/commit/4a48f1f4) Fix custom elements ([#​1911](https://togithub.com/mdx-js/mdx/issues/1911)) ##### `@mdx-js/react` - [`9ca9d40`](https://togithub.com/mdx-js/mdx/commit/9ca9d404) Fix unnecessary top-level context changes ([#​1924](https://togithub.com/mdx-js/mdx/issues/1924)) ##### `@mdx-js/loader` - [`e0b697a`](https://togithub.com/mdx-js/mdx/commit/e0b697ab) [`9d5501b`](https://togithub.com/mdx-js/mdx/commit/9d5501b2) Add improved webpack cache ([#​1912](https://togithub.com/mdx-js/mdx/issues/1912), [#​1916](https://togithub.com/mdx-js/mdx/issues/1916)) ##### `@mdx-js/esbuild` - [`5c61f57`](https://togithub.com/mdx-js/mdx/commit/5c61f577) Fix resolve base in esbuild loader ([#​1854](https://togithub.com/mdx-js/mdx/issues/1854)) ##### `remark-mdx` - [`a5daaad`](https://togithub.com/mdx-js/mdx/commit/a5daaad6) Update `mdast-util-mdx` ([#​1925](https://togithub.com/mdx-js/mdx/issues/1925)) </details> #### New Contributors Thanks [@​redallen](https://togithub.com/redallen), [@​lonyele](https://togithub.com/lonyele), [@​PaulieScanlon](https://togithub.com/PaulieScanlon), [@​pd4d10](https://togithub.com/pd4d10), [@​Gowee](https://togithub.com/Gowee), [@​mskelton](https://togithub.com/mskelton), [@​ihupoo](https://togithub.com/ihupoo), [@​remcohaszing](https://togithub.com/remcohaszing), [@​loreanvictor](https://togithub.com/loreanvictor), [@​ChrisChinchilla](https://togithub.com/ChrisChinchilla), [@​glitteringkatie](https://togithub.com/glitteringkatie), [@​mvasilkov](https://togithub.com/mvasilkov), [@​jablko](https://togithub.com/jablko), [@​michaeloliverx](https://togithub.com/michaeloliverx), [@​yordis](https://togithub.com/yordis), [@​rodrez](https://togithub.com/rodrez), [@​imballinst](https://togithub.com/imballinst), [@​gaearon](https://togithub.com/gaearon). **Full Changelog**: mdx-js/mdx@v1.6.3...2.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/defenseunicorns/zarf). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMTEuMSIsInVwZGF0ZWRJblZlciI6IjM0LjExMS4xIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mdx-js/react](https://mdxjs.com) ([source](https://togithub.com/mdx-js/mdx)) | [`^1.6.22` -> `^2.0.0`](https://renovatebot.com/diffs/npm/@mdx-js%2freact/1.6.22/2.2.1) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mdx-js/mdx</summary> ### [`v2.2.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.2.0...2.2.1) - [`e293eaf`](https://togithub.com/mdx-js/mdx/commit/e293eafa) Remove `assert/strict` for Node 14 **Full Changelog**: mdx-js/mdx@2.2.0...2.2.1 ### [`v2.2.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.5...2.2.0) ##### Features - [`641eb91`](https://togithub.com/mdx-js/mdx/commit/641eb917) Add support JSX development runtime by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2045](https://togithub.com/mdx-js/mdx/pull/2045) ##### Patches - [`3e0ab23`](https://togithub.com/mdx-js/mdx/commit/3e0ab236) Fix `@mdx-js/node-loader` from patching all runtimes ##### Docs - [`4a1415d`](https://togithub.com/mdx-js/mdx/commit/4a1415d2) Add note about use with `vite-plugin-react` - [`38c2d46`](https://togithub.com/mdx-js/mdx/commit/38c2d46a) Add note about `rollup@2` in Vite by [@​ryuujo1573](https://togithub.com/ryuujo1573) in [https://github.com/mdx-js/mdx/pull/2180](https://togithub.com/mdx-js/mdx/pull/2180) - [`caac5df`](https://togithub.com/mdx-js/mdx/commit/caac5df4) Update docs for `solid-js` supporting JSX - [`3a50cc3`](https://togithub.com/mdx-js/mdx/commit/3a50cc35) Add Solid to JSX section in Getting Started guide by [@​Djunnni](https://togithub.com/Djunnni) in [https://github.com/mdx-js/mdx/pull/2159](https://togithub.com/mdx-js/mdx/pull/2159) - [`1c83612`](https://togithub.com/mdx-js/mdx/commit/1c836126) Fix docs on types - [`2635caf`](https://togithub.com/mdx-js/mdx/commit/2635caf9) Replace deprecated Intellij plugin in docs by [@​slorber](https://togithub.com/slorber) in [https://github.com/mdx-js/mdx/pull/2178](https://togithub.com/mdx-js/mdx/pull/2178) **Full Changelog**: mdx-js/mdx@2.1.5...2.2.0 ### [`v2.1.5`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.5) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.4...2.1.5) - [`90fa493`](https://togithub.com/mdx-js/mdx/commit/90fa4935) Fix bug with (injected) custom elements and layouts **Full Changelog**: mdx-js/mdx@2.1.4...2.1.5 ### [`v2.1.4`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.4) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.3...2.1.4) ##### Patches - [`9d2aa80`](https://togithub.com/mdx-js/mdx/commit/9d2aa80b) Add file, positional info to crashes in webpack loader by [@​Twipped](https://togithub.com/Twipped) in [https://github.com/mdx-js/mdx/pull/2124](https://togithub.com/mdx-js/mdx/pull/2124) - [`478c78b`](https://togithub.com/mdx-js/mdx/commit/478c78b7) Fix support for Node loaders ##### Docs - [`56d7066`](https://togithub.com/mdx-js/mdx/commit/56d70660) Add Astro to site generator docs by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2118](https://togithub.com/mdx-js/mdx/pull/2118) - [`996771a`](https://togithub.com/mdx-js/mdx/commit/996771ae) Add missing `import` to site example by [@​elpddev](https://togithub.com/elpddev) in [https://github.com/mdx-js/mdx/pull/2115](https://togithub.com/mdx-js/mdx/pull/2115) **Full Changelog**: mdx-js/mdx@2.1.3...2.1.4 ### [`v2.1.3`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.3) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.2...2.1.3) ##### Core - [`9904838`](https://togithub.com/mdx-js/mdx/commit/9904838a) Fix rewriting of components for custom elements by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2101](https://togithub.com/mdx-js/mdx/pull/2101) ##### Docs - [`69a15b7`](https://togithub.com/mdx-js/mdx/commit/69a15b76) Add link to official `mdx-js/vscode-mdx` by [@​jasikpark](https://togithub.com/jasikpark) in [https://github.com/mdx-js/mdx/pull/2098](https://togithub.com/mdx-js/mdx/pull/2098) ##### Internal stuff that slightly improve stuff - [`529b96a`](https://togithub.com/mdx-js/mdx/commit/529b96aa) Replace `astring` with `estree-util-to-js` - [`7d8dc11`](https://togithub.com/mdx-js/mdx/commit/7d8dc11c) Add `id` field to esbuild messages - [`7f37b95`](https://togithub.com/mdx-js/mdx/commit/7f37b95b) Update `@types/estree-jsx` **Full Changelog**: mdx-js/mdx@2.1.2...2.1.3 ### [`v2.1.2`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.2) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.1...2.1.2) ##### Core - [`7bcd705`](https://togithub.com/mdx-js/mdx/commit/7bcd7059) Fix some performance by improving vdom diffing by [@​0phoff](https://togithub.com/0phoff) in [https://github.com/mdx-js/mdx/pull/2062](https://togithub.com/mdx-js/mdx/pull/2062) - [`f77c33f`](https://togithub.com/mdx-js/mdx/commit/f77c33f5) Fix support for `baseUrl` rewriting `import.meta.url` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2021](https://togithub.com/mdx-js/mdx/pull/2021) ##### Docs - [`3579aa3`](https://togithub.com/mdx-js/mdx/commit/3579aa38) Add use of tla in docs - [`366ddb4`](https://togithub.com/mdx-js/mdx/commit/366ddb4d) Update examples in readme - [`63fd208`](https://togithub.com/mdx-js/mdx/commit/63fd208d) Add `@next/mdx` to Next.js getting started guide by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2040](https://togithub.com/mdx-js/mdx/pull/2040) - [`7f9a5f4`](https://togithub.com/mdx-js/mdx/commit/7f9a5f4e) Add improved getting started for current CRA 5 integration by [@​userzimmermann](https://togithub.com/userzimmermann) in [https://github.com/mdx-js/mdx/pull/2010](https://togithub.com/mdx-js/mdx/pull/2010) - [`5fa82d8`](https://togithub.com/mdx-js/mdx/commit/5fa82d81) Add `recma-nextjs-static-props` to list of plugins by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2033](https://togithub.com/mdx-js/mdx/pull/2033) - [`3c51a43`](https://togithub.com/mdx-js/mdx/commit/3c51a434) Add `remark-mdx-math-enhanced` to list of plugins by [@​mattvague](https://togithub.com/mattvague) in [https://github.com/mdx-js/mdx/pull/2028](https://togithub.com/mdx-js/mdx/pull/2028) **Full Changelog**: mdx-js/mdx@2.1.1...2.1.2 ### [`v2.1.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.0...2.1.1) - [`e79fc2b`](https://togithub.com/mdx-js/mdx/commit/e79fc2be) [`0df684b`](https://togithub.com/mdx-js/mdx/commit/0df684bc) Fix to improve `_missingMdxReference` by [@​vlad-zhukov](https://togithub.com/vlad-zhukov) in [https://github.com/mdx-js/mdx/pull/1986](https://togithub.com/mdx-js/mdx/pull/1986), [https://github.com/mdx-js/mdx/pull/1988](https://togithub.com/mdx-js/mdx/pull/1988) **Full Changelog**: mdx-js/mdx@2.1.0...2.1.1 ### [`v2.1.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.0.0...2.1.0) ##### Core - [`aff6de4`](https://togithub.com/mdx-js/mdx/commit/aff6de4f) **minor** add support for passing options to `remark-rehype` by [@​stefanprobst](https://togithub.com/stefanprobst) in [https://github.com/mdx-js/mdx/pull/1935](https://togithub.com/mdx-js/mdx/pull/1935) - [`5d4355e`](https://togithub.com/mdx-js/mdx/commit/5d4355e4) **patch** replace `got` w/ `node-fetch` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/1978](https://togithub.com/mdx-js/mdx/pull/1978) - [`656a4ae`](https://togithub.com/mdx-js/mdx/commit/656a4ae5) **patch** remove use of `URL` from `url` by [@​zfben](https://togithub.com/zfben) in [https://github.com/mdx-js/mdx/pull/1976](https://togithub.com/mdx-js/mdx/pull/1976) - [`3f739a3`](https://togithub.com/mdx-js/mdx/commit/3f739a34) **patch** add missing dependency by [@​bensmithett](https://togithub.com/bensmithett) in [https://github.com/mdx-js/mdx/pull/1936](https://togithub.com/mdx-js/mdx/pull/1936) ##### Site - [`2886021`](https://togithub.com/mdx-js/mdx/commit/28860214) [`71bc6ff`](https://togithub.com/mdx-js/mdx/commit/71bc6ff9) [`4b514e1`](https://togithub.com/mdx-js/mdx/commit/4b514e1a) Fix playground by [@​homumado](https://togithub.com/homumado) in [https://github.com/mdx-js/mdx/pull/1975](https://togithub.com/mdx-js/mdx/pull/1975) and [https://github.com/mdx-js/mdx/pull/1931](https://togithub.com/mdx-js/mdx/pull/1931), and by [@​VitorLuizC](https://togithub.com/VitorLuizC) in [https://github.com/mdx-js/mdx/pull/1928](https://togithub.com/mdx-js/mdx/pull/1928) ##### Docs - [`e6f6bc8`](https://togithub.com/mdx-js/mdx/commit/e6f6bc85) Fix to improve example by [@​dawidjaniga](https://togithub.com/dawidjaniga) in [https://github.com/mdx-js/mdx/pull/1961](https://togithub.com/mdx-js/mdx/pull/1961) - [`e527ac7`](https://togithub.com/mdx-js/mdx/commit/e527ac75) Fix typo by [@​jbesomi](https://togithub.com/jbesomi) in [https://github.com/mdx-js/mdx/pull/1949](https://togithub.com/mdx-js/mdx/pull/1949) **New Contributors**: Thanks [@​VitorLuizC](https://togithub.com/VitorLuizC), [@​homumado](https://togithub.com/homumado), [@​bensmithett](https://togithub.com/bensmithett), [@​stefanprobst](https://togithub.com/stefanprobst), [@​jbesomi](https://togithub.com/jbesomi), [@​dawidjaniga](https://togithub.com/dawidjaniga), [@​zfben](https://togithub.com/zfben) **Full Changelog**: mdx-js/mdx@2.0.0...2.1.0 ### [`v2.0.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.0.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/v1.6.22...2.0.0) Welcome to MDX 2! See the of the website for everything: - MDX 2: https://mdxjs.com/blog/v2/ - Migrating: https://mdxjs.com/migrating/v2/ <details><summary>Changelog since last RC</summary> ##### `@mdx-js/mdx` - [`4a48f1f`](https://togithub.com/mdx-js/mdx/commit/4a48f1f4) Fix custom elements ([#​1911](https://togithub.com/mdx-js/mdx/issues/1911)) ##### `@mdx-js/react` - [`9ca9d40`](https://togithub.com/mdx-js/mdx/commit/9ca9d404) Fix unnecessary top-level context changes ([#​1924](https://togithub.com/mdx-js/mdx/issues/1924)) ##### `@mdx-js/loader` - [`e0b697a`](https://togithub.com/mdx-js/mdx/commit/e0b697ab) [`9d5501b`](https://togithub.com/mdx-js/mdx/commit/9d5501b2) Add improved webpack cache ([#​1912](https://togithub.com/mdx-js/mdx/issues/1912), [#​1916](https://togithub.com/mdx-js/mdx/issues/1916)) ##### `@mdx-js/esbuild` - [`5c61f57`](https://togithub.com/mdx-js/mdx/commit/5c61f577) Fix resolve base in esbuild loader ([#​1854](https://togithub.com/mdx-js/mdx/issues/1854)) ##### `remark-mdx` - [`a5daaad`](https://togithub.com/mdx-js/mdx/commit/a5daaad6) Update `mdast-util-mdx` ([#​1925](https://togithub.com/mdx-js/mdx/issues/1925)) </details> #### New Contributors Thanks [@​redallen](https://togithub.com/redallen), [@​lonyele](https://togithub.com/lonyele), [@​PaulieScanlon](https://togithub.com/PaulieScanlon), [@​pd4d10](https://togithub.com/pd4d10), [@​Gowee](https://togithub.com/Gowee), [@​mskelton](https://togithub.com/mskelton), [@​ihupoo](https://togithub.com/ihupoo), [@​remcohaszing](https://togithub.com/remcohaszing), [@​loreanvictor](https://togithub.com/loreanvictor), [@​ChrisChinchilla](https://togithub.com/ChrisChinchilla), [@​glitteringkatie](https://togithub.com/glitteringkatie), [@​mvasilkov](https://togithub.com/mvasilkov), [@​jablko](https://togithub.com/jablko), [@​michaeloliverx](https://togithub.com/michaeloliverx), [@​yordis](https://togithub.com/yordis), [@​rodrez](https://togithub.com/rodrez), [@​imballinst](https://togithub.com/imballinst), [@​gaearon](https://togithub.com/gaearon). **Full Changelog**: mdx-js/mdx@v1.6.3...2.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/defenseunicorns/zarf). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMTEuMSIsInVwZGF0ZWRJblZlciI6IjM0LjExMS4xIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mdx-js/react](https://mdxjs.com) ([source](https://togithub.com/mdx-js/mdx)) | [`^1.6.22` -> `^2.0.0`](https://renovatebot.com/diffs/npm/@mdx-js%2freact/1.6.22/2.3.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mdx-js/mdx (@​mdx-js/react)</summary> ### [`v2.3.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.3.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.2.1...2.3.0) ##### Add - [`12e63e8`](https://togithub.com/mdx-js/mdx/commit/12e63e83) Add improved support for non-React frameworks by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2255](https://togithub.com/mdx-js/mdx/pull/2255) ##### Fix - [`764d3a2`](https://togithub.com/mdx-js/mdx/commit/764d3a23) Remove whitespace between unraveled text nodes by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2252](https://togithub.com/mdx-js/mdx/pull/2252) - [`3911148`](https://togithub.com/mdx-js/mdx/commit/39111484) Add `module: node16` to `tsconfig.json` by [@​ChristianMurphy](https://togithub.com/ChristianMurphy) in [https://github.com/mdx-js/mdx/pull/2228](https://togithub.com/mdx-js/mdx/pull/2228) - [`600b12a`](https://togithub.com/mdx-js/mdx/commit/600b12ad) Add inferring of `development` options from webpack loader mode by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2201](https://togithub.com/mdx-js/mdx/pull/2201) ##### Community - [`f4d78be`](https://togithub.com/mdx-js/mdx/commit/f4d78be5) Add `recma-mdx-displayname` to list of plugins by [@​domdomegg](https://togithub.com/domdomegg) in [https://github.com/mdx-js/mdx/pull/2230](https://togithub.com/mdx-js/mdx/pull/2230) - [`1f551a4`](https://togithub.com/mdx-js/mdx/commit/1f551a4d) Add `remark-mdx-chartjs` to list of plugins by [@​pangelani](https://togithub.com/pangelani) in [https://github.com/mdx-js/mdx/pull/2221](https://togithub.com/mdx-js/mdx/pull/2221) ##### Misc - [`97b9d59`](https://togithub.com/mdx-js/mdx/commit/97b9d590) Refactor to improve docs by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2254](https://togithub.com/mdx-js/mdx/pull/2254) - [`8f85b30`](https://togithub.com/mdx-js/mdx/commit/8f85b300) Refactor `tsconfig.json` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2250](https://togithub.com/mdx-js/mdx/pull/2250) - [`a17ac87`](https://togithub.com/mdx-js/mdx/commit/a17ac87c) Refactor wording by [@​beeburrt](https://togithub.com/beeburrt) in [https://github.com/mdx-js/mdx/pull/2214](https://togithub.com/mdx-js/mdx/pull/2214) **Full Changelog**: mdx-js/mdx@2.2.1...2.3.0 ### [`v2.2.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.2.0...2.2.1) - [`e293eaf`](https://togithub.com/mdx-js/mdx/commit/e293eafa) Remove `assert/strict` for Node 14 **Full Changelog**: mdx-js/mdx@2.2.0...2.2.1 ### [`v2.2.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.5...2.2.0) ##### Features - [`641eb91`](https://togithub.com/mdx-js/mdx/commit/641eb917) Add support JSX development runtime by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2045](https://togithub.com/mdx-js/mdx/pull/2045) ##### Patches - [`3e0ab23`](https://togithub.com/mdx-js/mdx/commit/3e0ab236) Fix `@mdx-js/node-loader` from patching all runtimes ##### Docs - [`4a1415d`](https://togithub.com/mdx-js/mdx/commit/4a1415d2) Add note about use with `vite-plugin-react` - [`38c2d46`](https://togithub.com/mdx-js/mdx/commit/38c2d46a) Add note about `rollup@2` in Vite by [@​ryuujo1573](https://togithub.com/ryuujo1573) in [https://github.com/mdx-js/mdx/pull/2180](https://togithub.com/mdx-js/mdx/pull/2180) - [`caac5df`](https://togithub.com/mdx-js/mdx/commit/caac5df4) Update docs for `solid-js` supporting JSX - [`3a50cc3`](https://togithub.com/mdx-js/mdx/commit/3a50cc35) Add Solid to JSX section in Getting Started guide by [@​Djunnni](https://togithub.com/Djunnni) in [https://github.com/mdx-js/mdx/pull/2159](https://togithub.com/mdx-js/mdx/pull/2159) - [`1c83612`](https://togithub.com/mdx-js/mdx/commit/1c836126) Fix docs on types - [`2635caf`](https://togithub.com/mdx-js/mdx/commit/2635caf9) Replace deprecated Intellij plugin in docs by [@​slorber](https://togithub.com/slorber) in [https://github.com/mdx-js/mdx/pull/2178](https://togithub.com/mdx-js/mdx/pull/2178) **Full Changelog**: mdx-js/mdx@2.1.5...2.2.0 ### [`v2.1.5`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.5) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.4...2.1.5) - [`90fa493`](https://togithub.com/mdx-js/mdx/commit/90fa4935) Fix bug with (injected) custom elements and layouts **Full Changelog**: mdx-js/mdx@2.1.4...2.1.5 ### [`v2.1.4`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.4) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.3...2.1.4) ##### Patches - [`9d2aa80`](https://togithub.com/mdx-js/mdx/commit/9d2aa80b) Add file, positional info to crashes in webpack loader by [@​Twipped](https://togithub.com/Twipped) in [https://github.com/mdx-js/mdx/pull/2124](https://togithub.com/mdx-js/mdx/pull/2124) - [`478c78b`](https://togithub.com/mdx-js/mdx/commit/478c78b7) Fix support for Node loaders ##### Docs - [`56d7066`](https://togithub.com/mdx-js/mdx/commit/56d70660) Add Astro to site generator docs by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2118](https://togithub.com/mdx-js/mdx/pull/2118) - [`996771a`](https://togithub.com/mdx-js/mdx/commit/996771ae) Add missing `import` to site example by [@​elpddev](https://togithub.com/elpddev) in [https://github.com/mdx-js/mdx/pull/2115](https://togithub.com/mdx-js/mdx/pull/2115) **Full Changelog**: mdx-js/mdx@2.1.3...2.1.4 ### [`v2.1.3`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.3) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.2...2.1.3) ##### Core - [`9904838`](https://togithub.com/mdx-js/mdx/commit/9904838a) Fix rewriting of components for custom elements by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2101](https://togithub.com/mdx-js/mdx/pull/2101) ##### Docs - [`69a15b7`](https://togithub.com/mdx-js/mdx/commit/69a15b76) Add link to official `mdx-js/vscode-mdx` by [@​jasikpark](https://togithub.com/jasikpark) in [https://github.com/mdx-js/mdx/pull/2098](https://togithub.com/mdx-js/mdx/pull/2098) ##### Internal stuff that slightly improve stuff - [`529b96a`](https://togithub.com/mdx-js/mdx/commit/529b96aa) Replace `astring` with `estree-util-to-js` - [`7d8dc11`](https://togithub.com/mdx-js/mdx/commit/7d8dc11c) Add `id` field to esbuild messages - [`7f37b95`](https://togithub.com/mdx-js/mdx/commit/7f37b95b) Update `@types/estree-jsx` **Full Changelog**: mdx-js/mdx@2.1.2...2.1.3 ### [`v2.1.2`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.2) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.1...2.1.2) ##### Core - [`7bcd705`](https://togithub.com/mdx-js/mdx/commit/7bcd7059) Fix some performance by improving vdom diffing by [@​0phoff](https://togithub.com/0phoff) in [https://github.com/mdx-js/mdx/pull/2062](https://togithub.com/mdx-js/mdx/pull/2062) - [`f77c33f`](https://togithub.com/mdx-js/mdx/commit/f77c33f5) Fix support for `baseUrl` rewriting `import.meta.url` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2021](https://togithub.com/mdx-js/mdx/pull/2021) ##### Docs - [`3579aa3`](https://togithub.com/mdx-js/mdx/commit/3579aa38) Add use of tla in docs - [`366ddb4`](https://togithub.com/mdx-js/mdx/commit/366ddb4d) Update examples in readme - [`63fd208`](https://togithub.com/mdx-js/mdx/commit/63fd208d) Add `@next/mdx` to Next.js getting started guide by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2040](https://togithub.com/mdx-js/mdx/pull/2040) - [`7f9a5f4`](https://togithub.com/mdx-js/mdx/commit/7f9a5f4e) Add improved getting started for current CRA 5 integration by [@​userzimmermann](https://togithub.com/userzimmermann) in [https://github.com/mdx-js/mdx/pull/2010](https://togithub.com/mdx-js/mdx/pull/2010) - [`5fa82d8`](https://togithub.com/mdx-js/mdx/commit/5fa82d81) Add `recma-nextjs-static-props` to list of plugins by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2033](https://togithub.com/mdx-js/mdx/pull/2033) - [`3c51a43`](https://togithub.com/mdx-js/mdx/commit/3c51a434) Add `remark-mdx-math-enhanced` to list of plugins by [@​mattvague](https://togithub.com/mattvague) in [https://github.com/mdx-js/mdx/pull/2028](https://togithub.com/mdx-js/mdx/pull/2028) **Full Changelog**: mdx-js/mdx@2.1.1...2.1.2 ### [`v2.1.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.0...2.1.1) - [`e79fc2b`](https://togithub.com/mdx-js/mdx/commit/e79fc2be) [`0df684b`](https://togithub.com/mdx-js/mdx/commit/0df684bc) Fix to improve `_missingMdxReference` by [@​vlad-zhukov](https://togithub.com/vlad-zhukov) in [https://github.com/mdx-js/mdx/pull/1986](https://togithub.com/mdx-js/mdx/pull/1986), [https://github.com/mdx-js/mdx/pull/1988](https://togithub.com/mdx-js/mdx/pull/1988) **Full Changelog**: mdx-js/mdx@2.1.0...2.1.1 ### [`v2.1.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.0.0...2.1.0) ##### Core - [`aff6de4`](https://togithub.com/mdx-js/mdx/commit/aff6de4f) **minor** add support for passing options to `remark-rehype` by [@​stefanprobst](https://togithub.com/stefanprobst) in [https://github.com/mdx-js/mdx/pull/1935](https://togithub.com/mdx-js/mdx/pull/1935) - [`5d4355e`](https://togithub.com/mdx-js/mdx/commit/5d4355e4) **patch** replace `got` w/ `node-fetch` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/1978](https://togithub.com/mdx-js/mdx/pull/1978) - [`656a4ae`](https://togithub.com/mdx-js/mdx/commit/656a4ae5) **patch** remove use of `URL` from `url` by [@​zfben](https://togithub.com/zfben) in [https://github.com/mdx-js/mdx/pull/1976](https://togithub.com/mdx-js/mdx/pull/1976) - [`3f739a3`](https://togithub.com/mdx-js/mdx/commit/3f739a34) **patch** add missing dependency by [@​bensmithett](https://togithub.com/bensmithett) in [https://github.com/mdx-js/mdx/pull/1936](https://togithub.com/mdx-js/mdx/pull/1936) ##### Site - [`2886021`](https://togithub.com/mdx-js/mdx/commit/28860214) [`71bc6ff`](https://togithub.com/mdx-js/mdx/commit/71bc6ff9) [`4b514e1`](https://togithub.com/mdx-js/mdx/commit/4b514e1a) Fix playground by [@​homumado](https://togithub.com/homumado) in [https://github.com/mdx-js/mdx/pull/1975](https://togithub.com/mdx-js/mdx/pull/1975) and [https://github.com/mdx-js/mdx/pull/1931](https://togithub.com/mdx-js/mdx/pull/1931), and by [@​VitorLuizC](https://togithub.com/VitorLuizC) in [https://github.com/mdx-js/mdx/pull/1928](https://togithub.com/mdx-js/mdx/pull/1928) ##### Docs - [`e6f6bc8`](https://togithub.com/mdx-js/mdx/commit/e6f6bc85) Fix to improve example by [@​dawidjaniga](https://togithub.com/dawidjaniga) in [https://github.com/mdx-js/mdx/pull/1961](https://togithub.com/mdx-js/mdx/pull/1961) - [`e527ac7`](https://togithub.com/mdx-js/mdx/commit/e527ac75) Fix typo by [@​jbesomi](https://togithub.com/jbesomi) in [https://github.com/mdx-js/mdx/pull/1949](https://togithub.com/mdx-js/mdx/pull/1949) **New Contributors**: Thanks [@​VitorLuizC](https://togithub.com/VitorLuizC), [@​homumado](https://togithub.com/homumado), [@​bensmithett](https://togithub.com/bensmithett), [@​stefanprobst](https://togithub.com/stefanprobst), [@​jbesomi](https://togithub.com/jbesomi), [@​dawidjaniga](https://togithub.com/dawidjaniga), [@​zfben](https://togithub.com/zfben) **Full Changelog**: mdx-js/mdx@2.0.0...2.1.0 ### [`v2.0.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.0.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/v1.6.22...2.0.0) Welcome to MDX 2! See the of the website for everything: - MDX 2: https://mdxjs.com/blog/v2/ - Migrating: https://mdxjs.com/migrating/v2/ <details><summary>Changelog since last RC</summary> ##### `@mdx-js/mdx` - [`4a48f1f`](https://togithub.com/mdx-js/mdx/commit/4a48f1f4) Fix custom elements ([#​1911](https://togithub.com/mdx-js/mdx/issues/1911)) ##### `@mdx-js/react` - [`9ca9d40`](https://togithub.com/mdx-js/mdx/commit/9ca9d404) Fix unnecessary top-level context changes ([#​1924](https://togithub.com/mdx-js/mdx/issues/1924)) ##### `@mdx-js/loader` - [`e0b697a`](https://togithub.com/mdx-js/mdx/commit/e0b697ab) [`9d5501b`](https://togithub.com/mdx-js/mdx/commit/9d5501b2) Add improved webpack cache ([#​1912](https://togithub.com/mdx-js/mdx/issues/1912), [#​1916](https://togithub.com/mdx-js/mdx/issues/1916)) ##### `@mdx-js/esbuild` - [`5c61f57`](https://togithub.com/mdx-js/mdx/commit/5c61f577) Fix resolve base in esbuild loader ([#​1854](https://togithub.com/mdx-js/mdx/issues/1854)) ##### `remark-mdx` - [`a5daaad`](https://togithub.com/mdx-js/mdx/commit/a5daaad6) Update `mdast-util-mdx` ([#​1925](https://togithub.com/mdx-js/mdx/issues/1925)) </details> #### New Contributors Thanks [@​redallen](https://togithub.com/redallen), [@​lonyele](https://togithub.com/lonyele), [@​PaulieScanlon](https://togithub.com/PaulieScanlon), [@​pd4d10](https://togithub.com/pd4d10), [@​Gowee](https://togithub.com/Gowee), [@​mskelton](https://togithub.com/mskelton), [@​ihupoo](https://togithub.com/ihupoo), [@​remcohaszing](https://togithub.com/remcohaszing), [@​loreanvictor](https://togithub.com/loreanvictor), [@​ChrisChinchilla](https://togithub.com/ChrisChinchilla), [@​glitteringkatie](https://togithub.com/glitteringkatie), [@​mvasilkov](https://togithub.com/mvasilkov), [@​jablko](https://togithub.com/jablko), [@​michaeloliverx](https://togithub.com/michaeloliverx), [@​yordis](https://togithub.com/yordis), [@​rodrez](https://togithub.com/rodrez), [@​imballinst](https://togithub.com/imballinst), [@​gaearon](https://togithub.com/gaearon). **Full Changelog**: mdx-js/mdx@v1.6.3...2.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/sullivanpj/open-system).
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mdx-js/react](https://mdxjs.com) ([source](https://togithub.com/mdx-js/mdx)) | [`^1.6.22` -> `^2.0.0`](https://renovatebot.com/diffs/npm/@mdx-js%2freact/1.6.22/2.3.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mdx-js/mdx (@​mdx-js/react)</summary> ### [`v2.3.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.3.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.2.1...2.3.0) ##### Add - [`12e63e8`](https://togithub.com/mdx-js/mdx/commit/12e63e83) Add improved support for non-React frameworks by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2255](https://togithub.com/mdx-js/mdx/pull/2255) ##### Fix - [`764d3a2`](https://togithub.com/mdx-js/mdx/commit/764d3a23) Remove whitespace between unraveled text nodes by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2252](https://togithub.com/mdx-js/mdx/pull/2252) - [`3911148`](https://togithub.com/mdx-js/mdx/commit/39111484) Add `module: node16` to `tsconfig.json` by [@​ChristianMurphy](https://togithub.com/ChristianMurphy) in [https://github.com/mdx-js/mdx/pull/2228](https://togithub.com/mdx-js/mdx/pull/2228) - [`600b12a`](https://togithub.com/mdx-js/mdx/commit/600b12ad) Add inferring of `development` options from webpack loader mode by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2201](https://togithub.com/mdx-js/mdx/pull/2201) ##### Community - [`f4d78be`](https://togithub.com/mdx-js/mdx/commit/f4d78be5) Add `recma-mdx-displayname` to list of plugins by [@​domdomegg](https://togithub.com/domdomegg) in [https://github.com/mdx-js/mdx/pull/2230](https://togithub.com/mdx-js/mdx/pull/2230) - [`1f551a4`](https://togithub.com/mdx-js/mdx/commit/1f551a4d) Add `remark-mdx-chartjs` to list of plugins by [@​pangelani](https://togithub.com/pangelani) in [https://github.com/mdx-js/mdx/pull/2221](https://togithub.com/mdx-js/mdx/pull/2221) ##### Misc - [`97b9d59`](https://togithub.com/mdx-js/mdx/commit/97b9d590) Refactor to improve docs by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2254](https://togithub.com/mdx-js/mdx/pull/2254) - [`8f85b30`](https://togithub.com/mdx-js/mdx/commit/8f85b300) Refactor `tsconfig.json` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2250](https://togithub.com/mdx-js/mdx/pull/2250) - [`a17ac87`](https://togithub.com/mdx-js/mdx/commit/a17ac87c) Refactor wording by [@​beeburrt](https://togithub.com/beeburrt) in [https://github.com/mdx-js/mdx/pull/2214](https://togithub.com/mdx-js/mdx/pull/2214) **Full Changelog**: mdx-js/mdx@2.2.1...2.3.0 ### [`v2.2.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.2.0...2.2.1) - [`e293eaf`](https://togithub.com/mdx-js/mdx/commit/e293eafa) Remove `assert/strict` for Node 14 **Full Changelog**: mdx-js/mdx@2.2.0...2.2.1 ### [`v2.2.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.2.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.5...2.2.0) ##### Features - [`641eb91`](https://togithub.com/mdx-js/mdx/commit/641eb917) Add support JSX development runtime by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2045](https://togithub.com/mdx-js/mdx/pull/2045) ##### Patches - [`3e0ab23`](https://togithub.com/mdx-js/mdx/commit/3e0ab236) Fix `@mdx-js/node-loader` from patching all runtimes ##### Docs - [`4a1415d`](https://togithub.com/mdx-js/mdx/commit/4a1415d2) Add note about use with `vite-plugin-react` - [`38c2d46`](https://togithub.com/mdx-js/mdx/commit/38c2d46a) Add note about `rollup@2` in Vite by [@​ryuujo1573](https://togithub.com/ryuujo1573) in [https://github.com/mdx-js/mdx/pull/2180](https://togithub.com/mdx-js/mdx/pull/2180) - [`caac5df`](https://togithub.com/mdx-js/mdx/commit/caac5df4) Update docs for `solid-js` supporting JSX - [`3a50cc3`](https://togithub.com/mdx-js/mdx/commit/3a50cc35) Add Solid to JSX section in Getting Started guide by [@​Djunnni](https://togithub.com/Djunnni) in [https://github.com/mdx-js/mdx/pull/2159](https://togithub.com/mdx-js/mdx/pull/2159) - [`1c83612`](https://togithub.com/mdx-js/mdx/commit/1c836126) Fix docs on types - [`2635caf`](https://togithub.com/mdx-js/mdx/commit/2635caf9) Replace deprecated Intellij plugin in docs by [@​slorber](https://togithub.com/slorber) in [https://github.com/mdx-js/mdx/pull/2178](https://togithub.com/mdx-js/mdx/pull/2178) **Full Changelog**: mdx-js/mdx@2.1.5...2.2.0 ### [`v2.1.5`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.5) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.4...2.1.5) - [`90fa493`](https://togithub.com/mdx-js/mdx/commit/90fa4935) Fix bug with (injected) custom elements and layouts **Full Changelog**: mdx-js/mdx@2.1.4...2.1.5 ### [`v2.1.4`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.4) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.3...2.1.4) ##### Patches - [`9d2aa80`](https://togithub.com/mdx-js/mdx/commit/9d2aa80b) Add file, positional info to crashes in webpack loader by [@​Twipped](https://togithub.com/Twipped) in [https://github.com/mdx-js/mdx/pull/2124](https://togithub.com/mdx-js/mdx/pull/2124) - [`478c78b`](https://togithub.com/mdx-js/mdx/commit/478c78b7) Fix support for Node loaders ##### Docs - [`56d7066`](https://togithub.com/mdx-js/mdx/commit/56d70660) Add Astro to site generator docs by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2118](https://togithub.com/mdx-js/mdx/pull/2118) - [`996771a`](https://togithub.com/mdx-js/mdx/commit/996771ae) Add missing `import` to site example by [@​elpddev](https://togithub.com/elpddev) in [https://github.com/mdx-js/mdx/pull/2115](https://togithub.com/mdx-js/mdx/pull/2115) **Full Changelog**: mdx-js/mdx@2.1.3...2.1.4 ### [`v2.1.3`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.3) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.2...2.1.3) ##### Core - [`9904838`](https://togithub.com/mdx-js/mdx/commit/9904838a) Fix rewriting of components for custom elements by [@​bholmesdev](https://togithub.com/bholmesdev) in [https://github.com/mdx-js/mdx/pull/2101](https://togithub.com/mdx-js/mdx/pull/2101) ##### Docs - [`69a15b7`](https://togithub.com/mdx-js/mdx/commit/69a15b76) Add link to official `mdx-js/vscode-mdx` by [@​jasikpark](https://togithub.com/jasikpark) in [https://github.com/mdx-js/mdx/pull/2098](https://togithub.com/mdx-js/mdx/pull/2098) ##### Internal stuff that slightly improve stuff - [`529b96a`](https://togithub.com/mdx-js/mdx/commit/529b96aa) Replace `astring` with `estree-util-to-js` - [`7d8dc11`](https://togithub.com/mdx-js/mdx/commit/7d8dc11c) Add `id` field to esbuild messages - [`7f37b95`](https://togithub.com/mdx-js/mdx/commit/7f37b95b) Update `@types/estree-jsx` **Full Changelog**: mdx-js/mdx@2.1.2...2.1.3 ### [`v2.1.2`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.2) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.1...2.1.2) ##### Core - [`7bcd705`](https://togithub.com/mdx-js/mdx/commit/7bcd7059) Fix some performance by improving vdom diffing by [@​0phoff](https://togithub.com/0phoff) in [https://github.com/mdx-js/mdx/pull/2062](https://togithub.com/mdx-js/mdx/pull/2062) - [`f77c33f`](https://togithub.com/mdx-js/mdx/commit/f77c33f5) Fix support for `baseUrl` rewriting `import.meta.url` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/2021](https://togithub.com/mdx-js/mdx/pull/2021) ##### Docs - [`3579aa3`](https://togithub.com/mdx-js/mdx/commit/3579aa38) Add use of tla in docs - [`366ddb4`](https://togithub.com/mdx-js/mdx/commit/366ddb4d) Update examples in readme - [`63fd208`](https://togithub.com/mdx-js/mdx/commit/63fd208d) Add `@next/mdx` to Next.js getting started guide by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2040](https://togithub.com/mdx-js/mdx/pull/2040) - [`7f9a5f4`](https://togithub.com/mdx-js/mdx/commit/7f9a5f4e) Add improved getting started for current CRA 5 integration by [@​userzimmermann](https://togithub.com/userzimmermann) in [https://github.com/mdx-js/mdx/pull/2010](https://togithub.com/mdx-js/mdx/pull/2010) - [`5fa82d8`](https://togithub.com/mdx-js/mdx/commit/5fa82d81) Add `recma-nextjs-static-props` to list of plugins by [@​remcohaszing](https://togithub.com/remcohaszing) in [https://github.com/mdx-js/mdx/pull/2033](https://togithub.com/mdx-js/mdx/pull/2033) - [`3c51a43`](https://togithub.com/mdx-js/mdx/commit/3c51a434) Add `remark-mdx-math-enhanced` to list of plugins by [@​mattvague](https://togithub.com/mattvague) in [https://github.com/mdx-js/mdx/pull/2028](https://togithub.com/mdx-js/mdx/pull/2028) **Full Changelog**: mdx-js/mdx@2.1.1...2.1.2 ### [`v2.1.1`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.1) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.1.0...2.1.1) - [`e79fc2b`](https://togithub.com/mdx-js/mdx/commit/e79fc2be) [`0df684b`](https://togithub.com/mdx-js/mdx/commit/0df684bc) Fix to improve `_missingMdxReference` by [@​vlad-zhukov](https://togithub.com/vlad-zhukov) in [https://github.com/mdx-js/mdx/pull/1986](https://togithub.com/mdx-js/mdx/pull/1986), [https://github.com/mdx-js/mdx/pull/1988](https://togithub.com/mdx-js/mdx/pull/1988) **Full Changelog**: mdx-js/mdx@2.1.0...2.1.1 ### [`v2.1.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.1.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/2.0.0...2.1.0) ##### Core - [`aff6de4`](https://togithub.com/mdx-js/mdx/commit/aff6de4f) **minor** add support for passing options to `remark-rehype` by [@​stefanprobst](https://togithub.com/stefanprobst) in [https://github.com/mdx-js/mdx/pull/1935](https://togithub.com/mdx-js/mdx/pull/1935) - [`5d4355e`](https://togithub.com/mdx-js/mdx/commit/5d4355e4) **patch** replace `got` w/ `node-fetch` by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/mdx-js/mdx/pull/1978](https://togithub.com/mdx-js/mdx/pull/1978) - [`656a4ae`](https://togithub.com/mdx-js/mdx/commit/656a4ae5) **patch** remove use of `URL` from `url` by [@​zfben](https://togithub.com/zfben) in [https://github.com/mdx-js/mdx/pull/1976](https://togithub.com/mdx-js/mdx/pull/1976) - [`3f739a3`](https://togithub.com/mdx-js/mdx/commit/3f739a34) **patch** add missing dependency by [@​bensmithett](https://togithub.com/bensmithett) in [https://github.com/mdx-js/mdx/pull/1936](https://togithub.com/mdx-js/mdx/pull/1936) ##### Site - [`2886021`](https://togithub.com/mdx-js/mdx/commit/28860214) [`71bc6ff`](https://togithub.com/mdx-js/mdx/commit/71bc6ff9) [`4b514e1`](https://togithub.com/mdx-js/mdx/commit/4b514e1a) Fix playground by [@​homumado](https://togithub.com/homumado) in [https://github.com/mdx-js/mdx/pull/1975](https://togithub.com/mdx-js/mdx/pull/1975) and [https://github.com/mdx-js/mdx/pull/1931](https://togithub.com/mdx-js/mdx/pull/1931), and by [@​VitorLuizC](https://togithub.com/VitorLuizC) in [https://github.com/mdx-js/mdx/pull/1928](https://togithub.com/mdx-js/mdx/pull/1928) ##### Docs - [`e6f6bc8`](https://togithub.com/mdx-js/mdx/commit/e6f6bc85) Fix to improve example by [@​dawidjaniga](https://togithub.com/dawidjaniga) in [https://github.com/mdx-js/mdx/pull/1961](https://togithub.com/mdx-js/mdx/pull/1961) - [`e527ac7`](https://togithub.com/mdx-js/mdx/commit/e527ac75) Fix typo by [@​jbesomi](https://togithub.com/jbesomi) in [https://github.com/mdx-js/mdx/pull/1949](https://togithub.com/mdx-js/mdx/pull/1949) **New Contributors**: Thanks [@​VitorLuizC](https://togithub.com/VitorLuizC), [@​homumado](https://togithub.com/homumado), [@​bensmithett](https://togithub.com/bensmithett), [@​stefanprobst](https://togithub.com/stefanprobst), [@​jbesomi](https://togithub.com/jbesomi), [@​dawidjaniga](https://togithub.com/dawidjaniga), [@​zfben](https://togithub.com/zfben) **Full Changelog**: mdx-js/mdx@2.0.0...2.1.0 ### [`v2.0.0`](https://togithub.com/mdx-js/mdx/releases/tag/2.0.0) [Compare Source](https://togithub.com/mdx-js/mdx/compare/v1.6.22...2.0.0) Welcome to MDX 2! See the of the website for everything: - MDX 2: https://mdxjs.com/blog/v2/ - Migrating: https://mdxjs.com/migrating/v2/ <details><summary>Changelog since last RC</summary> ##### `@mdx-js/mdx` - [`4a48f1f`](https://togithub.com/mdx-js/mdx/commit/4a48f1f4) Fix custom elements ([#​1911](https://togithub.com/mdx-js/mdx/issues/1911)) ##### `@mdx-js/react` - [`9ca9d40`](https://togithub.com/mdx-js/mdx/commit/9ca9d404) Fix unnecessary top-level context changes ([#​1924](https://togithub.com/mdx-js/mdx/issues/1924)) ##### `@mdx-js/loader` - [`e0b697a`](https://togithub.com/mdx-js/mdx/commit/e0b697ab) [`9d5501b`](https://togithub.com/mdx-js/mdx/commit/9d5501b2) Add improved webpack cache ([#​1912](https://togithub.com/mdx-js/mdx/issues/1912), [#​1916](https://togithub.com/mdx-js/mdx/issues/1916)) ##### `@mdx-js/esbuild` - [`5c61f57`](https://togithub.com/mdx-js/mdx/commit/5c61f577) Fix resolve base in esbuild loader ([#​1854](https://togithub.com/mdx-js/mdx/issues/1854)) ##### `remark-mdx` - [`a5daaad`](https://togithub.com/mdx-js/mdx/commit/a5daaad6) Update `mdast-util-mdx` ([#​1925](https://togithub.com/mdx-js/mdx/issues/1925)) </details> #### New Contributors Thanks [@​redallen](https://togithub.com/redallen), [@​lonyele](https://togithub.com/lonyele), [@​PaulieScanlon](https://togithub.com/PaulieScanlon), [@​pd4d10](https://togithub.com/pd4d10), [@​Gowee](https://togithub.com/Gowee), [@​mskelton](https://togithub.com/mskelton), [@​ihupoo](https://togithub.com/ihupoo), [@​remcohaszing](https://togithub.com/remcohaszing), [@​loreanvictor](https://togithub.com/loreanvictor), [@​ChrisChinchilla](https://togithub.com/ChrisChinchilla), [@​glitteringkatie](https://togithub.com/glitteringkatie), [@​mvasilkov](https://togithub.com/mvasilkov), [@​jablko](https://togithub.com/jablko), [@​michaeloliverx](https://togithub.com/michaeloliverx), [@​yordis](https://togithub.com/yordis), [@​rodrez](https://togithub.com/rodrez), [@​imballinst](https://togithub.com/imballinst), [@​gaearon](https://togithub.com/gaearon). **Full Changelog**: mdx-js/mdx@v1.6.3...2.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/sullivanpj/open-system).
Resolves #2100
_component[#]_componentsobject whenjsx: true