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

   Bumps [markdown-to-jsx](https://github.com/quantizor/markdown-to-jsx) to 
7.4.7 and updates ancestor dependency 
[@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials).
 These dependencies need to be updated together.
   
   Updates `markdown-to-jsx` from 7.3.2 to 7.4.7
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/quantizor/markdown-to-jsx/releases";>markdown-to-jsx's 
releases</a>.</em></p>
   <blockquote>
   <h2>v7.4.7</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>7603248: Fix parsing isolation of individual table cells.</li>
   <li>f9328cc: Improved block html detection regex to handle certain edge 
cases that cause extreme slowness. Thank you <a 
href="https://github.com/devbrains-com";><code>@​devbrains-com</code></a> for 
the basis for this fix 🤝</li>
   </ul>
   <h2>v7.4.6</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>a9e5276: Browsers assign element with <code>id</code> to the global scope 
using the value as the variable name. E.g.: <code>&lt;h1 
id=&quot;analytics&quot;&gt;</code> can be referenced via 
<code>window.analytics</code>.
   This can be a problem when a name conflict happens. For instance, pages that 
expect <code>analytics.push()</code> to be a function will stop working if the 
an element with an <code>id</code> of <code>analytics</code> exists in the 
page.</p>
   <p>In this change, we export the <code>slugify</code> function so that users 
can easily augment it.
   This can be used to avoid variable name conflicts by giving the element a 
different <code>id</code>.</p>
   <pre lang="js"><code>import { slugify } from 'markdown-to-jsx';
   <p>options={{<br />
   slugify: str =&gt; {<br />
   let result = slugify(str)</p>
   <pre><code>return result ? '-' + str : result;
   </code></pre>
   <p>}<br />
   }}<br />
   </code></pre></p>
   </li>
   </ul>
   <h2>v7.4.5</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>f5a0079: fix: double newline between consecutive blockquote syntax 
creates separate blockquotes</p>
   <p>Previously, for consecutive blockquotes they were rendered as one:</p>
   <p><strong>Input</strong></p>
   <pre lang="md"><code>&gt; Block A.1
   &gt; Block A.2
   <p>&gt; Block B.1<br />
   </code></pre></p>
   <p><strong>Output</strong></p>
   <pre lang="html"><code>&lt;blockquote&gt;
     &lt;p&gt;Block A.1&lt;/p&gt;
     &lt;p&gt;Block A.2&lt;/p&gt;
     &lt;p&gt;Block.B.1&lt;/p&gt;
   </code></pre>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/quantizor/markdown-to-jsx/blob/main/CHANGELOG.md";>markdown-to-jsx's
 changelog</a>.</em></p>
   <blockquote>
   <h2>7.4.7</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>7603248: Fix parsing isolation of individual table cells.</li>
   <li>f9328cc: Improved block html detection regex to handle certain edge 
cases that cause extreme slowness. Thank you <a 
href="https://github.com/devbrains-com";><code>@​devbrains-com</code></a> for 
the basis for this fix 🤝</li>
   </ul>
   <h2>7.4.6</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>a9e5276: Browsers assign element with <code>id</code> to the global scope 
using the value as the variable name. E.g.: <code>&lt;h1 
id=&quot;analytics&quot;&gt;</code> can be referenced via 
<code>window.analytics</code>.
   This can be a problem when a name conflict happens. For instance, pages that 
expect <code>analytics.push()</code> to be a function will stop working if the 
an element with an <code>id</code> of <code>analytics</code> exists in the 
page.</p>
   <p>In this change, we export the <code>slugify</code> function so that users 
can easily augment it.
   This can be used to avoid variable name conflicts by giving the element a 
different <code>id</code>.</p>
   <pre lang="js"><code>import { slugify } from 'markdown-to-jsx';
   <p>options={{<br />
   slugify: str =&gt; {<br />
   let result = slugify(str)</p>
   <pre><code>return result ? '-' + str : result;
   </code></pre>
   <p>}<br />
   }}<br />
   </code></pre></p>
   </li>
   </ul>
   <h2>7.4.5</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>f5a0079: fix: double newline between consecutive blockquote syntax 
creates separate blockquotes</p>
   <p>Previously, for consecutive blockquotes they were rendered as one:</p>
   <p><strong>Input</strong></p>
   <pre lang="md"><code>&gt; Block A.1
   &gt; Block A.2
   <p>&gt; Block B.1<br />
   </code></pre></p>
   <p><strong>Output</strong></p>
   <pre lang="html"><code>&lt;blockquote&gt;
   </code></pre>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/quantizor/markdown-to-jsx/commit/acd970dc7be8f2390ed916fe1b1cf0874a8534f6";><code>acd970d</code></a>
 Version Packages (<a 
href="https://redirect.github.com/quantizor/markdown-to-jsx/issues/571";>#571</a>)</li>
   <li><a 
href="https://github.com/quantizor/markdown-to-jsx/commit/a502174ece06fec06433fff6dc8bee92ba0c4c46";><code>a502174</code></a>
 fix: handle incomplete table-like syntax better</li>
   <li><a 
href="https://github.com/quantizor/markdown-to-jsx/commit/7603248ac2359e214aad20ec1188711242724f76";><code>7603248</code></a>
 fix: table cell parsing isolation</li>
   <li><a 
href="https://github.com/quantizor/markdown-to-jsx/commit/f9328cccd56002e00736c457963afdedc2231715";><code>f9328cc</code></a>
 fix: adjusted block html regex to avoid perf issues</li>
   <li><a 
href="https://github.com/quantizor/markdown-to-jsx/commit/dcc457ecbe8c7ab55862fdfffab94dc35fe38868";><code>dcc457e</code></a>
 chore: revert prettier</li>
   <li><a 
href="https://github.com/quantizor/markdown-to-jsx/commit/ede3cd83af6783daeba84adf468c9597c0365580";><code>ede3cd8</code></a>
 Version Packages (<a 
href="https://redirect.github.com/quantizor/markdown-to-jsx/issues/567";>#567</a>)</li>
   <li><a 
href="https://github.com/quantizor/markdown-to-jsx/commit/a9e527655b788818d2edd49d6a230857cfc2730f";><code>a9e5276</code></a>
 Export <code>slugify</code> function (<a 
href="https://redirect.github.com/quantizor/markdown-to-jsx/issues/566";>#566</a>)</li>
   <li><a 
href="https://github.com/quantizor/markdown-to-jsx/commit/90121795e872d01cb61e703716ff49e81851ec6a";><code>9012179</code></a>
 chore: mark package as public</li>
   <li><a 
href="https://github.com/quantizor/markdown-to-jsx/commit/01cebca4a02ac7f34abb94d45fd41495803f2e5c";><code>01cebca</code></a>
 Version Packages (<a 
href="https://redirect.github.com/quantizor/markdown-to-jsx/issues/562";>#562</a>)</li>
   <li><a 
href="https://github.com/quantizor/markdown-to-jsx/commit/f5a0079c16a318e166199d2815631d18a0f3e6e6";><code>f5a0079</code></a>
 fix: consecutive blockquotes blocks (<a 
href="https://redirect.github.com/quantizor/markdown-to-jsx/issues/560";>#560</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/quantizor/markdown-to-jsx/compare/v7.3.2...v7.4.7";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@storybook/addon-essentials` from 8.1.11 to 8.3.5
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/storybookjs/storybook/releases";><code>@​storybook/addon-essentials</code>'s
 releases</a>.</em></p>
   <blockquote>
   <h2>v8.3.5</h2>
   <h2>8.3.5</h2>
   <ul>
   <li>CLI: Update the React Native init to include v8 dependencies - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29273";>#29273</a>, 
thanks <a href="https://github.com/dannyhw";><code>@​dannyhw</code></a>!</li>
   <li>Vitest plugin: Fix renamed export stories - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29250";>#29250</a>, 
thanks <a href="https://github.com/shilman";><code>@​shilman</code></a>!</li>
   </ul>
   <h2>v8.3.4</h2>
   <h2>8.3.4</h2>
   <ul>
   <li>Addon Test: Support story name as test description - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29147";>#29147</a>, 
thanks <a 
href="https://github.com/InfiniteXyy";><code>@​InfiniteXyy</code></a>!</li>
   <li>Addon-Interactions: Use ansi-to-html for colored test errors - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29110";>#29110</a>, 
thanks <a 
href="https://github.com/kasperpeulen";><code>@​kasperpeulen</code></a>!</li>
   </ul>
   <h2>v8.3.3</h2>
   <h2>8.3.3</h2>
   <ul>
   <li>CLI: Show constraints in error when getting depndencies - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29187";>#29187</a>, 
thanks <a 
href="https://github.com/andrasczeh";><code>@​andrasczeh</code></a>!</li>
   <li>React-Vite: Downgrade react-docgen-typescript plugin - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29184";>#29184</a>, 
thanks <a href="https://github.com/shilman";><code>@​shilman</code></a>!</li>
   <li>UI: Fix composed storybook TooltipLinkList bug where href isn't passed 
forward - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29175";>#29175</a>, 
thanks <a href="https://github.com/JSMike";><code>@​JSMike</code></a>!</li>
   </ul>
   <h2>v8.3.2</h2>
   <h2>8.3.2</h2>
   <ul>
   <li>CLI: Fix skip-install for stable latest releases - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29133";>#29133</a>, 
thanks <a 
href="https://github.com/valentinpalkovic";><code>@​valentinpalkovic</code></a>!</li>
   <li>Core: Do not add packageManager field to package.json during 
<code>storybook dev</code> - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29152";>#29152</a>, 
thanks <a 
href="https://github.com/valentinpalkovic";><code>@​valentinpalkovic</code></a>!</li>
   </ul>
   <h2>v8.3.1</h2>
   <h2>8.3.1</h2>
   <ul>
   <li>Angular: Fix sourceDecorator to apply excludeDecorators flag - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29069";>#29069</a>, 
thanks <a href="https://github.com/JSMike";><code>@​JSMike</code></a>!</li>
   <li>Core: Do not prebundle better-opn - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29137";>#29137</a>, 
thanks <a 
href="https://github.com/valentinpalkovic";><code>@​valentinpalkovic</code></a>!</li>
   <li>Core: Do not prebundle jsdoc-type-pratt-parser - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29134";>#29134</a>, 
thanks <a 
href="https://github.com/valentinpalkovic";><code>@​valentinpalkovic</code></a>!</li>
   <li>Next.js: Upgrade sass-loader from ^12 to ^13 - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29040";>#29040</a>, 
thanks <a 
href="https://github.com/HoncharenkoZhenya";><code>@​HoncharenkoZhenya</code></a>!</li>
   </ul>
   <h2>v8.3.0</h2>
   <h2>8.3.0</h2>
   <p>Fresh out of the oven! Storybook 8.3 brings you:</p>
   <ul>
   <li>⚡️ <strong>First-class Vitest integration</strong> to run stories as 
component tests</li>
   <li>🔼 <strong>Next.js-Vite framework</strong> for Vitest compatibility and 
better DX</li>
   <li>🗜️ <strong>Further reduced bundle size</strong> for a smaller install 
footprint</li>
   <li>🌐 <strong>Experimental Story globals</strong> to standardize stories for 
themes, viewports, and locales</li>
   <li>💯 <strong>Hundreds</strong> more improvements</li>
   </ul>
   <!-- raw HTML omitted -->
   <ul>
   <li>Addon Test: Improve messages and post install script handling - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29036";>#29036</a>, 
thanks <a href="https://github.com/yannbf";><code>@​yannbf</code></a>!</li>
   <li>Addon Viewport: Add default options via parameters - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/28944";>#28944</a>, 
thanks <a href="https://github.com/ndelangen";><code>@​ndelangen</code></a>!</li>
   <li>Addon Test: Add experimental vitest integration - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/28768";>#28768</a>, 
thanks <a 
href="https://github.com/kasperpeulen";><code>@​kasperpeulen</code></a>!</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md";><code>@​storybook/addon-essentials</code>'s
 changelog</a>.</em></p>
   <blockquote>
   <h2>8.3.5</h2>
   <ul>
   <li>CLI: Update the React Native init to include v8 dependencies - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29273";>#29273</a>, 
thanks <a href="https://github.com/dannyhw";><code>@​dannyhw</code></a>!</li>
   <li>Vitest plugin: Fix renamed export stories - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29250";>#29250</a>, 
thanks <a href="https://github.com/shilman";><code>@​shilman</code></a>!</li>
   </ul>
   <h2>8.3.4</h2>
   <ul>
   <li>Addon Test: Support story name as test description - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29147";>#29147</a>, 
thanks <a 
href="https://github.com/InfiniteXyy";><code>@​InfiniteXyy</code></a>!</li>
   <li>Addon-Interactions: Use ansi-to-html for colored test errors - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29110";>#29110</a>, 
thanks <a 
href="https://github.com/kasperpeulen";><code>@​kasperpeulen</code></a>!</li>
   </ul>
   <h2>8.3.3</h2>
   <ul>
   <li>CLI: Show constraints in error when getting depndencies - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29187";>#29187</a>, 
thanks <a 
href="https://github.com/andrasczeh";><code>@​andrasczeh</code></a>!</li>
   <li>React-Vite: Downgrade react-docgen-typescript plugin - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29184";>#29184</a>, 
thanks <a href="https://github.com/shilman";><code>@​shilman</code></a>!</li>
   <li>UI: Fix composed storybook TooltipLinkList bug where href isn't passed 
forward - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29175";>#29175</a>, 
thanks <a href="https://github.com/JSMike";><code>@​JSMike</code></a>!</li>
   </ul>
   <h2>8.3.2</h2>
   <ul>
   <li>CLI: Fix skip-install for stable latest releases - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29133";>#29133</a>, 
thanks <a 
href="https://github.com/valentinpalkovic";><code>@​valentinpalkovic</code></a>!</li>
   <li>Core: Do not add packageManager field to package.json during 
<code>storybook dev</code> - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29152";>#29152</a>, 
thanks <a 
href="https://github.com/valentinpalkovic";><code>@​valentinpalkovic</code></a>!</li>
   </ul>
   <h2>8.3.1</h2>
   <ul>
   <li>Angular: Fix sourceDecorator to apply excludeDecorators flag - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29069";>#29069</a>, 
thanks <a href="https://github.com/JSMike";><code>@​JSMike</code></a>!</li>
   <li>Core: Do not prebundle better-opn - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29137";>#29137</a>, 
thanks <a 
href="https://github.com/valentinpalkovic";><code>@​valentinpalkovic</code></a>!</li>
   <li>Core: Do not prebundle jsdoc-type-pratt-parser - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29134";>#29134</a>, 
thanks <a 
href="https://github.com/valentinpalkovic";><code>@​valentinpalkovic</code></a>!</li>
   <li>Next.js: Upgrade sass-loader from ^12 to ^13 - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29040";>#29040</a>, 
thanks <a 
href="https://github.com/HoncharenkoZhenya";><code>@​HoncharenkoZhenya</code></a>!</li>
   </ul>
   <h2>8.3.0</h2>
   <p>Fresh out of the oven! Storybook 8.3 brings you:</p>
   <ul>
   <li>⚡️ <strong>First-class Vitest integration</strong> to run stories as 
component tests</li>
   <li>🔼 <strong>Next.js-Vite framework</strong> for Vitest compatibility and 
better DX</li>
   <li>🗜️ <strong>Further reduced bundle size</strong> for a smaller install 
footprint</li>
   <li>🌐 <strong>Experimental Story globals</strong> to standardize stories for 
themes, viewports, and locales</li>
   <li>💯 <strong>Hundreds</strong> more improvements</li>
   </ul>
   <!-- raw HTML omitted -->
   <ul>
   <li>Addon Test: Improve messages and post install script handling - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29036";>#29036</a>, 
thanks <a href="https://github.com/yannbf";><code>@​yannbf</code></a>!</li>
   <li>Addon Viewport: Add default options via parameters - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/28944";>#28944</a>, 
thanks <a href="https://github.com/ndelangen";><code>@​ndelangen</code></a>!</li>
   <li>Addon Test: Add experimental vitest integration - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/28768";>#28768</a>, 
thanks <a 
href="https://github.com/kasperpeulen";><code>@​kasperpeulen</code></a>!</li>
   <li>Addon Test: Fix error message logic in set up file - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/28906";>#28906</a>, 
thanks <a href="https://github.com/yannbf";><code>@​yannbf</code></a>!</li>
   <li>Addon Test: Fix indentation of 'vitePluginNext' in generated Vitest 
config file - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/29011";>#29011</a>, 
thanks <a 
href="https://github.com/ghengeveld";><code>@​ghengeveld</code></a>!</li>
   <li>Addon Test: Fix postinstall file types - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/28978";>#28978</a>, 
thanks <a href="https://github.com/shilman";><code>@​shilman</code></a>!</li>
   <li>Addon Test: Fix tests potentially not existing in non-isolate mode - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/28993";>#28993</a>, 
thanks <a href="https://github.com/yannbf";><code>@​yannbf</code></a>!</li>
   <li>Addon Test: Improve transformation logic to avoid duplicate tests - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/28929";>#28929</a>, 
thanks <a href="https://github.com/yannbf";><code>@​yannbf</code></a>!</li>
   <li>Addon Test: Set default viewport if applicable - <a 
href="https://redirect.github.com/storybookjs/storybook/pull/28905";>#28905</a>, 
thanks <a href="https://github.com/yannbf";><code>@​yannbf</code></a>!</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd";><code>b9c7f90</code></a>
 Bump version from &quot;8.3.4&quot; to &quot;8.3.5&quot; [skip ci]</li>
   <li><a 
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b";><code>20ab887</code></a>
 Bump version from &quot;8.3.3&quot; to &quot;8.3.4&quot; [skip ci]</li>
   <li><a 
href="https://github.com/storybookjs/storybook/commit/e159e49a50eea9d7e41263f71612568178116274";><code>e159e49</code></a>
 Bump version from &quot;8.3.2&quot; to &quot;8.3.3&quot; [skip ci]</li>
   <li><a 
href="https://github.com/storybookjs/storybook/commit/ee03ab04c57e4457fbd553e88c84e7bb281a6ed3";><code>ee03ab0</code></a>
 Bump version from &quot;8.3.1&quot; to &quot;8.3.2&quot; [skip ci]</li>
   <li><a 
href="https://github.com/storybookjs/storybook/commit/43accbcf137b3b4952998f2dbb7f475b06b916c4";><code>43accbc</code></a>
 Bump version from &quot;8.3.0&quot; to &quot;8.3.1&quot; [skip ci]</li>
   <li><a 
href="https://github.com/storybookjs/storybook/commit/7e94ba615fc2c1863ca9130d8ed34ccd476b03c9";><code>7e94ba6</code></a>
 Bump version from &quot;8.3.0-beta.5&quot; to &quot;8.3.0&quot; [skip ci]</li>
   <li><a 
href="https://github.com/storybookjs/storybook/commit/bce7d703aa34d1e9825d38e0fad343d5ab13a118";><code>bce7d70</code></a>
 Bump version from &quot;8.3.0-beta.4&quot; to &quot;8.3.0-beta.5&quot; [skip 
ci]</li>
   <li><a 
href="https://github.com/storybookjs/storybook/commit/cce24a0ed08e392b841f554d7b1b75b3e1f18113";><code>cce24a0</code></a>
 Bump version from &quot;8.3.0-beta.3&quot; to &quot;8.3.0-beta.4&quot; [skip 
ci]</li>
   <li><a 
href="https://github.com/storybookjs/storybook/commit/daf615930c88106b37aaed95e5c34936c5e340d0";><code>daf6159</code></a>
 Bump version from &quot;8.3.0-beta.2&quot; to &quot;8.3.0-beta.3&quot; [skip 
ci]</li>
   <li><a 
href="https://github.com/storybookjs/storybook/commit/00c1524e0e393da445b3a5e2d82197d453907dcc";><code>00c1524</code></a>
 Bump version from &quot;8.3.0-beta.1&quot; to &quot;8.3.0-beta.2&quot; [skip 
ci]</li>
   <li>Additional commits viewable in <a 
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/addons/essentials";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   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)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/superset/network/alerts).
   
   </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