Skip to content

Conversation

@renovate-coveooss
Copy link
Contributor

@renovate-coveooss renovate-coveooss bot commented Dec 9, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
PyYAML (source) 6.0.2 -> 6.0.3 age adoption passing confidence dependencies patch
Pygments (changelog) 2.18.0 -> 2.19.2 age adoption passing confidence dependencies minor
actions/checkout v4.2.2 -> v4.3.1 age adoption passing confidence action minor
actions/setup-node v4.3.0 -> v4.4.0 age adoption passing confidence action minor
actions/setup-python v5.5.0 -> v5.6.0 age adoption passing confidence action minor
beautifulsoup4 (changelog) 4.12.3 -> 4.14.2 age adoption passing confidence dev minor
click (changelog) 8.1.7 -> 8.3.1 age adoption passing confidence dependencies minor
markdown2 2.5.1 -> 2.5.4 age adoption passing confidence dependencies patch
mypy (changelog) 1.13.0 -> 1.18.2 age adoption passing confidence dev minor 1.19.0
pytest (changelog) 8.3.3 -> 8.4.2 age adoption passing confidence dev minor
python 3.11 -> 3.14 age adoption passing confidence uses-with minor
semantic-release-pypi 4.0.3 -> 4.1.1 age adoption passing confidence devDependencies minor
step-security/harden-runner v2.11.1 -> v2.13.2 age adoption passing confidence action minor

[skip release]


Release Notes

yaml/pyyaml (PyYAML)

v6.0.3

Compare Source

What's Changed

  • Support for Python 3.14 and free-threading (experimental).

Full Changelog: yaml/pyyaml@6.0.2...6.0.3

pygments/pygments (Pygments)

v2.19.2

Compare Source

(released June 21st, 2025)

v2.19.1

Compare Source

(released January 6th, 2025)

  • Updated lexers:

    • Ini: Fix quoted string regression introduced in 2.19.0
    • Lua: Fix a regression introduced in 2.19.0

v2.19.0

Compare Source

(released January 5th, 2025)

  • Mark file extensions for HTML/XML+Evoque as aliases (#​2743)
  • Add a color for Operator.Word to the rrt style (#​2709)
  • Fix broken link in the documentation (#​2803, #​2804)
  • Drop executable bit where not needed (#​2781)
  • Reduce Mojo priority relative to Python in analyze_text (#​2771, #​2772)
  • Fix documentation builds (#​2712)
  • Match example file names to the lexer's name (#​2713, #​2715)
  • Ensure lexer metadata is present (#​2714)
  • Search more directories on macOS for fonts (#​2809)
  • Improve test robustness (#​2812)
actions/checkout (actions/checkout)

v4.3.1

Compare Source

What's Changed

Full Changelog: actions/checkout@v4...v4.3.1

v4.3.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/checkout@v4...v4.3.0

actions/setup-node (actions/setup-node)

v4.4.0

Compare Source

What's Changed

Bug fixes:
Enhancement:
Dependency update:

New Contributors

Full Changelogactions/setup-node@v4...v4.4.0

actions/setup-python (actions/setup-python)

v5.6.0

Compare Source

What's Changed

Full Changelog: actions/setup-python@v5...v5.6.0

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

v8.1.8

Compare Source

Released 2024-12-19

  • Fix an issue with type hints for click.open_file(). :issue:2717
  • Fix issue where error message for invalid click.Path displays on
    multiple lines. :issue:2697
  • Fixed issue that prevented a default value of "" from being displayed in
    the help for an option. :issue:2500
  • The test runner handles stripping color consistently on Windows.
    :issue:2705
  • Show correct value for flag default when using default_map.
    :issue:2632
  • Fix click.echo(color=...) passing color to coloroma so it can be
    forced on Windows. :issue:2606.
  • More robust bash version check, fixing problem on Windows with git-bash.
    :issue:2638
  • Cache the help option generated by the help_option_names setting to
    respect its eagerness. :pr:2811
  • Replace uses of os.system with subprocess.Popen. :issue:1476
  • Exceptions generated during a command will use the context's color
    setting when being displayed. :issue:2193
  • Error message when defining option with invalid name is more descriptive.
    :issue:2452
  • Refactor code generating default --help option to deduplicate code.
    :pr:2563
  • Test CLIRunner resets patched _compat.should_strip_ansi.
    :issue:2732
trentm/python-markdown2 (markdown2)

v2.5.4

Compare Source

v2.5.3

Compare Source

  • [pull #​616] make tables without body gfm compatible

v2.5.2

Compare Source

  • [pull #​605] Add support for Python 3.13, drop EOL 3.8
  • [pull #​607] Fix middle-word-em extra preventing strongs from being recognized (#​606)
  • [pull #​609] Add option to output to file in CLI (#​608)
  • [pull #​612] Fix footnote labels appearing out-of-order (#​536)
  • [pull #​613] Fix smarty pants extra not triggering when it should (#​611)
python/mypy (mypy)

v1.18.2

Compare Source

  • Fix crash on recursive alias (Ivan Levkivskyi, PR 19845)
  • Add additional guidance for stubtest errors when runtime is object.__init__ (Stephen Morton, PR 19733)
  • Fix handling of None values in f-string expressions in mypyc (BobTheBuidler, PR 19846)

v1.18.1

Compare Source

We’ve just uploaded mypy 1.18.1 to the Python Package Index (PyPI).
Mypy is a static type checker for Python. This release includes new features, performance
improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Mypy Performance Improvements

Mypy 1.18.1 includes numerous performance improvements, resulting in about 40% speedup
compared to 1.17 when type checking mypy itself. In extreme cases, the improvement
can be 10x or higher. The list below is an overview of the various mypy optimizations.
Many mypyc improvements (discussed in a separate section below) also improve performance.

Type caching optimizations have a small risk of causing regressions. When
reporting issues with unexpected inferred types, please also check if
--disable-expression-cache will work around the issue, as it turns off some of
these optimizations.

  • Improve self check performance by 1.8% (Jukka Lehtosalo, PR 19768, 19769, 19770)
  • Optimize fixed-format deserialization (Ivan Levkivskyi, PR 19765)
  • Use macros to optimize fixed-format deserialization (Ivan Levkivskyi, PR 19757)
  • Two additional micro‑optimizations (Ivan Levkivskyi, PR 19627)
  • Another set of micro‑optimizations (Ivan Levkivskyi, PR 19633)
  • Cache common types (Ivan Levkivskyi, PR 19621)
  • Skip more method bodies in third‑party libraries for speed (Ivan Levkivskyi, PR 19586)
  • Simplify the representation of callable types (Ivan Levkivskyi, PR 19580)
  • Add cache for types of some expressions (Ivan Levkivskyi, PR 19505)
  • Use cache for dictionary expressions (Ivan Levkivskyi, PR 19536)
  • Use cache for binary operations (Ivan Levkivskyi, PR 19523)
  • Cache types of type objects (Ivan Levkivskyi, PR 19514)
  • Avoid duplicate work when checking boolean operations (Ivan Levkivskyi, PR 19515)
  • Optimize generic inference passes (Ivan Levkivskyi, PR 19501)
  • Speed up the default plugin (Jukka Lehtosalo, PRs 19385 and 19462)
  • Remove nested imports from the default plugin (Ivan Levkivskyi, PR 19388)
  • Micro‑optimize type expansion (Jukka Lehtosalo, PR 19461)
  • Micro‑optimize type indirection (Jukka Lehtosalo, PR 19460)
  • Micro‑optimize the plugin framework (Jukka Lehtosalo, PR 19464)
  • Avoid temporary set creation in subtype checking (Jukka Lehtosalo, PR 19463)
  • Subtype checking micro‑optimization (Jukka Lehtosalo, PR 19384)
  • Return early where possible in subtype check (Stanislav Terliakov, PR 19400)
  • Deduplicate some types before joining (Stanislav Terliakov, PR 19409)
  • Speed up type checking by caching argument inference context (Jukka Lehtosalo, PR 19323)
  • Optimize binding method self argument type and deprecation checks (Ivan Levkivskyi, PR 19556)
  • Keep trivial instance types/aliases during expansion (Ivan Levkivskyi, PR 19543)
Fixed‑Format Cache (Experimental)

Mypy now supports a new cache format used for faster incremental builds. It makes
incremental builds up to twice as fast. The feature is experimental and
currently only supported when using a compiled version of mypy. Use --fixed-format-cache
to enable the new format, or fixed_format_cache = True in a configuration file.

We plan to enable this by default in a future mypy release, and we'll eventually
deprecate and remove support for the original JSON-based format.

Unlike the JSON-based cache format, the new binary format is currently
not easy to parse and inspect by mypy users. We are planning to provide a tool to
convert fixed-format cache files to JSON, but details of the output JSON may be
different from the current JSON format. If you rely on being able to inspect
mypy cache files, we recommend creating a GitHub issue and explaining your use
case, so that we can more likely provide support for it. (Using
MypyFile.read(binary_data) to inspect cache data may be sufficient to support
some use cases.)

This feature was contributed by Ivan Levkivskyi (PR 19668, 19735, 19750, 19681, 19752, 19815).

Flexible Variable Definitions: Update

Mypy 1.16.0 introduced --allow-redefinition-new, which allows redefining variables
with different types, and inferring union types for variables from multiple assignments.
The feature is now documented in the --help output, but the feature is still experimental.

We are planning to enable this by default in mypy 2.0, and we will also deprecate the
older --allow-redefinition flag. Since the new behavior differs significantly from
the older flag, we encourage users of --allow-redefinition to experiment with
--allow-redefinition-new and create a GitHub issue if the new functionality doesn't
support some important use cases.

This feature was contributed by Jukka Lehtosalo.

Inferred Type for Bare ClassVar

A ClassVar without an explicit type annotation now causes the type of the variable
to be inferred from the initializer:

from typing import ClassVar

class Item:
    # Type of 'next_id' is now 'int' (it was 'Any')
    next_id: ClassVar = 1

    ...

This feature was contributed by Ivan Levkivskyi (PR 19573).

Disjoint Base Classes (@​disjoint_base, PEP 800)

Mypy now understands disjoint bases (PEP 800): it recognizes the @disjoint_base
decorator, and rejects class definitions that combine mutually incompatible base classes,
and takes advantage of the fact that such classes cannot exist in reachability and
narrowing logic.

This class definition will now generate an error:

# Error: Class "Bad" has incompatible disjoint bases
class Bad(str, Exception):
    ...

This feature was contributed by Jelle Zijlstra (PR 19678).

Miscellaneous New Mypy Features
  • Add --strict-equality-for-none to flag non-overlapping comparisons involving None (Christoph Tyralla, PR 19718)
  • Don’t show import‑related errors after a module‑level assert such as assert sys.platform == "linux" that is always false (Stanislav Terliakov, PR 19347)
Improvements to Match Statements
  • Add temporary named expressions for match subjects (Stanislav Terliakov, PR 18446)
  • Fix unwrapping of assignment expressions in match subject (Marc Mueller, PR 19742)
  • Omit errors for class patterns against object (Marc Mueller, PR 19709)
  • Remove unnecessary error for certain match class patterns (Marc Mueller, PR 19708)
  • Use union type for captured vars in or pattern (Marc Mueller, PR 19710)
  • Prevent final reassignment inside match case (Omer Hadari, PR 19496)
Fixes to Crashes
  • Fix crash with variadic tuple arguments to a generic type (Randolf Scholz, PR 19705)
  • Fix crash when enable_error_code in pyproject.toml has wrong type (wyattscarpenter, PR 19494)
  • Prevent crash for dataclass with PEP 695 TypeVarTuple on Python 3.13+ (Stanislav Terliakov, PR 19565)
  • Fix crash on settable property alias (Ivan Levkivskyi, PR 19615)
Experimental Free-threading Support for Mypyc

All mypyc tests now pass on free-threading Python 3.14 release candidate builds. The performance
of various micro-benchmarks scale well across multiple threads.

Free-threading support is still experimental. Note that native attribute access
(get and set), list item access and certain other operations are still
unsafe when there are race conditions. This will likely change in the future.
You can follow the
area-free-threading label
in the mypyc issues tracker to follow progress.

Related PRs:

  • Enable free‑threading when compiling multiple modules (Jukka Lehtosalo, PR 19541)
  • Fix list.pop on free‑threaded builds (Jukka Lehtosalo, PR 19522)
  • Make type objects immortal under free‑threading (Jukka Lehtosalo, PR 19538)
Mypyc: Support __new__

Mypyc now has rudimentary support for user-defined __new__ methods.

This feature was contributed by Piotr Sawicki (PR 19739).

Mypyc: Faster Generators and Async Functions

Generators and calls of async functions are now faster, sometimes by 2x or more.

Related PRs:

  • Speed up for loops over native generators (Jukka Lehtosalo, PR 19415)
  • Speed up native‑to‑native calls using await (Jukka Lehtosalo, PR 19398)
  • Call generator helper directly in await expressions (Jukka Lehtosalo, PR 19376)
  • Speed up generator allocation with per‑type freelists (Jukka Lehtosalo, PR 19316)
Miscellaneous Mypyc Improvements
  • Special‑case certain Enum method calls for speed (Ivan Levkivskyi, PR 19634)
  • Fix issues related to subclassing and undefined attribute tracking (Chainfire, PR 19787)
  • Fix invalid C function signature (Jukka Lehtosalo, PR 19773)
  • Speed up implicit __ne__ (Jukka Lehtosalo, PR 19759)
  • Speed up equality with optional str/bytes types (Jukka Lehtosalo, PR 19758)
  • Speed up access to empty tuples (BobTheBuidler, PR 19654)
  • Speed up calls with *args (BobTheBuidler, PRs 19623 and 19631)
  • Speed up calls with **kwargs (BobTheBuidler, PR 19630)
  • Optimize type(x), x.__class__, and <type>.__name__ (Jukka Lehtosalo, PR 19691, 19683)
  • Specialize bytes.decode for common encodings (Jukka Lehtosalo, PR 19688)
  • Speed up in operations using final fixed‑length tuples (Jukka Lehtosalo, PR 19682)
  • Optimize f‑string building from final values (BobTheBuidler, PR 19611)
  • Add dictionary set item for exact dict instances (BobTheBuidler, PR 19657)
  • Cache length when iterating over immutable types (BobTheBuidler, PR 19656)
  • Fix name conflict related to attributes of generator classes (Piotr Sawicki, PR 19535)
  • Fix segfault from heap type objects with a static docstring (Brian Schubert, PR 19636)
  • Unwrap NewType to its base type for additional optimizations (BobTheBuidler, PR 19497)
  • Generate an export table only for separate compilation (Jukka Lehtosalo, PR 19521)
  • Speed up isinstance with built‑in types (Piotr Sawicki, PR 19435)
  • Use native integers for some sequence indexing (Jukka Lehtosalo, PR 19426)
  • Speed up isinstance(obj, list) (Piotr Sawicki, PR 19416)
  • Report error on reserved method names (Piotr Sawicki, PR 19407)
  • Speed up string equality (Jukka Lehtosalo, PR 19402)
  • Raise NameError on undefined names (Piotr Sawicki, PR 19395)
  • Use per‑type freelists for nested functions (Jukka Lehtosalo, PR 19390)
  • Simplify comparison of tuple elements (Piotr Sawicki, PR 19396)
  • Generate introspection signatures for compiled functions (Brian Schubert, PR 19307)
  • Fix undefined attribute checking special case (Jukka Lehtosalo, PR 19378)
  • Fix comparison of tuples with different lengths (Piotr Sawicki, PR 19372)
  • Speed up list.clear (Jahongir Qurbonov, PR 19344)
  • Speed up weakref.proxy (BobTheBuidler, PR 19217)
  • Speed up weakref.ref (BobTheBuidler, PR 19099)
  • Speed up str.count (BobTheBuidler, PR 19264)
Stubtest Improvements
  • Add temporary --ignore-disjoint-bases flag to ease PEP 800 migration (Joren Hammudoglu, PR 19740)
  • Flag redundant uses of @disjoint_base (Jelle Zijlstra, PR 19715)
  • Improve signatures for __init__ of C extension classes (Stephen Morton, PR 18259)
  • Handle overloads with mixed positional‑only parameters (Stephen Morton, PR 18287)
  • Use “parameter” (not “argument”) in error messages (PrinceNaroliya, PR 19707)
  • Don’t require @disjoint_base when __slots__ imply finality (Jelle Zijlstra, PR 19701)
  • Allow runtime‑existing aliases of @type_check_only types (Brian Schubert, PR 19568)
  • More detailed checking of type objects in stubtest (Stephen Morton, PR 18251)
  • Support running stubtest in non-UTF8 terminals (Stanislav Terliakov, PR 19085)
Documentation Updates
  • Add idlemypyextension to IDE integrations (CoolCat467, PR 18615)
  • Document that object is often preferable to Any in APIs (wyattscarpenter, PR 19103)
  • Include a detailed listing of flags enabled by --strict (wyattscarpenter, PR 19062)
  • Update “common issues” (reveal_type/reveal_locals; note on orjson) (wyattscarpenter, PR 19059, 19058)
Other Notable Fixes and Improvements
  • Remove deprecated --new-type-inference flag (the new algorithm has long been default) (Ivan Levkivskyi, PR 19570)
  • Use empty context as a fallback for return expressions when outer context misleads inference (Ivan Levkivskyi, PR 19767)
  • Fix forward references in type parameters of over‑parameterized PEP 695 aliases (Brian Schubert, PR 19725)
  • Don’t expand PEP 695 aliases when checking node fullnames (Brian Schubert, PR 19699)
  • Don’t use outer context for 'or' expression inference when LHS is Any (Stanislav Terliakov, PR

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone America/Toronto, Automerge - "after 9:00am and before 12:00pm on tuesday, wednesday, thursday" in timezone America/Toronto.

🚦 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 has been generated by Renovate Bot.

@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from f20be81 to 3afd20d Compare December 17, 2024 13:01
@renovate-coveooss renovate-coveooss bot changed the title chore(deps): update dependency pytest to v8.3.4 chore(deps): update all non-major dependencies Dec 17, 2024
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from cdb790a to c1230cf Compare December 18, 2024 22:31
@renovate-coveooss renovate-coveooss bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 18, 2024
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 88f52a0 to 59f4b0f Compare December 30, 2024 00:01
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 861a31a to 42547b5 Compare January 13, 2025 00:01
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 418de85 to 39f29db Compare February 5, 2025 15:03
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 39f29db to 6486324 Compare February 10, 2025 12:31
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 5d00281 to 4e080fe Compare March 11, 2025 15:01
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d7f1382 to baf46ca Compare April 4, 2025 20:32
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from dc57177 to 54f288d Compare April 16, 2025 02:01
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 397d6f9 to 2dbe2b9 Compare April 28, 2025 19:33
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 2dbe2b9 to 8507b05 Compare May 1, 2025 03:02
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 8507b05 to c1dbea2 Compare May 9, 2025 16:40
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from c1dbea2 to e1844a2 Compare May 27, 2025 23:32
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from e1844a2 to 9bc0d53 Compare June 4, 2025 04:31
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 9bc0d53 to b5f0fca Compare June 18, 2025 14:33
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from bc8e97f to f8180b2 Compare June 30, 2025 00:02
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from f8180b2 to 4978fd1 Compare July 7, 2025 06:33
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5fc044d to 58cf768 Compare July 22, 2025 19:37
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 58cf768 to 9a891d9 Compare August 4, 2025 00:02
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 57985f9 to 0c90d83 Compare August 18, 2025 10:32
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 0c90d83 to e62f360 Compare August 27, 2025 11:36
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a031a2c to 9112a5d Compare September 16, 2025 18:02
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 9112a5d to 414f3f0 Compare September 25, 2025 18:02
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 414f3f0 to 2bb386f Compare October 2, 2025 22:02
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 2bb386f to c06bee7 Compare October 14, 2025 14:32
@renovate-coveooss renovate-coveooss bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Oct 15, 2025
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from c06bee7 to b3bfcb0 Compare November 12, 2025 08:02
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 2309e92 to 681d77d Compare November 21, 2025 14:02
@renovate-coveooss renovate-coveooss bot requested a review from a team as a code owner November 21, 2025 14:02
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c984f76 to 8d8def4 Compare November 26, 2025 09:34
@renovate-coveooss renovate-coveooss bot force-pushed the renovate/all-minor-patch branch from 8d8def4 to d88979d Compare November 26, 2025 09:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant