Skip to content

Update all non-major dependencies#38

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#38
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 10, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
autopep8 ==2.3.1==2.3.2 age adoption passing confidence dev-packages patch
boxsdk (source) ==3.12.0==3.14.0 age adoption passing confidence packages minor
click (changelog) ==8.1.8==8.3.1 age adoption passing confidence packages minor
confluent-kafka ==2.6.1==2.13.2 age adoption passing confidence packages minor
flake8 (changelog) ==7.1.1==7.3.0 age adoption passing confidence dev-packages minor
hvac ==2.3.0==2.4.0 age adoption passing confidence packages minor
ibm-db ==3.2.7==3.2.8 age adoption passing confidence packages patch
mock (source) ==5.1.0==5.2.0 age adoption passing confidence dev-packages minor
pep8-naming (changelog) ==0.14.1==0.15.1 age adoption passing confidence dev-packages minor
pipenv ==2024.4.0==2024.4.1 age adoption passing confidence dev-packages patch
pre-commit ==4.0.1==4.5.1 age adoption passing confidence packages minor
pre-commit ==4.0.1==4.5.1 age adoption passing confidence dev-packages minor
prometheus-client ==0.21.1==0.24.1 age adoption passing confidence packages minor
psycopg2-binary (source, changelog) ==2.9.10==2.9.11 age adoption passing confidence packages patch
pyjwt ==2.10.1==2.11.0 age adoption passing confidence packages minor
pytest (changelog) ==8.3.4==8.4.2 age adoption passing confidence packages minor
pytest (changelog) ==8.3.4==8.4.2 age adoption passing confidence dev-packages minor
pytest-cov (changelog) ==6.0.0==6.3.0 age adoption passing confidence dev-packages minor
python 3.12-slim3.14-slim age adoption passing confidence final minor
responses (changelog) ==0.25.3==0.26.0 age adoption passing confidence dev-packages minor
typing-extensions (changelog) ==4.12.2==4.15.0 age adoption passing confidence packages minor

Release Notes

hhatto/autopep8 (autopep8)

v2.3.2

Compare Source

What's Changed

New Contributors

Full Changelog: hhatto/autopep8@v2.3.1...v2.3.2

box/box-python-sdk (boxsdk)

v3.14.0

Compare Source

New Features and Enhancements:
  • Add stream_file_content parameter to upload methods (#​890) (0e63c00)

v3.13.0

Compare Source

New Features and Enhancements:
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

confluentinc/confluent-kafka-python (confluent-kafka)

v2.13.2

v2.13.2 is a maintenance release with the following fixes and enhancements:

Enhancements
  • Add Confluent-Client-Version header to requests to SR, Python client (#​2148)
  • Add UAMI OAuth changes (#​2189)
Fixes
  • Fixed memory leak in Producer.produce() when called with headers and raises BufferError (queue full) or RuntimeError (producer closed). The allocated rd_headers memory is now properly freed in error paths before returning. Fixes Issue #​2167.
  • Fixed type hinting of KafkaError class, Consumer.__init()__, Producer.__init()__, Producer.produce() and Consumer.commit() and introduced a script in tools directory to keep error codes up to date. Fixes Issue #​2168.
  • Fix the token expiration logic in SR Oauth (#​2177)
  • Ensure use of cachetools is thread-safe (#​2178)
  • Remove passing resolver in json validate (#​2186)
  • Fix JSON schema resolver bug (#​2188)

v2.13.0

v2.13.0 is a feature release with the following features, fixes and enhancements:

Enhancements
  • Enforced type hinting for all interfaces
  • Handle OAuth Token Refreshes using background thread for Admin, Producer and Consumer clients (#​2130)
  • Added black and isort linting rules and enforcement to codebase (#​2133, #​2137)
  • Enabled direct creation of Message objects (#​2128)
  • Added close() method to producer (#​2039)
  • Added context manager for librdkafka classes to enable easy scope cleanup (#​2114)
  • Expose deterministic partitioner functions (#​2116)
  • Add Accept-Version header for schemas (#​2117)
  • Enhanced the BufferTimeoutManager to flush the librdkafka queue
  • Remove experimental module designation for Async classes (#​2143)
  • Add __len__ function to AIOProducer (#​2140)
  • Enhance Message class to include serialisation support and rich comparison (#​2153)
  • Support Strict Validation Flags in Avro Serializers (#​2147)
Fixes
  • Type hint __enter__ to return the same object type that called it (#​2157)
  • Fixed Consumer.poll(), Consumer.consume(), Producer.poll(), and Producer.flush() blocking indefinitely and not responding to Ctrl+C (KeyboardInterrupt) signals. The implementation now uses a "wakeable poll" pattern that breaks long blocking calls into smaller chunks (200ms) and periodically re-acquires the Python GIL to check for pending signals. This allows Ctrl+C to properly interrupt blocking operations. Fixes Issues #​209 and #​807 (#​2126).
  • Fix support for wrapped Avro unions (#​2134)
  • Fixed segfault exceptions on calls against objects that had closed internal objects (#​2122)
  • Handle evolution during field transformation of schemas (#​2121)
  • Handle null group name to prevent segfault in Admin list_consumer_group_offsets() (#​2118)
  • Ensure schemaId initialization is thread-safe (#​2120)
  • Fix error propagation rule for Python's C API
  • Fix SR delete behavior with client-side caching
  • Don't leave NewTopic partially-initialized on error (#​2151)
  • Fix formatting issue of TopicPartition that causes SystemError on Windows (#​2141)
  • Add Py_None check for msg and offset params in commit() and store_offsets() (#​2145)
  • Fix experimental module references (#​2144)
  • Update outdated example in README.md (#​2150)

confluent-kafka-python v2.13.0 is based on librdkafka v2.13.0, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.12.2

v2.12.2 - 2025-11-06

v2.12.2 is a maintenance release with the following change:

Schema Registry Client

  • Handled evolution during field transformation
  • Changed Accept-Version to Confluent-Accept-Unknown-Properties in request header

v2.12.1

v2.12.1 is a maintenance release with the following fixes:

  • Restored macOS binaries compatibility with macOS 13
  • libversion() now returns the string/integer tuple for varients on version -- use version() for string only response
  • Added Python 3.14 support and dropped 3.7 support -- Free-threaded capabilities not fully supported yet
  • Fixed use.schema.id in sr.lookup_schema()
  • Removed tomli dependency from standard (non-documentation) requirements
  • Fixed experimental asyncio example files to correctly use new capabilities
  • Fixed invalid argument error on schema lookups on repeat requests
  • Fixed documentation generation and added error checks for builds to prevent future breaks

v2.12.0

v2.12.0 is a feature release with the following enhancements:

KIP-848 – General Availability

Starting with confluent-kafka-python 2.12.0, the next generation consumer group rebalance protocol defined in KIP-848 is production-ready. Please refer to the following migration guide for moving from classic to consumer protocol.

Note: The new consumer group protocol defined in KIP-848 is not enabled by default. There are few contract change associated with the new protocol and might cause breaking changes. group.protocol configuration property dictates whether to use the new consumer protocol or older classic protocol. It defaults to classic if not provided.

AsyncIO Producer (experimental)

Introduces beta class AIOProducer for asynchronous message production in asyncio applications.

Added
  • AsyncIO Producer (experimental): Introduces beta class AIOProducer for
    asynchronous message production in asyncio applications. This API offloads
    blocking librdkafka calls to a thread pool and schedules common callbacks
    (error_cb, throttle_cb, stats_cb, oauth_cb, logger) onto the event
    loop for safe usage inside async frameworks.
Features
  • Batched async produce: await AIOProducer(...).produce(topic, value=...)
    buffers messages and flushes when the buffer threshold or timeout is reached.
  • Async lifecycle: await producer.flush(), await producer.purge(), and
    transactional operations (init_transactions, begin_transaction,
    commit_transaction, abort_transaction).
Limitations
  • Per-message headers are not supported in the current batched async produce
    path. If headers are required, use the synchronous Producer.produce(...) or
    offload a sync produce call to a thread executor within your async app.
Guidance
  • Use the AsyncIO Producer inside async apps/servers (FastAPI/Starlette, aiohttp,
    asyncio tasks) to avoid blocking the event loop.
  • For batch jobs, scripts, or highest-throughput pipelines without an event
    loop, the synchronous Producer remains recommended.
Enhancement and Fixes
  • Kafka OAuth/OIDC metadata based authentication examples with Azure IMDS (#​2083).

confluent-kafka-python v2.12.0 is based on librdkafka v2.12.0, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.11.1

v2.11.1 is a maintenance release with the following fixes:

confluent-kafka-python v2.11.1 is based on librdkafka v2.11.1, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.11.0

v2.11.0 is a feature release with the following enhancements:

confluent-kafka-python v2.11.0 is based on librdkafka v2.11.0, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.10.1

v2.10.1 is a maintenance release with the following fixes:

  • Handled None value for optional ctx parameter in ProtobufDeserializer (#​1939)
  • Handled None value for optional ctx parameter in AvroDeserializer (#​1973)
  • Handled ctx=None for AvroDeserializer and ProtobufDeserializer in call (#​1974)
  • Fix possible NPE in CSFLE executor (#​1980)
  • Support for schema id in header (#​1978)
  • Raise an error if Protobuf deprecated format is specified (#​1986)
  • Implement Async Schema Registry client (#​1965)

confluent-kafka-python v2.10.1 is based on librdkafka v2.10.1, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.10.0

v2.10.0 is a feature release with the following fixes and enhancements:

  • [KIP-848] Group Config is now supported in AlterConfigs, IncrementalAlterConfigs and DescribeConfigs. (#​1856)
  • [KIP-848] describe_consumer_groups() now supports KIP-848 introduced consumer groups. Two new fields for consumer group type and target assignment have also been added. Type defines whether this group is a classic or consumer group. Target assignment is only valid for the consumer protocol and its defaults to NULL. (#​1873).

confluent-kafka-python v2.10.0 is based on librdkafka v2.10.0, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.9.0

v2.9.0 is a feature release with the following fixes and enhancements:

  • Add Client Credentials OAuth support for Schema Registry (#​1919)
  • Add custom OAuth support for Schema Registry (#​1925)
  • Add utilities to convert decimals from/to Protobuf (#​1946)
  • Add support for passing schema ID during serialization (#​1949)

confluent-kafka-python v2.9.0 is based on librdkafka v2.8.0, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.8.2

v2.8.1

v2.8.0

v2.9.0 is a feature release with the following fixes and enhancements:

  • Add Client Credentials OAuth support for Schema Registry (#​1919)
  • Add custom OAuth support for Schema Registry (#​1925)
  • Add utilities to convert decimals from/to Protobuf (#​1946)
  • Add support for passing schema ID during serialization (#​1949)

confluent-kafka-python v2.9.0 is based on librdkafka v2.8.0, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.7.0

v2.7.0 is a feature release with the features, fixes and enhancements present in v2.6.2 including the following fix:

  • Added missing dependency on googleapis-common-protos when using protobufs. (#​1881, @​tenzer)

confluent-kafka-python v2.7.0 is based on librdkafka v2.6.1, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

v2.6.2

[!WARNING]
Due to an error in which we included dependency changes to a recent patch release, Confluent recommends users to refrain from upgrading to 2.6.2 of Confluent Kafka. Confluent will release a new minor version, 2.7.0, where the dependency changes will be appropriately included. Users who have already upgraded to 2.6.2 and made the required dependency changes are free to remain on that version and are recommended to upgrade to 2.7.0 when that version is available. Upon the release of 2.7.0, the 2.6.2 version will be marked deprecated.
We apologize for the inconvenience and appreciate the feedback that we have gotten from the community.

v2.6.2 is a feature release with the following features, fixes and enhancements:

Note: This release modifies the dependencies of the Schema Registry client.
If you are using the Schema Registry client, please ensure that you install the
extra dependencies using the following syntax:

pip install confluent-kafka[schemaregistry]

or

pip install confluent-kafka[avro,schemaregistry]

Please see the README.md for more information.

  • Support for Data Contracts with Schema Registry, including
    • Data Quality rules
    • Data Transformation rules
    • Client-Side Field Level Encryption (CSFLE)
    • Schema Migration rules (requires Python 3.9+)
  • Migrated the Schema Registry client from requests to httpx
  • Add support for multiple URLs (#​409)
  • Allow configuring timeout (#​622)
  • Fix deletion semantics (#​1127)
  • Python deserializer can take SR client (#​1174)
  • Fix handling of Avro unions (#​1562)
  • Remove deprecated RefResolver for JSON (#​1840)
  • Support delete of subject version (#​1851)

confluent-kafka-python is based on librdkafka v2.6.1, see the
librdkafka release notes
for a complete list of changes, enhancements, fixes and upgrade considerations.

pycqa/flake8 (flake8)

v7.3.0

Compare Source

v7.2.0

Compare Source

v7.1.2

Compare Source

hvac/hvac (hvac)

v2.4.0

Compare Source

🚀 Features
  • add audience param to kubernetes role creation (GH-1224)
📚 Documentation
  • docs: fix AppRole.login docstring (GH-1182)
🧰 Miscellaneous
  • Fix a typo in read_secret_version warning message (GH-1219)
  • Pin consul version in CI (GH-1210)
testing-cabal/mock (mock)

v5.2.0

Compare Source

This is release is in memory of Michael Foord__, who originally authored the mock package
and passed away in January 2025.

__ https://discuss.python.org/t/in-memoriam-michael-foord-1974-2025/78317

  • gh-65454: :func:unittest.mock.Mock.attach_mock no longer triggers a call
    to a PropertyMock being attached.

  • gh-117765: Improved documentation for :func:unittest.mock.patch.dict

  • gh-124176: Add support for :func:dataclasses.dataclass in
    :func:unittest.mock.create_autospec. Now create_autospec will check
    for potential dataclasses and use :func:dataclasses.fields function to
    retrieve the spec information.

  • gh-123934: Fix :class:unittest.mock.MagicMock reseting magic methods
    return values after .reset_mock(return_value=True) was called.

  • gh-90848: Fixed :func:unittest.mock.create_autospec to configure parent
    mock with keyword arguments.

  • gh-113569: Indicate if there were no actual calls in unittest
    :meth:~unittest.mock.Mock.assert_has_calls failure.

  • gh-122858: Deprecate :func:!asyncio.iscoroutinefunction in favor of
    :func:inspect.iscoroutinefunction.

  • gh-104745: Limit starting a patcher (from :func:unittest.mock.patch or
    :func:unittest.mock.patch.object) more than once without stopping it

  • gh-75988: Fixed :func:unittest.mock.create_autospec to pass the call
    through to the wrapped object to return the real result.

  • gh-119600: Fix :func:unittest.mock.patch to not read attributes of the
    target when new_callable is set. Patch by Robert Collins.

  • gh-113407: Fix import of :mod:unittest.mock when CPython is built
    without docstrings.

  • gh-120732: Fix name passing to :class:unittest.mock.Mock object when
    using :func:unittest.mock.create_autospec.

PyCQA/pep8-naming (pep8-naming)

v0.15.1

Compare Source

  • N808 now allows type variable names to start with an underscore.

v0.15.0

Compare Source

  • Add support for Python 3.13.
  • Drop support for Python 3.8.
  • N808 checks type variable names use the CapWords convention and have an appropriate suffix.
pypa/pipenv (pipenv)

v2024.4.1

Compare Source

Version v2024.4.1

Bug Fixes

  • Running "pipenv shell" on MacOS in Powershell (pwsh) references incorrect Activate.ps1 _
  • Fix repr(Shell) _
  • Fix incorrect path for 'pipenv shell' _
  • Fix license declaration for PyPI _

Vendored Libraries

  • Remove click.echo from exceptions.py _

Contributors

@​aidencullo
@​oz123
@​samer-shah
@​shdarrina
@​shaneikennedy
@​socram8888

pre-commit/pre-commit (pre-commit)

v4.5.1

Compare Source

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

Fixes
  • Fix language: python with repo: local without additional_dependencies.

v4.5.0

Compare Source

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

Features

v4.4.0

Compare Source

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

Features
Fixes

v4.3.0

Compare Source

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

Features

v4.2.0

Compare Source

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

Features
  • For language: python first attempt a versioned python executable for
    the default language version before consulting a potentially unversioned
    sys.executable.
Fixes

v4.1.0

Compare Source

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

Features
Fixes
prometheus/client_python (prometheus-client)

v0.24.1

Compare Source

v0.24.0

Compare Source

What's Changed

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.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b4fa99c to 7c51b95 Compare May 17, 2025 03:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7c51b95 to 57a4d1c Compare May 24, 2025 15:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d32835a to e2e6312 Compare June 6, 2025 16:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e2e6312 to 1cc4cd2 Compare June 15, 2025 00:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1cc4cd2 to 7a00c0c Compare June 22, 2025 04:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7a00c0c to b935f2f Compare July 5, 2025 11:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from cbfa655 to 0cda841 Compare August 9, 2025 03:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8812c19 to a06f6c8 Compare August 23, 2025 07:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 26e1944 to 65a7772 Compare September 8, 2025 20:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 65a7772 to d7ee3e0 Compare September 18, 2025 23:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from dee375b to 8218f5a Compare October 11, 2025 07:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8218f5a to cc578bc Compare October 25, 2025 07:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cc578bc to f533fdf Compare November 8, 2025 12:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f533fdf to 0ef74d5 Compare November 16, 2025 19:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f8e02ce to c6a879e Compare December 4, 2025 07:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c6a879e to 0400d53 Compare December 9, 2025 07:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0400d53 to d1c32e4 Compare January 5, 2026 20:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 67dbc90 to df9074a Compare January 15, 2026 00:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 34604e2 to 5ab1b64 Compare February 5, 2026 23:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2f361cf to 2b89e1e Compare February 21, 2026 07:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2b89e1e to 2248857 Compare March 5, 2026 15:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2248857 to 6169cf2 Compare March 8, 2026 08:18
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.

0 participants