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

   Updates the requirements on 
[rich-click](https://github.com/ewels/rich-click) to permit the latest version.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/ewels/rich-click/releases";>rich-click's 
releases</a>.</em></p>
   <blockquote>
   <h2>v1.9.0</h2>
   <blockquote>
   <p>[!WARNING]
   Version 1.9.0 deprecates support for a lot of old versions of things:</p>
   <ul>
   <li><strong>Python 3.7 support is removed.</strong> The minimum supported 
Python version is 3.8.</li>
   <li><strong>Click 7 support is removed.</strong> The minimum supported Click 
version is 8.0.</li>
   <li><strong>Rich 10 and 11 support is removed.</strong> The minimum 
supported Rich version is 12.</li>
   </ul>
   </blockquote>
   <blockquote>
   <p>[!WARNING]
   Version 1.9.0 introduces a minor breaking change:
   The <code>DEFAULT_STRING</code>, <code>ENVVAR_STRING</code>, 
<code>REQUIRED_STRING</code>, and <code>DEPRECATED_STRING</code> config options 
are now rendered with <code>Text.from_markup</code>.
   So for example, <code>REQUIRED_STRING = &quot;[required]&quot;</code> would 
be rendered as Rich markup.
   You must now escape the rich markup: <code>REQUIRED_STRING = 
&quot;\\[required]&quot;</code></p>
   </blockquote>
   <p><strong>Big changes:</strong></p>
   <ul>
   <li><strong>Themes!</strong> Check them out with <code>rich-click 
--themes</code>.</li>
   <li><strong>Typer support:</strong> <code>rich-click typer_app 
--help</code>.</li>
   <li><strong>RichPanels</strong> API introduced. This replaces the 
&quot;groups&quot; feature going forward (although groups will continue to be 
supported).
   <ul>
   <li><code>@click.option_panel()</code></li>
   <li><code>@click.command_panel()</code></li>
   </ul>
   </li>
   <li><strong>IDE tab completion support for decorators</strong>. Now you 
should no longer need to guess what goes in <code>@click.option()</code> or 
<code>@click.command(context_settings=...)</code> etc.</li>
   <li><strong>Help for arguments:</strong> <code>help=</code> is now a valid 
kwarg for <code>@click.argument()</code> decorator. See docs for more 
information.</li>
   </ul>
   <p><strong>Small changes:</strong></p>
   <ul>
   <li>&quot;Deprecated&quot; text properly handled and stylized in all 
places.</li>
   <li>Command aliases: 
<code>@cli.command(aliases=[&quot;foo&quot;])</code></li>
   <li>Improved <code>rich-click</code> CLI usability: improved patching and 
improved script detection+execution.</li>
   <li><code>context_settings={&quot;help_to_stderr&quot;: True}</code> 
support.</li>
   <li>Added suite of <code>padding_*</code> config options to control padding.
   <ul>
   <li>Better newline handling:
   <ul>
   <li>Unordered lists create newlines in help text, e.g. <code>&quot;\n- 
foo\n- bar&quot;</code> or <code>&quot;\n* foo\n* bar&quot;</code></li>
   <li>Newline control in help text with <code>text_paragraph_linebreaks</code> 
config option.</li>
   </ul>
   </li>
   </ul>
   </li>
   <li>Added a few <code>text_*</code> config options, including notably 
<code>text_kwargs</code> which can control code styles in Markdown.</li>
   </ul>
   <p><strong>Backend (mostly invisible) changes:</strong></p>
   <ul>
   <li>Overhauled our test suite to use <strong>inline-snapshot</strong>! 😁</li>
   <li>Improved test coverage and CI.</li>
   <li><code>typing_extensions</code> now only required for &lt; Python 
3.11.</li>
   <li><code>RichHelpFormatter</code> now defers printing by default if a user 
does not specify a Console. [<a 
href="https://redirect.github.com/ewels/rich-click/pull/231";>#231</a>] (With 
contributions from <a href="https://github.com/ofek";><code>@​ofek</code></a>)
   <ul>
   <li>This more closely aligns the <code>RichHelpFormatter</code> with how 
base Click works.</li>
   </ul>
   </li>
   <li>Significant refactors to help text rendering.</li>
   <li>Reintroduced deprecation warnings for a couple of features deprecated in 
1.8.</li>
   <li>There was an issue where the <code>rich.highlighter</code> module could 
load during CLI execution. We now assert in unit-tests that no 
<code>rich</code> modules are loaded during code execution, so going forward, 
<code>rich</code> imports should no longer ever be a side-effect of CLI 
execution.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/ewels/rich-click/blob/main/CHANGELOG.md";>rich-click's 
changelog</a>.</em></p>
   <blockquote>
   <h2>Version 1.9.0 (2025-09-16)</h2>
   <blockquote>
   <p>[!WARNING]
   Version 1.9.0 deprecates support for a lot of old versions of things:</p>
   <ul>
   <li><strong>Python 3.7 support is removed.</strong> The minimum supported 
Python version is 3.8.</li>
   <li><strong>Click 7 support is removed.</strong> The minimum supported Click 
version is 8.0.</li>
   <li><strong>Rich 10 and 11 support is removed.</strong> The minimum 
supported Rich version is 12.</li>
   </ul>
   </blockquote>
   <blockquote>
   <p>[!WARNING]
   Version 1.9.0 introduces a minor breaking change:
   The <code>DEFAULT_STRING</code>, <code>ENVVAR_STRING</code>, 
<code>REQUIRED_STRING</code>, and <code>DEPRECATED_STRING</code> config options 
are now rendered with <code>Text.from_markup</code>.
   So for example, <code>REQUIRED_STRING = &quot;[required]&quot;</code> would 
be rendered as Rich markup.
   You must now escape the rich markup: <code>REQUIRED_STRING = 
&quot;\\[required]&quot;</code></p>
   </blockquote>
   <p><strong>Big changes:</strong></p>
   <ul>
   <li><strong>Themes!</strong> Check them out with <code>rich-click 
--themes</code>.</li>
   <li><strong>Typer support:</strong> <code>rich-click typer_app 
--help</code>.</li>
   <li><strong>RichPanels</strong> API introduced. This replaces the 
&quot;groups&quot; feature going forward (although groups will continue to be 
supported).
   <ul>
   <li><code>@click.option_panel()</code></li>
   <li><code>@click.command_panel()</code></li>
   </ul>
   </li>
   <li><strong>IDE tab completion support for decorators</strong>. Now you 
should no longer need to guess what goes in <code>@click.option()</code> or 
<code>@click.command(context_settings=...)</code> etc.</li>
   <li><strong>Help for arguments:</strong> <code>help=</code> is now a valid 
kwarg for <code>@click.argument()</code> decorator. See docs for more 
information.</li>
   </ul>
   <p><strong>Small changes:</strong></p>
   <ul>
   <li>&quot;Deprecated&quot; text properly handled and stylized in all 
places.</li>
   <li>Command aliases: 
<code>@cli.command(aliases=[&quot;foo&quot;])</code></li>
   <li>Improved <code>rich-click</code> CLI usability: improved patching and 
improved script detection+execution.</li>
   <li><code>context_settings={&quot;help_to_stderr&quot;: True}</code> 
support.</li>
   <li>Added suite of <code>padding_*</code> config options to control padding.
   <ul>
   <li>Better newline handling:
   <ul>
   <li>Unordered lists create newlines in help text, e.g. <code>&quot;\n- 
foo\n- bar&quot;</code> or <code>&quot;\n* foo\n* bar&quot;</code></li>
   <li>Newline control in help text with <code>text_paragraph_linebreaks</code> 
config option.</li>
   </ul>
   </li>
   </ul>
   </li>
   <li>Added a few <code>text_*</code> config options, including notably 
<code>text_kwargs</code> which can control code styles in Markdown.</li>
   </ul>
   <p><strong>Backend (mostly invisible) changes:</strong></p>
   <ul>
   <li>Overhauled our test suite to use <strong>inline-snapshot</strong>! 😁</li>
   <li>Improved test coverage and CI.</li>
   <li><code>typing_extensions</code> now only required for &lt; Python 
3.11.</li>
   <li><code>RichHelpFormatter</code> now defers printing by default if a user 
does not specify a Console. [<a 
href="https://redirect.github.com/ewels/rich-click/pull/231";>#231</a>] (With 
contributions from <a href="https://github.com/ofek";><code>@​ofek</code></a>)
   <ul>
   <li>This more closely aligns the <code>RichHelpFormatter</code> with how 
base Click works.</li>
   </ul>
   </li>
   <li>Significant refactors to help text rendering.</li>
   <li>Reintroduced deprecation warnings for a couple of features deprecated in 
1.8.</li>
   <li>There was an issue where the <code>rich.highlighter</code> module could 
load during CLI execution. We now assert in unit-tests that no 
<code>rich</code> modules are loaded during code execution, so going forward, 
<code>rich</code> imports should no longer ever be a side-effect of CLI 
execution.</li>
   </ul>
   <h2>Version 1.8.9 (2025-05-19)</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/ewels/rich-click/commit/e13aa7556e7c78f16e815d89d24371ff489dda98";><code>e13aa75</code></a>
 push back 1 day</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/e13d8f1f2a971532bdceaf4839e7044d4ddfadee";><code>e13d8f1</code></a>
 Merge pull request <a 
href="https://redirect.github.com/ewels/rich-click/issues/289";>#289</a> from 
dwreeves/main</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/88dfa91bbb6eeeb82fad699a46b6f4addeb6f47b";><code>88dfa91</code></a>
 Merge pull request <a 
href="https://redirect.github.com/ewels/rich-click/issues/290";>#290</a> from 
dwreeves/hotfix-devnull</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/c9cafb32a75c79db068a2909157582516897bafd";><code>c9cafb3</code></a>
 should not be writing to devnull, should instead write to unused buffer</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/e23f40d4b19db0cf2fe7232fc0bb683ae7592bec";><code>e23f40d</code></a>
 1.9.0 full release</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/1a6c77a7f2153505719bdcb4f4d3343faf5967a6";><code>1a6c77a</code></a>
 Merge pull request <a 
href="https://redirect.github.com/ewels/rich-click/issues/287";>#287</a> from 
dwreeves/final-touches</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/2c7220d2ceb7d34684fd7237ebd17140fffd1d7f";><code>2c7220d</code></a>
 Merge branch 'final-touches' of github.com-dwreeves:dwreeves/rich-click into 
...</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/d6bd4855961265dfd64bb931165acfba062d0302";><code>d6bd485</code></a>
 fix esptool</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/53b73a9397b93ff6278fff4b2456433d9bbdac49";><code>53b73a9</code></a>
 Generate new screengrabs with rich-codex</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/e608f63461dfb21fffb2f75a641218603970dfd4";><code>e608f63</code></a>
 Additional clarity in docs</li>
   <li>Additional commits viewable in <a 
href="https://github.com/ewels/rich-click/compare/v1.7.1...v1.9.0";>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)
   
   
   </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]

Reply via email to