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

   Bumps [click](https://github.com/pallets/click) from 8.2.1 to 8.4.0.
   <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.4.0</h2>
   <p>This is the Click 8.4.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.4.0/";>https://pypi.org/project/click/8.4.0/</a>
   Changes:  <a 
href="https://click.palletsprojects.com/page/changes/#version-8-4-0";>https://click.palletsprojects.com/page/changes/#version-8-4-0</a>
   Milestone <a 
href="https://github.com/pallets/click/milestone/30";>https://github.com/pallets/click/milestone/30</a></p>
   <ul>
   <li>
   <p><code>ParamType</code> typing improvements. <a 
href="https://redirect.github.com/pallets/click/issues/3371";>#3371</a></p>
   <ul>
   <li>:class:<code>ParamType</code> is now a generic abstract base class,
   parameterized by its converted value type.</li>
   <li>:meth:<code>~ParamType.convert</code> return types are narrowed on all
   concrete types (<code>str</code> for :class:<code>STRING</code>, 
<code>int</code> for
   :class:<code>INT</code>, etc.).</li>
   <li>:meth:<code>~ParamType.to_info_dict</code> returns specific
   :class:<code>~typing.TypedDict</code> subclasses instead of
   <code>dict[str, Any]</code>.</li>
   <li>:class:<code>CompositeParamType</code> and the number-range base are now
   generic with abstract methods.</li>
   </ul>
   </li>
   <li>
   <p>Refactor <code>convert_type</code> to extract type inference into a 
private
   <code>_guess_type</code> helper, and add :func:<code>typing.overload</code> 
signatures.
   <a href="https://redirect.github.com/pallets/click/issues/3372";>#3372</a></p>
   </li>
   <li>
   <p><code>Parameter</code> typing improvements. <a 
href="https://redirect.github.com/pallets/click/issues/2805";>#2805</a></p>
   <ul>
   <li>:class:<code>Parameter</code> is now an abstract base class, making 
explicit
   that it cannot be instantiated directly.</li>
   <li>:attr:<code>Parameter.name</code> is now <code>str</code> instead of 
<code>str | None</code>.
   When <code>expose_value=False</code>, the name is set to 
<code>&quot;&quot;</code> instead
   of <code>None</code>.</li>
   <li>The <code>ctx</code> parameter of 
:meth:<code>Parameter.get_error_hint</code> is now
   typed as <code>Context | None</code>, matching the runtime behavior.</li>
   </ul>
   </li>
   <li>
   <p>Split string values from <code>default_map</code> for parameters with 
<code>nargs &gt; 1</code>
   or :class:<code>Tuple</code> type, matching environment variable behavior.
   <a href="https://redirect.github.com/pallets/click/issues/2745";>#2745</a> <a 
href="https://redirect.github.com/pallets/click/issues/3364";>#3364</a></p>
   </li>
   <li>
   <p>Auto-detect <code>type=UNPROCESSED</code> for <code>flag_value</code> of 
non-basic types
   (not <code>str</code>, <code>int</code>, <code>float</code>, or 
<code>bool</code>), so programmer-provided
   Python objects like classes and enum members are passed through unchanged
   instead of being stringified. Previously <code>type=click.UNPROCESSED</code> 
had
   to be set explicitly. <a 
href="https://redirect.github.com/pallets/click/issues/2012";>#2012</a> <a 
href="https://redirect.github.com/pallets/click/issues/3363";>#3363</a></p>
   </li>
   <li>
   <p>The error hint now uses <code>Command.get_help_option_names</code> to pick
   non-shadowed help option names, so <code>Try '... -h'</code> no longer 
points to a
   subcommand option that shadows <code>-h</code>. All surviving names are shown
   (<code>-h/--help</code>). <a 
href="https://redirect.github.com/pallets/click/issues/2790";>#2790</a>  <a 
href="https://redirect.github.com/pallets/click/issues/3208";>#3208</a></p>
   </li>
   <li>
   <p>Fix readline functionality on non-Windows platforms. Prompt text is now
   passed directly to readline instead of being printed separately, allowing
   proper backspace, line editing, and line wrapping behavior. <a 
href="https://redirect.github.com/pallets/click/issues/2968";>#2968</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/pallets/click/blob/main/CHANGES.rst";>click's 
changelog</a>.</em></p>
   <blockquote>
   <h2>Version 8.4.0</h2>
   <p>Released 2026-05-17</p>
   <ul>
   <li>
   <p>:class:<code>ParamType</code> typing improvements. 
:pr:<code>3371</code></p>
   <ul>
   <li>:class:<code>ParamType</code> is now a generic abstract base class,
   parameterized by its converted value type.</li>
   <li>:meth:<code>~ParamType.convert</code> return types are narrowed on all
   concrete types (<code>str</code> for :class:<code>STRING</code>, 
<code>int</code> for
   :class:<code>INT</code>, etc.).</li>
   <li>:meth:<code>~ParamType.to_info_dict</code> returns specific
   :class:<code>~typing.TypedDict</code> subclasses instead of
   <code>dict[str, Any]</code>.</li>
   <li>:class:<code>CompositeParamType</code> and the number-range base are now
   generic with abstract methods.</li>
   </ul>
   </li>
   <li>
   <p>Refactor <code>convert_type</code> to extract type inference into a 
private
   <code>_guess_type</code> helper, and add :func:<code>typing.overload</code> 
signatures.
   :pr:<code>3372</code></p>
   </li>
   <li>
   <p>:class:<code>Parameter</code> typing improvements. 
:pr:<code>2805</code></p>
   <ul>
   <li>:class:<code>Parameter</code> is now an abstract base class, making 
explicit
   that it cannot be instantiated directly.</li>
   <li>:attr:<code>Parameter.name</code> is now <code>str</code> instead of 
<code>str | None</code>.
   When <code>expose_value=False</code>, the name is set to 
<code>&quot;&quot;</code> instead
   of <code>None</code>.</li>
   <li>The <code>ctx</code> parameter of 
:meth:<code>Parameter.get_error_hint</code> is now
   typed as <code>Context | None</code>, matching the runtime behavior.</li>
   </ul>
   </li>
   <li>
   <p>Split string values from <code>default_map</code> for parameters with 
<code>nargs &gt; 1</code>
   or :class:<code>Tuple</code> type, matching environment variable behavior.
   :issue:<code>2745</code> :pr:<code>3364</code></p>
   </li>
   <li>
   <p>Auto-detect <code>type=UNPROCESSED</code> for <code>flag_value</code> of 
non-basic types
   (not <code>str</code>, <code>int</code>, <code>float</code>, or 
<code>bool</code>), so programmer-provided
   Python objects like classes and enum members are passed through unchanged
   instead of being stringified. Previously <code>type=click.UNPROCESSED</code> 
had
   to be set explicitly. :issue:<code>2012</code> :pr:<code>3363</code></p>
   </li>
   <li>
   <p>The error hint now uses :meth:<code>Command.get_help_option_names</code> 
to pick
   non-shadowed help option names, so <code>Try '... -h'</code> no longer 
points to a
   subcommand option that shadows <code>-h</code>. All surviving names are shown
   (<code>-h/--help</code>). :issue:<code>2790</code> :pr:<code>3208</code></p>
   </li>
   <li>
   <p>Fix readline functionality on non-Windows platforms. Prompt text is now
   passed directly to readline instead of being printed separately, allowing
   proper backspace, line editing, and line wrapping behavior. 
:issue:<code>2968</code>
   :pr:<code>2969</code></p>
   </li>
   <li>
   <p>Use :func:<code>os.startfile</code> on Windows to open URLs in 
:func:<code>open_url</code>,
   replacing the <code>start</code> built-in which cannot be invoked without
   <code>shell=True</code>. :issue:<code>3164</code> :pr:<code>3186</code></p>
   </li>
   <li>
   <p>Fix Fish shell completion errors when option help text contains newlines.
   :issue:<code>3043</code> :pr:<code>3126</code></p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/pallets/click/commit/41f410fb7528305d7e87c8cfa704f6c2456f57fc";><code>41f410f</code></a>
 Release 8.4.0</li>
   <li><a 
href="https://github.com/pallets/click/commit/e3e69e3bf8d749ac1a632f2ece4d38ec7f6588f5";><code>e3e69e3</code></a>
 Add type annotations for instance attributes in <code>utils</code> (<a 
href="https://redirect.github.com/pallets/click/issues/3422";>#3422</a>)</li>
   <li><a 
href="https://github.com/pallets/click/commit/3bb230dcd5d751f8605b46e9df5a541639d5fd4e";><code>3bb230d</code></a>
 WIP: Fix <code>HelpFormatter.write_usage</code> producing spurious characters 
(<a href="https://redirect.github.com/pallets/click/issues/3434";>#3434</a>)</li>
   <li><a 
href="https://github.com/pallets/click/commit/63274a79d08fdc5c19220696144489f7144a8547";><code>63274a7</code></a>
 <code>click.get_pager_file</code>: add tests (<a 
href="https://redirect.github.com/pallets/click/issues/1572";>#1572</a> 
followup) (<a 
href="https://redirect.github.com/pallets/click/issues/3405";>#3405</a>)</li>
   <li><a 
href="https://github.com/pallets/click/commit/0551bf53588ae87f462d336f24f853a156fefe3a";><code>0551bf5</code></a>
 Fix <code>HelpFormatter.write_usage</code> producing spurious characters</li>
   <li><a 
href="https://github.com/pallets/click/commit/fc41aa1d0b62494eb93e92ff3929601221e3abf4";><code>fc41aa1</code></a>
 Apply class-body annotations to <code>KeepOpenFile</code> for consistency</li>
   <li><a 
href="https://github.com/pallets/click/commit/b761eda3bad977ec2f485451d85fd8ec365f0bf4";><code>b761eda</code></a>
 Skip some tests on Windows</li>
   <li><a 
href="https://github.com/pallets/click/commit/98302ac4f49e443a48abd3fbb95c86202b89547d";><code>98302ac</code></a>
 Check <code>PAGER</code> usage, color preservation and edge-cases</li>
   <li><a 
href="https://github.com/pallets/click/commit/dbdae170879d460e78963f8af35c5cb9c5b86e89";><code>dbdae17</code></a>
 Fix documentation</li>
   <li><a 
href="https://github.com/pallets/click/commit/1aa2d53d63ff68bf14b35931177aac9270e39713";><code>1aa2d53</code></a>
 Redesigned tests and get_pager_file branching to be more clear and not set 
color</li>
   <li>Additional commits viewable in <a 
href="https://github.com/pallets/click/compare/8.2.1...8.4.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=click&package-manager=pip&previous-version=8.2.1&new-version=8.4.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 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