dependabot[bot] opened a new pull request, #1832:
URL: https://github.com/apache/datafusion-ballista/pull/1832

   Bumps [ratatui](https://github.com/ratatui/ratatui) from 0.30.0 to 0.30.1.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/ratatui/ratatui/releases";>ratatui's 
releases</a>.</em></p>
   <blockquote>
   <h2>ratatui-v0.30.1</h2>
   <blockquote>
   <p><em>&quot;Rats, we're rats; we're the rats.&quot; – <a 
href="https://www.youtube.com/watch?v=OXQwx1EolD8";>Rat Movie</a></em></p>
   </blockquote>
   <p>We are excited to announce the new version of <code>ratatui</code> - a 
Rust library that's all about cooking up TUIs πŸ‘¨β€πŸ³πŸ€</p>
   <p>✨ <strong>Release highlights</strong>: <a 
href="https://ratatui.rs/highlights/v0301/";>https://ratatui.rs/highlights/v0301/</a></p>
   <p>⚠️ List of breaking changes can be found <a 
href="https://github.com/ratatui/ratatui/blob/main/BREAKING-CHANGES.md";>here</a>.</p>
   <h3>Features</h3>
   <ul>
   <li>
   <p><a 
href="https://github.com/ratatui/ratatui/commit/74d6a846e1fab811fcdbcc09b09648cdca05c174";>74d6a84</a>
 <em>(block)</em> Support shadows by orhun in <a 
href="https://redirect.github.com/ratatui/ratatui/pull/2481";>#2481</a></p>
   <blockquote>
   <p>Introduce <code>Block::shadow(...)</code> with a new <code>Shadow</code> 
type that supports:</p>
   <ul>
   <li>presets: <code>overlay</code>,<code> block</code>, 
<code>light_shade</code>, <code>medium_shade</code>,
   <code>dark_shade</code></li>
   <li>custom symbols via <code>Shadow::symbol(...)</code></li>
   <li>custom effects via <code>Shadow::custom(...)</code></li>
   </ul>
   <pre lang="rust"><code>use ratatui::layout::Offset;
   use ratatui::style::Stylize;
   use ratatui::widgets::{Block, Shadow};
   <p>let popup = Block::bordered().title(&quot;Popup&quot;).shadow(<br />
   Shadow::dark_shade()<br />
   .black()<br />
   .on_white()<br />
   .offset(Offset::new(2, 1)),<br />
   );<br />
   </code></pre></p>
   <p>Results in:</p>
   <pre><code>β”ŒPopup─────┐
   β”‚content   β”‚β–’
   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜β–’
     β–’β–’β–’β–’β–’β–’β–’β–’β–’β–’β–’
   </code></pre>
   <p><img 
src="https://github.com/user-attachments/assets/103ddc17-6536-424c-a7a8-8895540dd145";
 alt="shadow" /></p>
   <p>fixes <a 
href="https://redirect.github.com/ratatui/ratatui/issues/1892";>#1892</a></p>
   <hr />
   </blockquote>
   </li>
   <li>
   <p><a 
href="https://github.com/ratatui/ratatui/commit/4d304206f45c96813dd9773a268b61d7d33d1f44";>4d30420</a>
 <em>(buffer)</em> Add <code>CellDiffOption::AlwaysUpdate</code> to force cell 
updates by sxyazi in <a 
href="https://redirect.github.com/ratatui/ratatui/pull/2480";>#2480</a></p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/ratatui/ratatui/blob/main/CHANGELOG.md";>ratatui's 
changelog</a>.</em></p>
   <blockquote>
   <h2><a 
href="https://github.com/ratatui/ratatui/releases/tag/ratatui-v0.30.1";>v0.30.1</a>
 - 2026-06-05</h2>
   <blockquote>
   <p><em>&quot;Rats, we're rats; we're the rats.&quot; – <a 
href="https://www.youtube.com/watch?v=OXQwx1EolD8";>Rat Movie</a></em></p>
   </blockquote>
   <p>We are excited to announce the new version of <code>ratatui</code> - a 
Rust library that's all about cooking up TUIs πŸ‘¨β€πŸ³πŸ€</p>
   <p>✨ <strong>Release highlights</strong>: <a 
href="https://ratatui.rs/highlights/v0301/";>https://ratatui.rs/highlights/v0301/</a></p>
   <p>⚠️ List of breaking changes can be found <a 
href="https://github.com/ratatui/ratatui/blob/main/BREAKING-CHANGES.md";>here</a>.</p>
   <h3>Features</h3>
   <ul>
   <li>
   <p><a 
href="https://github.com/ratatui/ratatui/commit/74d6a846e1fab811fcdbcc09b09648cdca05c174";>74d6a84</a>
 <em>(block)</em> Support shadows by <a 
href="https://github.com/orhun";><code>@​orhun</code></a> in <a 
href="https://redirect.github.com/ratatui/ratatui/pull/2481";>#2481</a></p>
   <blockquote>
   <p>Introduce <code>Block::shadow(...)</code> with a new <code>Shadow</code> 
type that supports:</p>
   <ul>
   <li>presets: <code>overlay</code>,<code> block</code>, 
<code>light_shade</code>, <code>medium_shade</code>,
   <code>dark_shade</code></li>
   <li>custom symbols via <code>Shadow::symbol(...)</code></li>
   <li>custom effects via <code>Shadow::custom(...)</code></li>
   </ul>
   <pre lang="rust"><code>use ratatui::layout::Offset;
   use ratatui::style::Stylize;
   use ratatui::widgets::{Block, Shadow};
   <p>let popup = Block::bordered().title(&quot;Popup&quot;).shadow(<br />
   Shadow::dark_shade()<br />
   .black()<br />
   .on_white()<br />
   .offset(Offset::new(2, 1)),<br />
   );<br />
   </code></pre></p>
   <p>Results in:</p>
   <pre><code>β”ŒPopup─────┐
   β”‚content   β”‚β–’
   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜β–’
     β–’β–’β–’β–’β–’β–’β–’β–’β–’β–’β–’
   </code></pre>
   <p><img 
src="https://github.com/user-attachments/assets/103ddc17-6536-424c-a7a8-8895540dd145";
 alt="shadow" /></p>
   <p>fixes <a 
href="https://redirect.github.com/ratatui/ratatui/issues/1892";>#1892</a></p>
   <hr />
   </blockquote>
   </li>
   <li>
   <p><a 
href="https://github.com/ratatui/ratatui/commit/4d304206f45c96813dd9773a268b61d7d33d1f44";>4d30420</a>
 <em>(buffer)</em> Add <code>CellDiffOption::AlwaysUpdate</code> to force cell 
updates by <a href="https://github.com/sxyazi";><code>@​sxyazi</code></a> in <a 
href="https://redirect.github.com/ratatui/ratatui/pull/2480";>#2480</a></p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/ratatui/ratatui/commit/1c3dbd1ff4fad2696543bf332a7e413d1bb69988";><code>1c3dbd1</code></a>
 chore(ratatui): unleash the rats v0.30.1 (<a 
href="https://redirect.github.com/ratatui/ratatui/issues/2580";>#2580</a>)</li>
   <li><a 
href="https://github.com/ratatui/ratatui/commit/df9f8974f441739e5067db472c2683d1b0c552d6";><code>df9f897</code></a>
 docs(ratatui): update the changelog for v0.30.1 (<a 
href="https://redirect.github.com/ratatui/ratatui/issues/2568";>#2568</a>)</li>
   <li><a 
href="https://github.com/ratatui/ratatui/commit/101a63e112188cbccef968053dee8bbd332cb8c3";><code>101a63e</code></a>
 feat(render): add function for applying buffer (<a 
href="https://redirect.github.com/ratatui/ratatui/issues/2566";>#2566</a>)</li>
   <li><a 
href="https://github.com/ratatui/ratatui/commit/0b03fe47f1a941fccf9dd694f2531157e312f330";><code>0b03fe4</code></a>
 chore(toml): migrate from taplo to tombi (<a 
href="https://redirect.github.com/ratatui/ratatui/issues/2501";>#2501</a>)</li>
   <li><a 
href="https://github.com/ratatui/ratatui/commit/6ef6a2ff897ae98aacd5b9c26cbd9ef0848ad45d";><code>6ef6a2f</code></a>
 build(deps): bump octocrab from 0.50.0 to 0.52.0 (<a 
href="https://redirect.github.com/ratatui/ratatui/issues/2577";>#2577</a>)</li>
   <li><a 
href="https://github.com/ratatui/ratatui/commit/83c157965759bf660eb81f47bdedf96b886b9fd3";><code>83c1579</code></a>
 docs(changelog): fix doubled words in two entries (<a 
href="https://redirect.github.com/ratatui/ratatui/issues/2578";>#2578</a>)</li>
   <li><a 
href="https://github.com/ratatui/ratatui/commit/09e3af7d9f46204fc5de37ad5844f397892b801e";><code>09e3af7</code></a>
 build(deps): bump compact_str from 0.9.0 to 0.9.1 (<a 
href="https://redirect.github.com/ratatui/ratatui/issues/2573";>#2573</a>)</li>
   <li><a 
href="https://github.com/ratatui/ratatui/commit/cd8cc4058204438994af8b33c33af56193b75e84";><code>cd8cc40</code></a>
 build(deps): bump unicode-segmentation from 1.13.2 to 1.13.3 (<a 
href="https://redirect.github.com/ratatui/ratatui/issues/2576";>#2576</a>)</li>
   <li><a 
href="https://github.com/ratatui/ratatui/commit/e64247d24f7b7d18a7eb57f28190c99b87d7a6de";><code>e64247d</code></a>
 build(deps): bump bitflags from 2.11.1 to 2.12.1 (<a 
href="https://redirect.github.com/ratatui/ratatui/issues/2575";>#2575</a>)</li>
   <li><a 
href="https://github.com/ratatui/ratatui/commit/04dec76dbda6fcaf5350680a88f01b391110745c";><code>04dec76</code></a>
 build(deps): bump crate-ci/typos from 1.46.3 to 1.47.0 (<a 
href="https://redirect.github.com/ratatui/ratatui/issues/2574";>#2574</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/ratatui/ratatui/compare/ratatui-v0.30.0...ratatui-v0.30.1";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ratatui&package-manager=cargo&previous-version=0.30.0&new-version=0.30.1)](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 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