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

   Bumps the uv-dependency-updates group with 5 updates in the /dev/breeze 
directory:
   
   | Package | From | To |
   | --- | --- | --- |
   | [click](https://github.com/pallets/click) | `8.1.8` | `8.3.1` |
   | [prek](https://github.com/j178/prek) | `0.2.23` | `0.2.24` |
   | [psutil](https://github.com/giampaolo/psutil) | `7.1.3` | `7.2.0` |
   | [rich-click](https://github.com/ewels/rich-click) | `1.8.9` | `1.9.5` |
   | [boto3](https://github.com/boto/boto3) | `1.42.14` | `1.42.16` |
   
   
   Updates `click` from 8.1.8 to 8.3.1
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/pallets/click/releases";>click's releases</a>.</em></p>
   <blockquote>
   <h2>8.3.1</h2>
   <p>This is the Click 8.3.1 fix release, which fixes bugs but does not 
otherwise change behavior and should not result in breaking changes compared to 
the latest feature release.</p>
   <p>PyPI: <a 
href="https://pypi.org/project/click/8.3.1/";>https://pypi.org/project/click/8.3.1/</a>
   Changes: <a 
href="https://click.palletsprojects.com/page/changes/#version-8-3-1";>https://click.palletsprojects.com/page/changes/#version-8-3-1</a>
   Milestone: <a 
href="https://github.com/pallets/click/milestone/28";>https://github.com/pallets/click/milestone/28</a></p>
   <ul>
   <li>Don't discard pager arguments by correctly using 
<code>subprocess.Popen</code>. <a 
href="https://redirect.github.com/pallets/click/issues/3039";>#3039</a> <a 
href="https://redirect.github.com/pallets/click/issues/3055";>#3055</a></li>
   <li>Replace <code>Sentinel.UNSET</code> default values by <code>None</code> 
as they're passed through the <code>Context.invoke()</code> method. <a 
href="https://redirect.github.com/pallets/click/issues/3066";>#3066</a> <a 
href="https://redirect.github.com/pallets/click/issues/3065";>#3065</a> <a 
href="https://redirect.github.com/pallets/click/issues/3068";>#3068</a></li>
   <li>Fix conversion of <code>Sentinel.UNSET</code> happening too early, which 
caused incorrect behavior for multiple parameters using the same name. <a 
href="https://redirect.github.com/pallets/click/issues/3071";>#3071</a> <a 
href="https://redirect.github.com/pallets/click/issues/3079";>#3079</a></li>
   <li>Fix rendering when <code>prompt</code> and <code>confirm</code> 
parameter <code>prompt_suffix</code> is empty. <a 
href="https://redirect.github.com/pallets/click/issues/3019";>#3019</a> <a 
href="https://redirect.github.com/pallets/click/issues/3021";>#3021</a></li>
   <li>When <code>Sentinel.UNSET</code> is found during parsing, it will skip 
calls to <code>type_cast_value</code>. <a 
href="https://redirect.github.com/pallets/click/issues/3069";>#3069</a> <a 
href="https://redirect.github.com/pallets/click/issues/3090";>#3090</a></li>
   <li>Hide <code>Sentinel.UNSET</code> values as <code>None</code> when 
looking up for other parameters through the context inside parameter callbacks. 
<a href="https://redirect.github.com/pallets/click/issues/3136";>#3136</a> <a 
href="https://redirect.github.com/pallets/click/issues/3137";>#3137</a></li>
   </ul>
   <h2>8.3.0</h2>
   <p>This is the Click 8.3.0 feature release. A feature release may include 
new features, remove previously deprecated code, add new deprecation, or 
introduce potentially breaking changes.</p>
   <p>We encourage everyone to upgrade. You can read more about our <a 
href="https://palletsprojects.com/versions";>Version Support Policy</a> on our 
website.</p>
   <p>PyPI: <a 
href="https://pypi.org/project/click/8.3.0/";>https://pypi.org/project/click/8.3.0/</a>
   Changes:  <a 
href="https://click.palletsprojects.com/page/changes/#version-8-3-0";>https://click.palletsprojects.com/page/changes/#version-8-3-0</a>
   Milestone <a 
href="https://github.com/pallets/click/milestone/27";>https://github.com/pallets/click/milestone/27</a></p>
   <ul>
   <li>
   <p><strong>Improved flag option handling</strong>: Reworked the relationship 
between <code>flag_value</code>
   and <code>default</code> parameters for better consistency:</p>
   <ul>
   <li>The <code>default</code> parameter value is now preserved as-is and 
passed directly
   to CLI functions (no more unexpected transformations)</li>
   <li>Exception: flag options with <code>default=True</code> maintain backward 
compatibility
   by defaulting to their <code>flag_value</code></li>
   <li>The <code>default</code> parameter can now be any type 
(<code>bool</code>, <code>None</code>, etc.)</li>
   <li>Fixes inconsistencies reported in: <a 
href="https://redirect.github.com/pallets/click/issues/1992";>#1992</a>  <a 
href="https://redirect.github.com/pallets/click/issues/2514";>#2514</a> <a 
href="https://redirect.github.com/pallets/click/issues/2610";>#2610</a>
   <a href="https://redirect.github.com/pallets/click/issues/3024";>#3024</a>  
<a href="https://redirect.github.com/pallets/click/issues/3030";>#3030</a></li>
   </ul>
   </li>
   <li>
   <p>Allow <code>default</code> to be set on <code>Argument</code> for 
<code>nargs = -1</code>. <a 
href="https://redirect.github.com/pallets/click/issues/2164";>#2164</a>
   <a href="https://redirect.github.com/pallets/click/issues/3030";>#3030</a></p>
   </li>
   <li>
   <p>Show correct auto complete value for <code>nargs</code> option in 
combination with flag
   option <a 
href="https://redirect.github.com/pallets/click/issues/2813";>#2813</a></p>
   </li>
   <li>
   <p>Show correct auto complete value for nargs option in combination with 
flag option <a 
href="https://redirect.github.com/pallets/click/issues/2813";>#2813</a></p>
   </li>
   <li>
   <p>Fix handling of quoted and escaped parameters in Fish autocompletion. <a 
href="https://redirect.github.com/pallets/click/issues/2995";>#2995</a> <a 
href="https://redirect.github.com/pallets/click/issues/3013";>#3013</a></p>
   </li>
   <li>
   <p>Lazily import <code>shutil</code>.  <a 
href="https://redirect.github.com/pallets/click/issues/3023";>#3023</a></p>
   </li>
   <li>
   <p>Properly forward exception information to resources registered with
   <code>click.core.Context.with_resource()</code>. <a 
href="https://redirect.github.com/pallets/click/issues/2447";>#2447</a>  <a 
href="https://redirect.github.com/pallets/click/issues/3058";>#3058</a></p>
   </li>
   <li>
   <p>Fix regression related to EOF handling in CliRunner.  <a 
href="https://redirect.github.com/pallets/click/issues/2939";>#2939</a> <a 
href="https://redirect.github.com/pallets/click/issues/2940";>#2940</a></p>
   </li>
   </ul>
   <h2>8.2.2</h2>
   <p>This is the Click 8.2.2 fix release, which fixes bugs but does not 
otherwise change behavior and should not result in breaking changes compared to 
the latest feature release.</p>
   <p>PyPI: <a 
href="https://pypi.org/project/click/8.2.2/";>https://pypi.org/project/click/8.2.2/</a></p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/pallets/click/blob/main/CHANGES.rst";>click's 
changelog</a>.</em></p>
   <blockquote>
   <h2>Version 8.3.1</h2>
   <p>Released 2025-11-15</p>
   <ul>
   <li>Don't discard pager arguments by correctly using 
<code>subprocess.Popen</code>. :issue:<code>3039</code>
   :pr:<code>3055</code></li>
   <li>Replace <code>Sentinel.UNSET</code> default values by <code>None</code> 
as they're passed through
   the <code>Context.invoke()</code> method. :issue:<code>3066</code> 
:issue:<code>3065</code> :pr:<code>3068</code></li>
   <li>Fix conversion of <code>Sentinel.UNSET</code> happening too early, which 
caused incorrect
   behavior for multiple parameters using the same name. 
:issue:<code>3071</code> :pr:<code>3079</code></li>
   <li>Hide <code>Sentinel.UNSET</code> values as <code>None</code> when 
looking up for other parameters
   through the context inside parameter callbacks. :issue:<code>3136</code> 
:pr:<code>3137</code></li>
   <li>Fix rendering when <code>prompt</code> and <code>confirm</code> 
parameter <code>prompt_suffix</code> is
   empty. :issue:<code>3019</code> :pr:<code>3021</code></li>
   <li>When <code>Sentinel.UNSET</code> is found during parsing, it will skip 
calls to
   <code>type_cast_value</code>. :issue:<code>3069</code> 
:pr:<code>3090</code></li>
   </ul>
   <h2>Version 8.3.0</h2>
   <p>Released 2025-09-17</p>
   <ul>
   <li>
   <p><strong>Improved flag option handling</strong>: Reworked the relationship 
between <code>flag_value</code>
   and <code>default</code> parameters for better consistency:</p>
   <ul>
   <li>The <code>default</code> parameter value is now preserved as-is and 
passed directly
   to CLI functions (no more unexpected transformations)</li>
   <li>Exception: flag options with <code>default=True</code> maintain backward 
compatibility
   by defaulting to their <code>flag_value</code></li>
   <li>The <code>default</code> parameter can now be any type 
(<code>bool</code>, <code>None</code>, etc.)</li>
   <li>Fixes inconsistencies reported in: :issue:<code>1992</code> 
:issue:<code>2514</code> :issue:<code>2610</code>
   :issue:<code>3024</code> :pr:<code>3030</code></li>
   </ul>
   </li>
   <li>
   <p>Allow <code>default</code> to be set on <code>Argument</code> for 
<code>nargs = -1</code>. :issue:<code>2164</code>
   :pr:<code>3030</code></p>
   </li>
   <li>
   <p>Show correct auto complete value for <code>nargs</code> option in 
combination with flag
   option :issue:<code>2813</code></p>
   </li>
   <li>
   <p>Fix handling of quoted and escaped parameters in Fish autocompletion. 
:issue:<code>2995</code> :pr:<code>3013</code></p>
   </li>
   <li>
   <p>Lazily import <code>shutil</code>. :pr:<code>3023</code></p>
   </li>
   <li>
   <p>Properly forward exception information to resources registered with
   <code>click.core.Context.with_resource()</code>. :issue:<code>2447</code> 
:pr:<code>3058</code></p>
   </li>
   <li>
   <p>Fix regression related to EOF handling in <code>CliRunner</code>. 
:issue:<code>2939</code> :pr:<code>2940</code></p>
   </li>
   </ul>
   <h2>Version 8.2.2</h2>
   <p>Released 2025-07-31</p>
   <ul>
   <li>Fix reconciliation of <code>default</code>, <code>flag_value</code> and 
<code>type</code> parameters for
   flag options, as well as parsing and normalization of environment 
variables.</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/pallets/click/commit/1d038f270701498433cb432f54db89f95f07a845";><code>1d038f2</code></a>
 release version 8.3.1</li>
   <li><a 
href="https://github.com/pallets/click/commit/03f3889f505d0c9ca4f9d6810f9e4ba2799f2a66";><code>03f3889</code></a>
 Fix Ruff UP038 warning (<a 
href="https://redirect.github.com/pallets/click/issues/3141";>#3141</a>)</li>
   <li><a 
href="https://github.com/pallets/click/commit/3867781222cb63693ca67df94352d29d8e6e2770";><code>3867781</code></a>
 Fix Ruff UP038 warning</li>
   <li><a 
href="https://github.com/pallets/click/commit/b91bb9548a5617b1197add95e084d569f57149c3";><code>b91bb95</code></a>
 Provide altered context to callbacks to hide <code>UNSET</code> values as 
<code>None</code> (<a 
href="https://redirect.github.com/pallets/click/issues/3137";>#3137</a>)</li>
   <li><a 
href="https://github.com/pallets/click/commit/437e1e3295c7ec979fc1bf285bb402ca20d847e7";><code>437e1e3</code></a>
 Temporarily provide a fake context to the callback to hide <code>UNSET</code> 
values as ...</li>
   <li><a 
href="https://github.com/pallets/click/commit/ea70da487b05d6bb758d472a3a9ffab4a5b7fcd5";><code>ea70da4</code></a>
 Don't test using a file in docs/ (<a 
href="https://redirect.github.com/pallets/click/issues/3102";>#3102</a>)</li>
   <li><a 
href="https://github.com/pallets/click/commit/e27b307462b725722f620c69dd1d5509c032d18a";><code>e27b307</code></a>
 Make <code>uv run --all-extras pyright --verifytypes click</code> pass (<a 
href="https://redirect.github.com/pallets/click/issues/3072";>#3072</a>)</li>
   <li><a 
href="https://github.com/pallets/click/commit/a92c573f3195c9da3058eadf1735d38af186d22c";><code>a92c573</code></a>
 Fix test_edit to work with BSD sed (<a 
href="https://redirect.github.com/pallets/click/issues/3129";>#3129</a>)</li>
   <li><a 
href="https://github.com/pallets/click/commit/bd131e1ab63da2281d6dd9b8205ad2eb5a085468";><code>bd131e1</code></a>
 Fix test_edit to work with BSD sed</li>
   <li><a 
href="https://github.com/pallets/click/commit/0b5c6b75f617e6ee2f9f6dcd071b8a4bf183d1ed";><code>0b5c6b7</code></a>
 Add Best practices section  (<a 
href="https://redirect.github.com/pallets/click/issues/3127";>#3127</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/pallets/click/compare/8.1.8...8.3.1";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `prek` from 0.2.23 to 0.2.24
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/j178/prek/releases";>prek's 
releases</a>.</em></p>
   <blockquote>
   <h2>0.2.24</h2>
   <h2>Release Notes</h2>
   <p>Released on 2025-12-23.</p>
   <h3>Enhancements</h3>
   <ul>
   <li>Build and publish docker image to <code>ghcr.io/j178/prek</code> (<a 
href="https://redirect.github.com/j178/prek/pull/1253";>#1253</a>)</li>
   <li>Support git urls for rust dependencies (<a 
href="https://redirect.github.com/j178/prek/pull/1256";>#1256</a>)</li>
   </ul>
   <h3>Bug fixes</h3>
   <ul>
   <li>Ensure running <code>uv pip install</code> inside the remote repo path 
(<a href="https://redirect.github.com/j178/prek/pull/1262";>#1262</a>)</li>
   <li>Fix <code>check-added-large-files</code> for traced files (<a 
href="https://redirect.github.com/j178/prek/pull/1260";>#1260</a>)</li>
   <li>Respect <code>GIT_DIR</code> set by git (<a 
href="https://redirect.github.com/j178/prek/pull/1258";>#1258</a>)</li>
   </ul>
   <h3>Documentation</h3>
   <ul>
   <li>Add docker integration docs (<a 
href="https://redirect.github.com/j178/prek/pull/1254";>#1254</a>)</li>
   <li>Clarify <code>priority</code> scope across repos (<a 
href="https://redirect.github.com/j178/prek/pull/1251";>#1251</a>)</li>
   <li>Improve documentation for configurations (<a 
href="https://redirect.github.com/j178/prek/pull/1247";>#1247</a>)</li>
   <li>Render changelog in document site (<a 
href="https://redirect.github.com/j178/prek/pull/1248";>#1248</a>)</li>
   </ul>
   <h3>Contributors</h3>
   <ul>
   <li><a href="https://github.com/j178";><code>@​j178</code></a></li>
   <li><a href="https://github.com/branchv";><code>@​branchv</code></a></li>
   </ul>
   <h2>Install prek 0.2.24</h2>
   <h3>Install prebuilt binaries via shell script</h3>
   <pre lang="sh"><code>curl --proto '=https' --tlsv1.2 -LsSf 
https://github.com/j178/prek/releases/download/v0.2.24/prek-installer.sh | sh
   </code></pre>
   <h3>Install prebuilt binaries via powershell script</h3>
   <pre lang="sh"><code>powershell -ExecutionPolicy Bypass -c &quot;irm 
https://github.com/j178/prek/releases/download/v0.2.24/prek-installer.ps1 | 
iex&quot;
   </code></pre>
   <h3>Install prebuilt binaries via Homebrew</h3>
   <pre lang="sh"><code>brew install j178/tap/prek
   </code></pre>
   <h3>Install prebuilt binaries into your npm project</h3>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/j178/prek/blob/master/CHANGELOG.md";>prek's 
changelog</a>.</em></p>
   <blockquote>
   <h2>0.2.24</h2>
   <p>Released on 2025-12-23.</p>
   <h3>Enhancements</h3>
   <ul>
   <li>Build and publish docker image to <code>ghcr.io/j178/prek</code> (<a 
href="https://redirect.github.com/j178/prek/pull/1253";>#1253</a>)</li>
   <li>Support git urls for rust dependencies (<a 
href="https://redirect.github.com/j178/prek/pull/1256";>#1256</a>)</li>
   </ul>
   <h3>Bug fixes</h3>
   <ul>
   <li>Ensure running <code>uv pip install</code> inside the remote repo path 
(<a href="https://redirect.github.com/j178/prek/pull/1262";>#1262</a>)</li>
   <li>Fix <code>check-added-large-files</code> for traced files (<a 
href="https://redirect.github.com/j178/prek/pull/1260";>#1260</a>)</li>
   <li>Respect <code>GIT_DIR</code> set by git (<a 
href="https://redirect.github.com/j178/prek/pull/1258";>#1258</a>)</li>
   </ul>
   <h3>Documentation</h3>
   <ul>
   <li>Add docker integration docs (<a 
href="https://redirect.github.com/j178/prek/pull/1254";>#1254</a>)</li>
   <li>Clarify <code>priority</code> scope across repos (<a 
href="https://redirect.github.com/j178/prek/pull/1251";>#1251</a>)</li>
   <li>Improve documentation for configurations (<a 
href="https://redirect.github.com/j178/prek/pull/1247";>#1247</a>)</li>
   <li>Render changelog in document site (<a 
href="https://redirect.github.com/j178/prek/pull/1248";>#1248</a>)</li>
   </ul>
   <h3>Contributors</h3>
   <ul>
   <li><a href="https://github.com/j178";><code>@​j178</code></a></li>
   <li><a href="https://github.com/branchv";><code>@​branchv</code></a></li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/j178/prek/commit/d96e4d64ed36f8d2453e668961b3c7871aa8d690";><code>d96e4d6</code></a>
 Fix &quot;Check tag consistency&quot; in build-docker workflow (<a 
href="https://redirect.github.com/j178/prek/issues/1266";>#1266</a>)</li>
   <li><a 
href="https://github.com/j178/prek/commit/0278b59b768ca4cfbed92c5a6199c5d3d4488f1a";><code>0278b59</code></a>
 Bump version to 0.2.24 (<a 
href="https://redirect.github.com/j178/prek/issues/1265";>#1265</a>)</li>
   <li><a 
href="https://github.com/j178/prek/commit/19dcd5ce730ca960f7156b081a05024ebaba9538";><code>19dcd5c</code></a>
 Respect <code>GIT_DIR</code> set by git (<a 
href="https://redirect.github.com/j178/prek/issues/1258";>#1258</a>)</li>
   <li><a 
href="https://github.com/j178/prek/commit/f3de2b2ba6d0bad954e5cb73a7a379548bf41fc0";><code>f3de2b2</code></a>
 Ensure running <code>uv pip install</code> inside the remote repo path (<a 
href="https://redirect.github.com/j178/prek/issues/1262";>#1262</a>)</li>
   <li><a 
href="https://github.com/j178/prek/commit/164ede8870f029ade7552c2c78af1da542e4963a";><code>164ede8</code></a>
 Fix <code>check-added-large-files</code> for traced files (<a 
href="https://redirect.github.com/j178/prek/issues/1260";>#1260</a>)</li>
   <li><a 
href="https://github.com/j178/prek/commit/d1e05b67427d7689b66de0a19d58d48dcd00a2b6";><code>d1e05b6</code></a>
 Support git urls for rust dependencies (<a 
href="https://redirect.github.com/j178/prek/issues/1256";>#1256</a>)</li>
   <li><a 
href="https://github.com/j178/prek/commit/9e7b674c7fcebc920b5984b209192719a97c80e6";><code>9e7b674</code></a>
 Fix docker tags (<a 
href="https://redirect.github.com/j178/prek/issues/1257";>#1257</a>)</li>
   <li><a 
href="https://github.com/j178/prek/commit/02414edb5616219899ce978a43c1a01f98859f59";><code>02414ed</code></a>
 Render changelog in document site (<a 
href="https://redirect.github.com/j178/prek/issues/1248";>#1248</a>)</li>
   <li><a 
href="https://github.com/j178/prek/commit/885812e7ca710a2ad36aaea5f0582711149083aa";><code>885812e</code></a>
 Fix build-docker job permission (<a 
href="https://redirect.github.com/j178/prek/issues/1255";>#1255</a>)</li>
   <li><a 
href="https://github.com/j178/prek/commit/c8b46885bef1abbbbfacdd65319b8f138d76a6ee";><code>c8b4688</code></a>
 Add docker integration docs (<a 
href="https://redirect.github.com/j178/prek/issues/1254";>#1254</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/j178/prek/compare/v0.2.23...v0.2.24";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `psutil` from 7.1.3 to 7.2.0
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/giampaolo/psutil/blob/master/HISTORY.rst";>psutil's 
changelog</a>.</em></p>
   <blockquote>
   <h1>7.2.0</h1>
   <p>2025-12-23</p>
   <p><strong>Enhancements</strong></p>
   <ul>
   <li>1275_: new <code>heap_info()</code>_ and <code>heap_trim()</code>_ 
functions, providing direct
   access to the platform's native C heap allocator (glibc, mimalloc,
   libmalloc). Useful to create tools to detect memory leaks.</li>
   <li>2403_, [Linux]: publish wheels for Linux musl.</li>
   <li>2680_: unit tests are no longer installed / part of the distribution. 
They
   now live under <code>tests/</code> instead of <code>psutil/tests</code>.</li>
   </ul>
   <p><strong>Bug fixes</strong></p>
   <ul>
   <li>2684_, [FreeBSD], [critical]: compilation fails on FreeBSD 14 due to 
missing
   include.</li>
   <li>2691_, [Windows]: fix memory leak in <code>net_if_stats()</code>_ due to 
missing
   <code>Py_CLEAR</code>.</li>
   </ul>
   <p><strong>Compatibility notes</strong></p>
   <ul>
   <li>2680_: <code>import psutil.tests</code> no longer works (but it was 
never documented to
   begin with).</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/giampaolo/psutil/commit/704e218db7da14e98a54f2aa9f93372d5900e0b4";><code>704e218</code></a>
 Pre-release</li>
   <li><a 
href="https://github.com/giampaolo/psutil/commit/1a946cfe738045cecf031222cd5078da21946af4";><code>1a946cf</code></a>
 Take psleak from PYPI</li>
   <li><a 
href="https://github.com/giampaolo/psutil/commit/5085421cabed317d5e2f7164e6072b0be05ba4f1";><code>5085421</code></a>
 Use external psleak module for memleak tests (<a 
href="https://redirect.github.com/giampaolo/psutil/issues/2698";>#2698</a>)</li>
   <li><a 
href="https://github.com/giampaolo/psutil/commit/ac56e6ad0b7c08755a5542afdacb668ad164fd09";><code>ac56e6a</code></a>
 CI: don't cancel CI in progress on 1st failure</li>
   <li><a 
href="https://github.com/giampaolo/psutil/commit/10fe3d5e9372a504167b0a4df440ab949c0410fe";><code>10fe3d5</code></a>
 Merge branch 'master' of github.com:giampaolo/psutil</li>
   <li><a 
href="https://github.com/giampaolo/psutil/commit/ba507bd26bbfe5d1bdc45d606c8979f9e6f632cb";><code>ba507bd</code></a>
 Fix various CI errors</li>
   <li><a 
href="https://github.com/giampaolo/psutil/commit/d5a1398f0860c04883ef881c4760f32d14ef4abf";><code>d5a1398</code></a>
 Update cpu_count docs: clarify differences from os.cpu_count (<a 
href="https://redirect.github.com/giampaolo/psutil/issues/2696";>#2696</a>)</li>
   <li><a 
href="https://github.com/giampaolo/psutil/commit/556158f55fc3b2f1271b48c66c46912323cf8bec";><code>556158f</code></a>
 Refact memleak.py</li>
   <li><a 
href="https://github.com/giampaolo/psutil/commit/6eda0246faa556674e7060c37bc7b56f2f261f2f";><code>6eda024</code></a>
 Makefile: expand test-* targets</li>
   <li><a 
href="https://github.com/giampaolo/psutil/commit/b270dfaa3c11d0ab196fd89c909fd04b8fd2964a";><code>b270dfa</code></a>
 memleak.py: allow execute(*args) params + trim mem more aggressively</li>
   <li>Additional commits viewable in <a 
href="https://github.com/giampaolo/psutil/compare/release-7.1.3...release-7.2.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `rich-click` from 1.8.9 to 1.9.5
   <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.5</h2>
   <ul>
   <li>Fix <code>no_args_is_help</code> for Typer CLIs. [<a 
href="https://redirect.github.com/ewels/rich-click/issues/313";>#313</a>]</li>
   <li>Fix strange encoding issue on Windows in GH Actions [<a 
href="https://redirect.github.com/ewels/rich-click/issues/314";>#314</a>]</li>
   </ul>
   <h2>1.9.5.dev0</h2>
   <ul>
   <li>Fix <code>no_args_is_help</code> for Typer CLIs. [<a 
href="https://redirect.github.com/ewels/rich-click/issues/313";>#313</a>]</li>
   <li>Fix strange encoding issue on Windows in GH Actions [<a 
href="https://redirect.github.com/ewels/rich-click/issues/314";>#314</a>]</li>
   </ul>
   <h2>v1.9.4</h2>
   <ul>
   <li>Added Typer 0.20 support</li>
   <li>Fix lack of support for <code>flag_value=...</code>.</li>
   </ul>
   <h2>v1.9.3</h2>
   <ul>
   <li>Fixed subcommand discovery in help text. Behavior should now be the same 
as <code>1.8</code>. [<a 
href="https://redirect.github.com/ewels/rich-click/pull/304";>#304</a>]</li>
   </ul>
   <h2>v1.9.3.dev0</h2>
   <ul>
   <li>Fixed subcommand discovery in help text. Behavior should now be the same 
as <code>1.8</code>. [<a 
href="https://redirect.github.com/ewels/rich-click/pull/304";>#304</a>]</li>
   </ul>
   <h2>v1.9.2</h2>
   <ul>
   <li>Fixed legacy Windows rendering</li>
   <li>Fix issue with parent <code>click.Group</code> and child 
<code>rich_click.RichCommand</code> error formatter not resolving.</li>
   <li>Add headers to tables (by default these are not shown).</li>
   </ul>
   <h2>v1.9.2.dev0</h2>
   <ul>
   <li>Fixed legacy windows rendering</li>
   <li>Fix issue with parent <code>click.Group</code> and child 
<code>rich_click.RichCommand</code> error formatter not resolving.</li>
   <li>Add headers to tables (by default these are not shown).</li>
   </ul>
   <h2>v1.9.1</h2>
   <ul>
   <li>Fixed bug where running the <code>rich-click</code> CLI on a 
<code>@rich_click.argument()</code> sometimes caused arguments show up in the 
option panel when it shouldn't.</li>
   <li>Slightly reduced horizontal padding of the <code>modern</code> theme 
format.</li>
   <li>Fixed Click 8.3 compatibility with rendering defaults in help text.</li>
   </ul>
   <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>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </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.5 (2025-12-21)</h2>
   <ul>
   <li>Fix <code>no_args_is_help</code> for Typer CLIs. [<a 
href="https://redirect.github.com/ewels/rich-click/issues/313";>#313</a>]</li>
   <li>Fix strange encoding issue on Windows in GH Actions [<a 
href="https://redirect.github.com/ewels/rich-click/issues/314";>#314</a>]</li>
   </ul>
   <h2>Version 1.9.4 (2025-10-24)</h2>
   <ul>
   <li>Added Typer 0.20 support</li>
   <li>Fix lack of support for <code>flag_value=...</code>.</li>
   </ul>
   <h2>Version 1.9.3 (2025-10-09)</h2>
   <ul>
   <li>Fixed subcommand discovery in help text. Behavior should now be the same 
as <code>1.8</code>. [<a 
href="https://redirect.github.com/ewels/rich-click/pull/304";>#304</a>]</li>
   </ul>
   <h2>Version 1.9.2 (2025-10-04)</h2>
   <ul>
   <li>Fixed legacy windows rendering</li>
   <li>Fix issue with parent <code>click.Group</code> and child 
<code>rich_click.RichCommand</code> error formatter not resolving.</li>
   <li>Add headers to tables (by default these are not shown).</li>
   </ul>
   <h2>Version 1.9.1 (2025-09-20)</h2>
   <ul>
   <li>Fixed bug where running the <code>rich-click</code> CLI on a 
<code>@rich_click.argument()</code> sometimes caused arguments show up in the 
option panel when it shouldn't.</li>
   <li>Slightly reduced horizontal padding of the <code>modern</code> theme 
format.</li>
   <li>Fixed Click 8.3 compatibility with rendering defaults in help text.</li>
   </ul>
   <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>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/ewels/rich-click/commit/bab2cbdeb0a20c89f2b1f2e7e649a8d75a824a86";><code>bab2cbd</code></a>
 Merge pull request <a 
href="https://redirect.github.com/ewels/rich-click/issues/317";>#317</a> from 
dwreeves/1.9.5</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/5cb417753c75e0073c118a6aa25f888317bcf286";><code>5cb4177</code></a>
 finalize version bump</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/aa3e15fe25e047345e5e91c296eab5c2be881a75";><code>aa3e15f</code></a>
 Merge pull request <a 
href="https://redirect.github.com/ewels/rich-click/issues/316";>#316</a> from 
peterdragun/fix/use_encodedstringio</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/8c99252e914421ea5cd6893bf0bbca7cd1c566fc";><code>8c99252</code></a>
 fix: Use _EncodedStringIO for Rich Console detection</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/0137fe896b42f7a4076559ebdd7a0d5a52e0ab04";><code>0137fe8</code></a>
 fix timestamp</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/eee195ed8d6303e2fb44252fc4058e8d4fb14001";><code>eee195e</code></a>
 Merge pull request <a 
href="https://redirect.github.com/ewels/rich-click/issues/315";>#315</a> from 
dwreeves/dec2025-fixes</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/2b7488ddb29de38cb0aa7386a6ba1adcca740011";><code>2b7488d</code></a>
 Merge branch 'main' of github.com-dwreeves:ewels/rich-click into 
dec2025-fixes</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/77fb2fc0ded35a636145468ab8a5de203014969d";><code>77fb2fc</code></a>
 fix</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/d1a2e0014de11e44012d066070aab539a9aa3480";><code>d1a2e00</code></a>
 lock mypy</li>
   <li><a 
href="https://github.com/ewels/rich-click/commit/c5992fe6e46038c73aae5cd5167ea37e73c62198";><code>c5992fe</code></a>
 update</li>
   <li>Additional commits viewable in <a 
href="https://github.com/ewels/rich-click/compare/v1.8.9...v1.9.5";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `boto3` from 1.42.14 to 1.42.16
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/boto/boto3/commit/663b0db79814cf36ba410dfcfcf79335c042a9e4";><code>663b0db</code></a>
 Merge branch 'release-1.42.16'</li>
   <li><a 
href="https://github.com/boto/boto3/commit/251caad39e6a994e608e501441cb1e4d8e86845a";><code>251caad</code></a>
 Bumping version to 1.42.16</li>
   <li><a 
href="https://github.com/boto/boto3/commit/ca9a619edaedce7b8a566eec610c674689e7c30e";><code>ca9a619</code></a>
 Add changelog entries from botocore</li>
   <li><a 
href="https://github.com/boto/boto3/commit/19a9efb97712f46f697919da3f11652f962ec2e1";><code>19a9efb</code></a>
 Merge branch 'release-1.42.15'</li>
   <li><a 
href="https://github.com/boto/boto3/commit/910d5d605106e013bf573f29adbf655b0b5caec0";><code>910d5d6</code></a>
 Merge branch 'release-1.42.15' into develop</li>
   <li><a 
href="https://github.com/boto/boto3/commit/35be47565165e03fd5777eaa0f44a54d1cc84104";><code>35be475</code></a>
 Bumping version to 1.42.15</li>
   <li><a 
href="https://github.com/boto/boto3/commit/9552e305902cfcc633758fb49bdf8b51bc9b0f4e";><code>9552e30</code></a>
 Add changelog entries from botocore</li>
   <li><a 
href="https://github.com/boto/boto3/commit/851e4a542f0abde0b132fa0a76fd828e074006a9";><code>851e4a5</code></a>
 Fix flaky integration tests from resource name collisions (<a 
href="https://redirect.github.com/boto/boto3/issues/4685";>#4685</a>)</li>
   <li><a 
href="https://github.com/boto/boto3/commit/641153f75e678b53927f8327ea83ee571904bfb2";><code>641153f</code></a>
 Merge branch 'release-1.42.14' into develop</li>
   <li>See full diff in <a 
href="https://github.com/boto/boto3/compare/1.42.14...1.42.16";>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 <dependency name> major version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
major version (unless you unignore this specific dependency's major version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name> minor version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
minor version (unless you unignore this specific dependency's minor version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name>` will close this group update PR and 
stop Dependabot creating any more for the specific dependency (unless you 
unignore this specific dependency or upgrade to it yourself)
   - `@dependabot unignore <dependency name>` will remove all of the ignore 
conditions of the specified dependency
   - `@dependabot unignore <dependency name> <ignore condition>` will remove 
the ignore condition of the specified dependency and ignore conditions
   
   
   </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