dependabot[bot] opened a new pull request, #32938:
URL: https://github.com/apache/superset/pull/32938

   Bumps [react-markdown](https://github.com/remarkjs/react-markdown) from 
8.0.7 to 10.1.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/remarkjs/react-markdown/releases";>react-markdown's 
releases</a>.</em></p>
   <blockquote>
   <h2>10.1.0</h2>
   <h4>Add</h4>
   <ul>
   <li>939c667 Add <code>fallback</code> prop to <code>MarkdownHooks</code>
   by <a href="https://github.com/remcohaszing";><code>@​remcohaszing</code></a> 
in <a 
href="https://redirect.github.com/remarkjs/react-markdown/pull/897";>remarkjs/react-markdown#897</a></li>
   </ul>
   <h4>Fix</h4>
   <ul>
   <li>a40ae2e Fix race condition in <code>MarkdownHooks</code>
   by <a href="https://github.com/remcohaszing";><code>@​remcohaszing</code></a> 
in <a 
href="https://redirect.github.com/remarkjs/react-markdown/pull/896";>remarkjs/react-markdown#896</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/remarkjs/react-markdown/compare/10.0.1...10.1.0";>https://github.com/remarkjs/react-markdown/compare/10.0.1...10.1.0</a></p>
   <h2>10.0.1</h2>
   <ul>
   <li>7c17ede Fix TypeScript performance around components
   by <a href="https://github.com/remcohaszing";><code>@​remcohaszing</code></a> 
in <a 
href="https://redirect.github.com/remarkjs/react-markdown/pull/893";>remarkjs/react-markdown#893</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/remarkjs/react-markdown/compare/10.0.0...10.0.1";>https://github.com/remarkjs/react-markdown/compare/10.0.0...10.0.1</a></p>
   <h2>10.0.0</h2>
   <ul>
   <li>aaaa40b Remove support for <code>className</code> prop
   see <a 
href="https://github.com/remarkjs/react-markdown/blob/main/changelog.md#remove-classname";>“Remove
 className”</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/remarkjs/react-markdown/compare/9.1.0...10.0.0";>https://github.com/remarkjs/react-markdown/compare/9.1.0...10.0.0</a></p>
   <h2>9.1.0</h2>
   <ul>
   <li>6ce120e Add support for async plugins
   by <a href="https://github.com/wooorm";><code>@​wooorm</code></a> in <a 
href="https://redirect.github.com/remarkjs/react-markdown/pull/890";>remarkjs/react-markdown#890</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/remarkjs/react-markdown/compare/9.0.3...9.1.0";>https://github.com/remarkjs/react-markdown/compare/9.0.3...9.1.0</a></p>
   <h2>9.0.3</h2>
   <p>(same as 9.0.2 but now with d.ts files)</p>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/remarkjs/react-markdown/compare/9.0.2...9.0.3";>https://github.com/remarkjs/react-markdown/compare/9.0.2...9.0.3</a></p>
   <h2>9.0.2</h2>
   <h4>Types</h4>
   <ul>
   <li>b151a90 Fix types for React 19
   by <a href="https://github.com/remcohaszing";><code>@​remcohaszing</code></a> 
in <a 
href="https://redirect.github.com/remarkjs/react-markdown/pull/879";>remarkjs/react-markdown#879</a></li>
   <li>6962af7 Add declaration maps</li>
   <li>aa5933b Refactor to use <code>@import</code> to import types
   by <a href="https://github.com/remcohaszing";><code>@​remcohaszing</code></a> 
in <a 
href="https://redirect.github.com/remarkjs/react-markdown/pull/836";>remarkjs/react-markdown#836</a></li>
   </ul>
   <h4>Miscellaneous</h4>
   <ul>
   <li>9eb589e Fix typo in changelog
   by <a 
href="https://github.com/NicholasWilsonDEV";><code>@​NicholasWilsonDEV</code></a>
 in <a 
href="https://redirect.github.com/remarkjs/react-markdown/pull/874";>remarkjs/react-markdown#874</a></li>
   <li>515bf19 Fix typo</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/remarkjs/react-markdown/blob/main/changelog.md";>react-markdown's
 changelog</a>.</em></p>
   <blockquote>
   <!-- raw HTML omitted -->
   <h1>Changelog</h1>
   <p>All notable changes will be documented in this file.</p>
   <h2>10.0.0 - 2025-02-20</h2>
   <ul>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/aaaa40b";><code>aaaa40b</code></a>
   Remove support for <code>className</code> prop
   <strong>migrate</strong>: see “Remove <code>className</code>” below</li>
   </ul>
   <h3>Remove <code>className</code></h3>
   <p>The <code>className</code> prop was removed.
   If you want to add classes to some element that wraps the markdown
   you can explicitly write that element and add the class to it.
   You can then choose yourself which tag name to use and whether to add other
   props.</p>
   <p>Before:</p>
   <pre lang="js"><code>&lt;Markdown 
className=&quot;markdown-body&quot;&gt;{markdown}&lt;/Markdown&gt;
   </code></pre>
   <p>After:</p>
   <pre lang="js"><code>&lt;div className=&quot;markdown-body&quot;&gt;
     &lt;Markdown&gt;{markdown}&lt;/Markdown&gt;
   &lt;/div&gt;
   </code></pre>
   <h2>9.1.0 - 2025-02-20</h2>
   <ul>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/6ce120e";><code>6ce120e</code></a>
   Add support for async plugins</li>
   </ul>
   <h2>9.0.3 - 2025-01-06</h2>
   <p>(same as 9.0.2 but now with d.ts files)</p>
   <h2>9.0.2 - 2025-01-06</h2>
   <ul>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/b151a90";><code>b151a90</code></a>
   Fix types for React 19</li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/6962af7";><code>6962af7</code></a>
   Add declaration maps</li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/aa5933b";><code>aa5933b</code></a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/44d2e4a44b37461ab7778d6870c1a9eb36393ad2";><code>44d2e4a</code></a>
 10.1.0</li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/f2369cd7b7f3c8eb01b7ba1221cf305b7474716f";><code>f2369cd</code></a>
 Refactor docs</li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/26fdfe037516f9eee7e4c9472d633b795acc53e5";><code>26fdfe0</code></a>
 Update docs</li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/544bff69fbd406b397bed3bc411f7bb12ad82b08";><code>544bff6</code></a>
 Refactor code-style</li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/939c6671c9dbffccfe8e27bba256f62405031193";><code>939c667</code></a>
 Add <code>fallback</code> prop to <code>MarkdownHooks</code></li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/a40ae2e3131eca0421c43bc179b63f05be0bfbb9";><code>a40ae2e</code></a>
 Fix race condition in <code>MarkdownHooks</code></li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/ad7f37f0b407ed90663e0ff85dda246f7987b5a9";><code>ad7f37f</code></a>
 Add lifecycle tests for <code>MarkdownHooks</code></li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/2792c32cdd2e7fd38e5d79fe5761da521d3ca0ae";><code>2792c32</code></a>
 10.0.1</li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/7c17ede8e47f57785d0b82a7b42fffd8287bf3a3";><code>7c17ede</code></a>
 Fix performance around components</li>
   <li><a 
href="https://github.com/remarkjs/react-markdown/commit/21b47b9e7f916602987e1b85e7df7a688b9957ee";><code>21b47b9</code></a>
 Remove local use of <code>JSX</code></li>
   <li>Additional commits viewable in <a 
href="https://github.com/remarkjs/react-markdown/compare/8.0.7...10.1.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-markdown&package-manager=npm_and_yarn&previous-version=8.0.7&new-version=10.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to