Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 29, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
attrs (changelog) ==25.3.0 -> ==25.4.0 age confidence minor
black (changelog) ==25.1.0 -> ==25.9.0 age confidence project.optional-dependencies minor
black (changelog) ==25.1.0 -> ==25.9.0 age confidence minor
certifi ==2025.7.14 -> ==2025.10.5 age confidence minor
charset-normalizer (changelog) ==3.4.2 -> ==3.4.4 age confidence patch
click (changelog) ==8.2.1 -> ==8.3.0 age confidence minor
docutils (changelog) ==0.21.2 -> ==0.22.2 age confidence minor
executing ==2.2.0 -> ==2.2.1 age confidence patch
fonttools ==4.59.0 -> ==4.60.1 age confidence minor
geographiclib (source) ==2.0 -> ==2.1 age confidence minor
idna (changelog) ==3.10 -> ==3.11 age confidence minor
ipython ==9.4.0 -> ==9.6.0 age confidence minor
isort (changelog) ==6.0.1 -> ==6.1.0 age confidence project.optional-dependencies minor
isort (changelog) ==6.0.1 -> ==6.1.0 age confidence minor
joblib ==1.5.1 -> ==1.5.2 age confidence patch
kiwisolver (changelog) ==1.4.8 -> ==1.4.9 age confidence patch
lxml (source, changelog) ==6.0.0 -> ==6.0.2 age confidence patch
markupsafe (changelog) ==3.0.2 -> ==3.0.3 age confidence patch
matplotlib ==3.10.3 -> ==3.10.7 age confidence patch
numpy (changelog) ==2.3.2 -> ==2.3.4 age confidence patch
parso ==0.8.4 -> ==0.8.5 age confidence patch
platformdirs (changelog) ==4.3.8 -> ==4.5.0 age confidence minor
polars (changelog) ==1.31.0 -> ==1.34.0 age confidence minor
prompt-toolkit ==3.0.51 -> ==3.0.52 age confidence patch
pyparsing ==3.2.3 -> ==3.2.5 age confidence patch
pytest (changelog) ==8.4.1 -> ==8.4.2 age confidence patch
python 3.13 -> 3.14 age confidence uses-with minor
requests (source, changelog) ==2.32.4 -> ==2.32.5 age confidence patch
sphinx-autodoc-typehints (changelog) ==3.2.0 -> ==3.5.2 age confidence minor
wcwidth ==0.2.13 -> ==0.2.14 age confidence patch

Release Notes

python-attrs/attrs (attrs)

v25.4.0

Compare Source

Backwards-incompatible Changes
  • Class-level kw_only=True behavior is now consistent with dataclasses.

    Previously, a class that sets kw_only=True makes all attributes keyword-only, including those from base classes.
    If an attribute sets kw_only=False, that setting is ignored, and it is still made keyword-only.

    Now, only the attributes defined in that class that doesn't explicitly set kw_only=False are made keyword-only.

    This shouldn't be a problem for most users, unless you have a pattern like this:

    @​attrs.define(kw_only=True)
    class Base:
        a: int
        b: int = attrs.field(default=1, kw_only=False)
    
    @​attrs.define
    class Subclass(Base):
        c: int

    Here, we have a kw_only=True attrs class (Base) with an attribute that sets kw_only=False and has a default (Base.b), and then create a subclass (Subclass) with required arguments (Subclass.c).
    Previously this would work, since it would make Base.b keyword-only, but now this fails since Base.b is positional, and we have a required positional argument (Subclass.c) following another argument with defaults.
    #​1457

Changes
  • Values passed to the __init__() method of attrs classes are now correctly passed to __attrs_pre_init__() instead of their default values (in cases where kw_only was not specified).
    #​1427

  • Added support for Python 3.14 and PEP 749.
    #​1446,
    #​1451

  • attrs.validators.deep_mapping() now allows to leave out either key_validator xor value_validator.
    #​1448

  • attrs.validators.deep_iterator() and attrs.validators.deep_mapping() now accept lists and tuples for all validators and wrap them into a attrs.validators.and_().
    #​1449

  • Added a new experimental way to inspect classes:

    attrs.inspect(cls) returns the effective class-wide parameters that were used by attrs to construct the class.

    The returned class is the same data structure that attrs uses internally to decide how to construct the final class.
    #​1454

  • Fixed annotations for attrs.field(converter=...).
    Previously, a tuple of converters was only accepted if it had exactly one element.
    #​1461

  • The performance of attrs.asdict() has been improved by 45–260%.
    #​1463

  • The performance of attrs.astuple() has been improved by 49–270%.
    #​1469

  • The type annotation for attrs.validators.or_() now allows for different types of validators.

    This was only an issue on Pyright.
    #​1474

psf/black (black)

v25.9.0

Compare Source

Highlights
  • Remove support for pre-python 3.7 await/async as soft keywords/variable names
    (#​4676)
Stable style
  • Fix crash while formatting a long del statement containing tuples (#​4628)
  • Fix crash while formatting expressions using the walrus operator in complex with
    statements (#​4630)
  • Handle # fmt: skip followed by a comment at the end of file (#​4635)
  • Fix crash when a tuple appears in the as clause of a with statement (#​4634)
  • Fix crash when tuple is used as a context manager inside a with statement (#​4646)
  • Fix crash when formatting a \ followed by a \r followed by a comment (#​4663)
  • Fix crash on a \\r\n (#​4673)
  • Fix crash on await ... (where ... is a literal Ellipsis) (#​4676)
  • Fix crash on parenthesized expression inside a type parameter bound (#​4684)
  • Fix crash when using line ranges excluding indented single line decorated items
    (#​4670)
Preview style
  • Fix a bug where one-liner functions/conditionals marked with # fmt: skip would still
    be formatted (#​4552)
  • Improve multiline_string_handling with ternaries and dictionaries (#​4657)
  • Fix a bug where string_processing would not split f-strings directly after
    expressions (#​4680)
  • Wrap the in clause of comprehensions across lines if necessary (#​4699)
  • Remove parentheses around multiple exception types in except and except* without
    as. (#​4720)
  • Add \r style newlines to the potential newlines to normalize file newlines both from
    and to (#​4710)
Parser
  • Rewrite tokenizer to improve performance and compliance (#​4536)
  • Fix bug where certain unusual expressions (e.g., lambdas) were not accepted in type
    parameter bounds and defaults. (#​4602)
Performance
  • Avoid using an extra process when running with only one worker (#​4734)
Integrations
  • Fix the version check in the vim file to reject Python 3.8 (#​4567)
  • Enhance GitHub Action psf/black to read Black version from an additional section in
    pyproject.toml: [project.dependency-groups] (#​4606)
  • Build gallery docker image with python3-slim and reduce image size (#​4686)
Documentation
  • Add FAQ entry for windows emoji not displaying (#​4714)
certifi/python-certifi (certifi)

v2025.10.5

Compare Source

v2025.8.3

Compare Source

jawah/charset_normalizer (charset-normalizer)

v3.4.4

Compare Source

Changed
  • Bound setuptools to a specific constraint setuptools>=68,<=81.
  • Raised upper bound of mypyc for the optional pre-built extension to v1.18.2
Removed
  • setuptools-scm as a build dependency.
Misc
  • Enforced hashes in dev-requirements.txt and created ci-requirements.txt for security purposes.
  • Additional pre-built wheels for riscv64, s390x, and armv7l architectures.
  • Restore multiple.intoto.jsonl in GitHub releases in addition to individual attestation file per wheel.

v3.4.3

Compare Source

Changed
  • mypy(c) is no longer a required dependency at build time if CHARSET_NORMALIZER_USE_MYPYC isn't set to 1. (#​595) (#​583)
  • automatically lower confidence on small bytes samples that are not Unicode in detect output legacy function. (#​391)
Added
  • Custom build backend to overcome inability to mark mypy as an optional dependency in the build phase.
  • Support for Python 3.14
Fixed
  • sdist archive contained useless directories.
  • automatically fallback on valid UTF-16 or UTF-32 even if the md says it's noisy. (#​633)
Misc
  • SBOM are automatically published to the relevant GitHub release to comply with regulatory changes.
    Each published wheel comes with its SBOM. We choose CycloneDX as the format.
  • Prebuilt optimized wheel are no longer distributed by default for CPython 3.7 due to a change in cibuildwheel.
pallets/click (click)

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
alexmojaki/executing (executing)

v2.2.1

Compare Source

fonttools/fonttools (fonttools)

v4.60.1

Compare Source

  • [ufoLib] Reverted accidental method name change in UFOReader.getKerningGroupConversionRenameMaps
    that broke compatibility with downstream projects like defcon (#​3948, #​3947, robotools/defcon#478).
  • [ufoLib] Added test coverage for getKerningGroupConversionRenameMaps method (#​3950).
  • [subset] Don't try to subset BASE table; pass it through by default instead (#​3949).
  • [subset] Remove empty BaseRecord entries in MarkBasePos lookups (#​3897, #​3892).
  • [subset] Add pruning for MarkLigPos and MarkMarkPos lookups (#​3946).
  • [subset] Remove duplicate features when subsetting (#​3945).
  • [Docs] Added documentation for the visitor module (#​3944).

v4.60.0

Compare Source

  • [pointPen] Allow reverseFlipped parameter of DecomposingPointPen to take a ReverseFlipped enum value to control whether/how to reverse contour direction of flipped components, in addition to the existing True/False. This allows to set ReverseFlipped.ON_CURVE_FIRST to ensure that the decomposed outline starts with an on-curve point before being reversed, for better consistency with other segment-oriented contour transformations. The change is backward compatible, and the default behavior hasn't changed (#​3934).

  • [filterPen] Added ContourFilterPointPen, base pen for buffered contour operations, and OnCurveStartPointPen filter to ensure contours start with an on-curve point (#​3934).

  • [cu2qu] Fixed difference in cython vs pure-python complex division by real number (#​3930).

  • [varLib.avar] Refactored and added some new sub-modules and scripts (#​3926).

    • varLib.avar.build module to build avar (and a missing fvar) binaries into a possibly empty TTFont,
    • varLib.avar.unbuild module to print a .designspace snippet that would generate the same avar binary,
    • varLib.avar.map module to take TTFont and do the mapping, in user/normalized space,
    • varLib.avar.plan module moved from varLib.avarPlanner.

    The bare fonttools varLib.avar script is deprecated, in favour of fonttools varLib.avar.build (or unbuild).

  • [interpolatable] Clarify linear_sum_assignment backend options and minimal dependency usage (#​3927).

  • [post] Speed up build_psNameMapping (#​3923).

  • [ufoLib] Added typing annotations to fontTools.ufoLib (#​3875).

v4.59.2

Compare Source

  • [varLib] Clear USE_MY_METRICS component flags when inconsistent across masters (#​3912).
  • [varLib.instancer] Avoid negative advance width/height values when instatiating HVAR/VVAR, (unlikely in well-behaved fonts) (#​3918).
  • [subset] Fix shaping behaviour when pruning empty mark sets (#​3915, harfbuzz/harfbuzz#5499).
  • [cu2qu] Fixed dot() product of perpendicular vectors not always returning exactly 0.0 in all Python implementations (#​3911)
  • [varLib.instancer] Implemented fully-instantiating avar2 fonts (#​3909).
  • [feaLib] Allow float values in VariableScalar's axis locations (#​3906, #​3907).
  • [cu2qu] Handle special case in calc_intersect for degenerate cubic curves where 3 to 4 control points are equal (#​3904).

v4.59.1

Compare Source

  • [featureVars] Update OS/2.usMaxContext if possible after addFeatureVariationsRaw (#​3894).
  • [vhmtx] raise TTLibError('not enough data...') when hmtx/vmtx are truncated (#​3843, #​3901).
  • [feaLib] Combine duplicate features that have the same set of lookups regardless of the order in which those lookups are added to the feature (#​3895).
  • [varLib] Deprecate varLib.mutator in favor of varLib.instancer. The latter provides equivalent full (static font) instancing in addition to partial VF instancing.
    CLI users should replace fonttools varLib.mutator with fonttools varLib.instancer. API users should migrate to fontTools.varLib.instancer.instantiateVariableFont (#​2680).
geographiclib/geographiclib-python (geographiclib)

v2.1

Compare Source

kjd/idna (idna)

v3.11

Compare Source

ipython/ipython (ipython)

v9.6.0

Compare Source

v9.5.0

Compare Source

PyCQA/isort (isort)

v6.1.0

Compare Source

joblib/joblib (joblib)

v1.5.2

Compare Source

  • Vendor loky3.5.6 fixing the resource tracker for python 3.13.7+
    #​1740

Memory:


- Ensure that temporary files managed by the ``Memory`` object do not collide
  when using the same cache directory when the cache directory is accessed
  concurrently from different nodes on a cluster with a shared filesystem.
  https://github.com/joblib/joblib/pull/1656
nucleic/kiwi (kiwisolver)

v1.4.9

Compare Source

  • add support for Python 3.14 PR #​196 #​198
  • include Python.h, or headers including Python.h, before system headers
lxml/lxml (lxml)

v6.0.2

Compare Source

==================

Bugs fixed

Other changes

  • Binary wheels for Py3.9-3.11 on the riscv64 architecture were added.

  • Error constants were updated to match libxml2 2.15.0.

  • Built using Cython 3.1.4.

v6.0.1

Compare Source

==================

Bugs fixed

  • LP#2116333: lxml.sax._getNsTag() could fail with an exception on malformed input.

  • GH#467: Some test adaptations were made for libxml2 2.15.
    Patch by Nick Wellnhofer.

  • LP2119510, GH#473: A Python compatibility test was fixed for Python 3.14+.
    Patch by Lumír Balhar.

  • GH#471: Wheels for "riscv64" on recent Python versions were added.
    Patch by ffgan.

  • GH#469: The wheel build no longer requires the wheel package unconditionally.
    Patch by Miro Hrončok.

  • Binary wheels use the library version libxml2 2.14.5.
    See https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.14.5

  • Windows binary wheels continue to use a security patched library version libxml2 2.11.9.

pallets/markupsafe (markupsafe)

v3.0.3

Compare Source

Released 2025-09-27

  • __version__ raises DeprecationWarning instead of UserWarning.
    :issue:487
  • Adopt multi-phase initialisation (:pep:489) for the C extension.
    :issue:494
  • Build Windows ARM64 wheels. :issue:485
  • Build Python 3.14 wheels. :issue:503
  • Build riscv64 wheels. :issue:505
matplotlib/matplotlib (matplotlib)

v3.10.7: REL: v3.10.7

Compare Source

This is the latest bugfix release in the 3.10.x series.

The most important update in this release is that the minimum version
of pyparsing has been updated to version 3.0.

v3.10.6: REL: v3.10.6

Compare Source

This is a bugfix release in the 3.10.x series.

Highlights from this release include:

- Fix regression of hi-dpi support for Qt
- Fix race condition in TexManager.make_dvi & make_png
- Various documentation and other bugfixes

v3.10.5: REL: v3.10.5

Compare Source

This is the fourth bugfix release of the 3.10.x series.

Included in this release is distributed wheels for Python 3.14 (including freethreaded) and Windows ARM.

There are also several smaller bugfixes.

numpy/numpy (numpy)

v2.3.4

Compare Source

v2.3.3: 2.3.3 (Sep 9, 2025)

Compare Source

NumPy 2.3.3 Release Notes

The NumPy 2.3.3 release is a patch release split between a number of maintenance
updates and bug fixes. This release supports Python versions 3.11-3.14. Note
that the 3.14.0 final is currently expected in Oct, 2025. This release is based
on 3.14.0rc2.

Contributors

A total of 13 people contributed to this release. People with a "+" by their
names contributed a patch for the first time.

  • Aleksandr A. Voyt +
  • Bernard Roesler +
  • Charles Harris
  • Hunter Hogan +
  • Joren Hammudoglu
  • Maanas Arora
  • Matti Picus
  • Nathan Goldbaum
  • Raghuveer Devulapalli
  • Sanjay Kumar Sakamuri Kamalakar +
  • Tobias Markus +
  • Warren Weckesser
  • Zebreus +

Pull requests merged

A total of 23 pull requests were merged for this release.

  • #​29440: MAINT: Prepare 2.3.x for further development.
  • #​29446: BUG: Fix test_configtool_pkgconfigdir to resolve PKG_CONFIG_DIR...
  • #​29447: BLD: allow targeting webassembly without emscripten
  • #​29460: MAINT: Backport write_release.py
  • #​29473: MAINT: Bump pypa/cibuildwheel from 3.1.0 to 3.1.2
  • #​29500: BUG: Always return a real dtype from linalg.cond (gh-18304) (#​29333)
  • #​29501: MAINT: Add .file entry to all .s SVML files
  • #​29556: BUG: Casting from one timedelta64 to another didn't handle NAT.
  • #​29562: BLD: update vendored Meson to 1.8.3 [wheel build]
  • #​29563: BUG: Fix metadata not roundtripping when pickling datetime (#​29555)
  • #​29587: TST: update link and version for Intel SDE download
  • #​29593: TYP: add sorted kwarg to unique
  • #​29672: MAINT: Update pythoncapi-compat from main.
  • #​29673: MAINT: Update cibuildwheel.
  • #​29674: MAINT: Fix typo in wheels.yml
  • #​29683: BUG, BLD: Correct regex for ppc64 VSX3/VSX4 feature detection
  • #​29684: TYP: ndarray.fill() takes no keyword arguments
  • #​29685: BUG: avoid thread-unsafe refcount check in temp elision
  • #​29687: CI: replace comment-hider action in mypy_primer workflow
  • #​29689: BLD: Add missing <unordered_map> include
  • #​29691: BUG: use correct input dtype in flatiter assignment
  • #​29700: TYP: fix np.bool method declarations
  • #​29701: BUG: Correct ambiguous logic for s390x CPU feature detection
davidhalter/parso (parso)

v0.8.5

Compare Source

tox-dev/platformdirs (platformdirs)

v4.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@4.4.0...4.5.0

v4.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@4.3.8...4.4.0

prompt-toolkit/python-prompt-toolkit (prompt-toolkit)

v3.0.52

Compare Source

New features:

  • Add choice() shortcut for selecting an option amongst a list of choices
    (see documentation for examples).
  • Add support for ANSI dim text formatting.
  • Add frame=... option for prompt() and choice() shortcuts to allow for
    displaying a frame around the input prompt.

Fixes:

  • Fix button width when non English characters are displayed.
  • Implement flushing in Windows VT100 input.
  • Fix signal handling for GraalPy.
  • Fix handling of zero sized dimensions.
pytest-dev/pytest (pytest)

v8.4.2

Compare Source

actions/python-versions (python)

v3.14.0: 3.14.0

Compare Source

Python 3.14.0

psf/requests (requests)

v2.32.5

Compare Source

Bugfixes

  • The SSLContext caching feature originally introduced in 2.32.0 has created
    a new class of issues in Requests that have had negative impact across a number
    of use cases. The Requests team has decided to revert this feature as long term
    maintenance of it is proving to be unsustainable in its current iteration.

Deprecations

  • Added support for Python 3.14.
  • Dropped support for Python 3.8 following its end of support.
tox-dev/sphinx-autodoc-typehints (sphinx-autodoc-typehints)

v3.5.2

Compare Source

What's Changed
New Contributors

Full Changelog: tox-dev/sphinx-autodoc-typehints@3.5.1...3.5.2

v3.5.1

Compare Source

What's Changed

Full Changelog: tox-dev/sphinx-autodoc-typehints@3.5.0...3.5.1

v3.5.0

Compare Source

What's Changed

Full Changelog: tox-dev/sphinx-autodoc-typehints@3.4.0...3.5.0

v3.4.0

Compare Source

What's Changed

Full Changelog: tox-dev/sphinx-autodoc-typehints@3.3.0...3.4.0

v3.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/sphinx-autodoc-typehints@3.2.0...3.3.0

jquast/wcwidth (wcwidth)

v0.2.14

Compare Source

0.2.14 2025-09-22

  • Drop Support for Python 2.7 and 3.5. PR #​117.
  • Update tables to include Unicode Specifications 16.0.0 and 17.0.0.
    PR #​146.
  • Bugfix U+00AD SOFT HYPHEN should measure as 1, versions 0.2.9 through
    0.2.13 measured as 0. PR #​149.

Full Changelog: jquast/wcwidth@0.2.13...0.2.14


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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.

@coveralls
Copy link

coveralls commented Jul 29, 2025

Pull Request Test Coverage Report for Build 18548096743

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 88.382%

Totals Coverage Status
Change from base Build 18457452006: 0.0%
Covered Lines: 989
Relevant Lines: 1119

💛 - Coveralls

@renovate renovate bot changed the title chore(deps): update dependency docutils to v0.22 chore(deps): update all non-major dependencies Jul 31, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 9482deb to 1bfe177 Compare August 7, 2025 13:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f8075b9 to c4467bc Compare August 14, 2025 21:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from b66db3e to ba52ed7 Compare August 23, 2025 17:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 27cb26b to 5d1a9cd Compare September 1, 2025 22:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from fe6fc95 to 88b4f8a Compare September 9, 2025 17:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from e5960f1 to d8d0f12 Compare September 19, 2025 01:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7edb64f to 3ffb232 Compare September 22, 2025 16:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4e0bbc5 to bd1cc8a Compare October 2, 2025 20:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from e1336b5 to 8254ae4 Compare October 9, 2025 21:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 39adf82 to ba08301 Compare October 15, 2025 17:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ba08301 to 06b9b63 Compare October 16, 2025 02:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant