Skip to content

🚀 Lock file maintenance Python dependencies#74

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/python-dependencies
Open

🚀 Lock file maintenance Python dependencies#74
renovate[bot] wants to merge 1 commit intomainfrom
renovate/python-dependencies

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 7, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
lockFileMaintenance All locks refreshed
click (changelog) project.dependencies minor ==8.1.8==8.3.1 age confidence
holidays (changelog) project.dependencies minor ==0.69==0.90 age confidence
string-color project.dependencies minor ==1.2.3==1.3.0 age confidence

🔧 This Pull Request updates lock files to use the latest dependency versions.


Release Notes

pallets/click (click)

v8.3.1

Compare Source

Released 2025-11-15

  • Don't discard pager arguments by correctly using subprocess.Popen. :issue:3039
    :pr:3055
  • Replace Sentinel.UNSET default values by None as they're passed through
    the Context.invoke() method. :issue:3066 :issue:3065 :pr:3068
  • Fix conversion of Sentinel.UNSET happening too early, which caused incorrect
    behavior for multiple parameters using the same name. :issue:3071 :pr:3079
  • Hide Sentinel.UNSET values as None when looking up for other parameters
    through the context inside parameter callbacks. :issue:3136 :pr:3137
  • Fix rendering when prompt and confirm parameter prompt_suffix is
    empty. :issue:3019 :pr:3021
  • When Sentinel.UNSET is found during parsing, it will skip calls to
    type_cast_value. :issue:3069 :pr:3090

v8.3.0

Compare Source

Released 2025-09-17

  • Improved flag option handling: Reworked the relationship between flag_value
    and default parameters for better consistency:

    • The default parameter value is now preserved as-is and passed directly
      to CLI functions (no more unexpected transformations)
    • Exception: flag options with default=True maintain backward compatibility
      by defaulting to their flag_value
    • The default parameter can now be any type (bool, None, etc.)
    • Fixes inconsistencies reported in: :issue:1992 :issue:2514 :issue:2610
      :issue:3024 :pr:3030
  • Allow default to be set on Argument for nargs = -1. :issue:2164
    :pr:3030

  • Show correct auto complete value for nargs option in combination with flag
    option :issue:2813

  • Fix handling of quoted and escaped parameters in Fish autocompletion. :issue:2995 :pr:3013

  • Lazily import shutil. :pr:3023

  • Properly forward exception information to resources registered with
    click.core.Context.with_resource(). :issue:2447 :pr:3058

  • Fix regression related to EOF handling in CliRunner. :issue:2939 :pr:2940

v8.2.2

Compare Source

Released 2025-07-31

  • Fix reconciliation of default, flag_value and type parameters for
    flag options, as well as parsing and normalization of environment variables.
    :issue:2952 :pr:2956
  • Fix typing issue in BadParameter and MissingParameter exceptions for the
    parameter param_hint that did not allow for a sequence of string where the
    underlying function _join_param_hints allows for it. :issue:2777 :pr:2990
  • Use the value of Enum choices to render their default value in help
    screen. Refs :issue:2911 :pr:3004
  • Fix completion for the Z shell (zsh) for completion items containing
    colons. :issue:2703 :pr:2846
  • Don't include envvar in error hint when not configured. :issue:2971 :pr:2972
  • Fix a rare race in click.testing.StreamMixer's finalization that manifested
    as a ValueError on close in a multi-threaded test session.
    :issue:2993 :pr:2991

v8.2.1

Compare Source

Released 2025-05-20

  • Fix flag value handling for flag options with a provided type. :issue:2894
    :issue:2897 :pr:2930
  • Fix shell completion for nested groups. :issue:2906 :pr:2907
  • Flush sys.stderr at the end of CliRunner.invoke. :issue:2682
  • Fix EOF handling for stdin input in CliRunner. :issue:2787

v8.2.0

Compare Source

Released 2025-05-10

  • Drop support for Python 3.7, 3.8, and 3.9. :pr:2588 :pr:2893

  • Use modern packaging metadata with pyproject.toml instead of setup.cfg.
    :pr:2438

  • Use flit_core instead of setuptools as build backend. :pr:2543

  • Deprecate the __version__ attribute. Use feature detection, or
    importlib.metadata.version("click"), instead. :issue:2598

  • BaseCommand is deprecated. Command is the base class for all
    commands. :issue:2589

  • MultiCommand is deprecated. Group is the base class for all group
    commands. :issue:2590

  • The current parser and related classes and methods, are deprecated.
    :issue:2205

    • OptionParser and the parser module, which is a modified copy of
      optparse in the standard library.
    • Context.protected_args is unneeded. Context.args contains any
      remaining arguments while parsing.
    • Parameter.add_to_parser (on both Argument and Option) is
      unneeded. Parsing works directly without building a separate parser.
    • split_arg_string is moved from parser to shell_completion.
  • Enable deferred evaluation of annotations with
    from __future__ import annotations. :pr:2270

  • When generating a command's name from a decorated function's name, the
    suffixes _command, _cmd, _group, and _grp are removed.
    :issue:2322

  • Show the types.ParamType.name for types.Choice options within
    --help message if show_choices=False is specified.
    :issue:2356

  • Do not display default values in prompts when Option.show_default is
    False. :pr:2509

  • Add get_help_extra method on Option to fetch the generated extra
    items used in get_help_record to render help text. :issue:2516
    :pr:2517

  • Keep stdout and stderr streams independent in CliRunner. Always
    collect stderr output and never raise an exception. Add a new
    output stream to simulate what the user sees in its terminal. Removes
    the mix_stderr parameter in CliRunner. :issue:2522 :pr:2523

  • Option.show_envvar now also shows environment variable in error messages.
    :issue:2695 :pr:2696

  • Context.close will be called on exit. This results in all
    Context.call_on_close callbacks and context managers added via
    Context.with_resource to be closed on exit as well. :pr:2680

  • Add ProgressBar(hidden: bool) to allow hiding the progressbar. :issue:2609

  • A UserWarning will be shown when multiple parameters attempt to use the
    same name. :issue:2396

  • When using Option.envvar with Option.flag_value, the flag_value
    will always be used instead of the value of the environment variable.
    :issue:2746 :pr:2788

  • Add Choice.get_invalid_choice_message method for customizing the
    invalid choice message. :issue:2621 :pr:2622

  • If help is shown because no_args_is_help is enabled (defaults to True
    for groups, False for commands), the exit code is 2 instead of 0.
    :issue:1489 :pr:1489

  • Contexts created during shell completion are closed properly, fixing
    a ResourceWarning when using click.File. :issue:2644 :pr:2800
    :pr:2767

  • click.edit(filename) now supports passing an iterable of filenames in
    case the editor supports editing multiple files at once. Its return type
    is now also typed: AnyStr if text is passed, otherwise None.
    :issue:2067 :pr:2068

  • Specialized typing of progressbar(length=...) as ProgressBar[int].
    :pr:2630

  • Improve echo_via_pager behaviour in face of errors.
    :issue:2674

    • Terminate the pager in case a generator passed to echo_via_pager
      raises an exception.
    • Ensure to always close the pipe to the pager process and wait for it
      to terminate.
    • echo_via_pager will not ignore KeyboardInterrupt anymore. This
      allows the user to search for future output of the generator when
      using less and then aborting the program using ctrl-c.
  • deprecated: bool | str can now be used on options and arguments. This
    previously was only available for Command. The message can now also be
    customised by using a str instead of a bool. :issue:2263 :pr:2271

    • Command.deprecated formatting in --help changed from
      (Deprecated) help to help (DEPRECATED).
    • Parameters cannot be required nor prompted or an error is raised.
    • A warning will be printed when something deprecated is used.
  • Add a catch_exceptions parameter to CliRunner. If
    catch_exceptions is not passed to CliRunner.invoke, the value
    from CliRunner is used. :issue:2817 :pr:2818

  • Option.flag_value will no longer have a default value set based on
    Option.default if Option.is_flag is False. This results in
    Option.default not needing to implement __bool__. :pr:2829

  • Incorrect click.edit typing has been corrected. :pr:2804

  • Choice is now generic and supports any iterable value.
    This allows you to use enums and other non-str values. :pr:2796
    :issue:605

  • Fix setup of help option's defaults when using a custom class on its
    decorator. Removes HelpOption. :issue:2832 :pr:2840

vacanza/holidays (holidays)

v0.90

Compare Source

Released February 2, 2026

v0.89

Compare Source

Released January 19, 2026

v0.88

Compare Source

Released January 5, 2026

v0.87

Compare Source

Released December 15, 2025

v0.86

Compare Source

Released December 1, 2025

v0.85

Compare Source

Released November 17, 2025

v0.84

Compare Source

Released November 3, 2025

v0.83

Compare Source

Released October 20, 2025

v0.82

Compare Source

Released October 6, 2025

v0.81

Compare Source

Released September 15, 2025

v0.80

Compare Source

Released September 1, 2025

v0.79

Compare Source

Released August 18, 2025

v0.78

Compare Source

Released August 4, 2025

v0.77

Compare Source

Released July 21, 2025


Configuration

📅 Schedule: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added dependencies Pull requests that update a dependency file no-stale python Pull requests that update Python code labels Apr 7, 2025
@renovate renovate bot force-pushed the renovate/python-dependencies branch from f235014 to d75a1ee Compare April 7, 2025 23:57
@renovate renovate bot changed the title 🚀 Lock file maintenance 🚀 Lock file maintenance Python dependencies Apr 7, 2025
@renovate renovate bot force-pushed the renovate/python-dependencies branch from d75a1ee to 7f639c5 Compare April 13, 2025 15:05
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 7f639c5 to de1e598 Compare April 21, 2025 22:28
@renovate renovate bot force-pushed the renovate/python-dependencies branch 2 times, most recently from 3a73c3e to 8355247 Compare May 11, 2025 03:18
@renovate renovate bot force-pushed the renovate/python-dependencies branch 2 times, most recently from 5a276f2 to b35925b Compare May 20, 2025 23:47
@renovate renovate bot force-pushed the renovate/python-dependencies branch 2 times, most recently from 9724241 to 3f03fc1 Compare June 2, 2025 21:11
@renovate renovate bot force-pushed the renovate/python-dependencies branch 2 times, most recently from a989a8e to c207108 Compare June 21, 2025 05:46
@renovate renovate bot force-pushed the renovate/python-dependencies branch from c207108 to 8376cfb Compare June 30, 2025 20:51
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 8376cfb to e350f74 Compare July 7, 2025 22:42
@renovate renovate bot force-pushed the renovate/python-dependencies branch 3 times, most recently from 04023b8 to b7e5a06 Compare July 22, 2025 00:59
@renovate renovate bot force-pushed the renovate/python-dependencies branch 3 times, most recently from d15c0dc to 552e4d8 Compare August 13, 2025 14:45
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 552e4d8 to 265f01b Compare August 18, 2025 19:27
@renovate renovate bot changed the title 🚀 Lock file maintenance Python dependencies 🚀 Lock file maintenance Python dependencies - autoclosed Aug 19, 2025
@renovate renovate bot closed this Aug 19, 2025
@renovate renovate bot deleted the renovate/python-dependencies branch August 19, 2025 17:33
@renovate renovate bot changed the title 🚀 Lock file maintenance Python dependencies - autoclosed 🚀 Lock file maintenance Python dependencies Aug 25, 2025
@renovate renovate bot reopened this Aug 25, 2025
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 2e6de39 to 265f01b Compare August 25, 2025 01:24
@renovate renovate bot force-pushed the renovate/python-dependencies branch 2 times, most recently from f04961b to f6d6dab Compare September 1, 2025 21:39
@renovate renovate bot force-pushed the renovate/python-dependencies branch 2 times, most recently from 1ba1422 to a82dd2b Compare September 18, 2025 18:28
@renovate renovate bot force-pushed the renovate/python-dependencies branch from a82dd2b to fbb4fe5 Compare October 7, 2025 02:06
@renovate renovate bot force-pushed the renovate/python-dependencies branch 2 times, most recently from a8061b3 to 4234ab9 Compare October 22, 2025 09:56
@renovate renovate bot force-pushed the renovate/python-dependencies branch 2 times, most recently from 826dd5b to 66c3964 Compare November 10, 2025 18:38
@renovate renovate bot force-pushed the renovate/python-dependencies branch 3 times, most recently from 388023e to be2a596 Compare November 19, 2025 00:34
@renovate renovate bot force-pushed the renovate/python-dependencies branch 2 times, most recently from 1900cb0 to 62379ca Compare December 2, 2025 03:01
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 62379ca to 8a79cb7 Compare December 15, 2025 21:59
@renovate renovate bot force-pushed the renovate/python-dependencies branch 2 times, most recently from 9e01fab to 38e621b Compare January 5, 2026 21:59
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 38e621b to f1da688 Compare January 19, 2026 20:55
@renovate renovate bot force-pushed the renovate/python-dependencies branch from f1da688 to b1ed80f Compare February 2, 2026 18:53
@renovate renovate bot force-pushed the renovate/python-dependencies branch from b1ed80f to c70cb80 Compare February 2, 2026 23:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file no-stale python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants