Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 2, 2025

Bumps the minor group with 3 updates: asyncclick, time-machine and hypothesis.

Updates asyncclick from 8.1.8 to 8.2.2.2

Changelog

Sourced from asyncclick's changelog.

.. currentmodule:: asyncclick

asyncclick 8

  • Drop the version attribute. Use :mod:pkg_resouces or :mod:importlib.metadata (since Python 3.8) instead.
  • Drop enter_context and enter_async_context. Use Context.with_resourceand Context.with_async_resource instead.
  • The Context.close() method is now async and thus has been renamed to Context.aclose().
  • You can now select the AnyIO back-end to use with the @asyncclick.async_backend(NAME) decorator. The old method of setting asyncclick.anyio_backend=NAME still works.

Version 8.2.2

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 functino _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

Version 8.2.1

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

Version 8.2.0

... (truncated)

Commits

Updates time-machine from 2.16.0 to 2.19.0

Changelog

Sourced from time-machine's changelog.

2.19.0 (2025-08-19)

  • Add marker support to :doc:the pytest plugin <pytest_plugin>. Decorate tests with @pytest.mark.time_machine(<destination>) to set time during a test, affecting function-level fixtures as well.

    Thanks to Javier Buzzi in PR [#499](https://github.com/adamchainz/time-machine/issues/499) <https://github.com/adamchainz/time-machine/pull/499>__.

  • Add asynchronous context manager support to time_machine.travel(). You can now use async with time_machine.travel(...): in asynchronous code, per :ref:the documentation <travel-context-manager>.

    PR [#556](https://github.com/adamchainz/time-machine/issues/556) <https://github.com/adamchainz/time-machine/issues/556>__.

  • Import date and time functions once in the C extension.

    This should improve speed a little bit, and avoid segmentation faults when the functions have been swapped out, such as when freezegun is in effect. (time-machine still won’t apply if freezegun is in effect.)

    PR [#555](https://github.com/adamchainz/time-machine/issues/555) <https://github.com/adamchainz/time-machine/issues/555>__.

2.18.0 (2025-08-18)

  • Update the :ref:migration CLI <migration-cli> to detect unittest classes based on whether they use self.assert* methods like self.assertEqual().

  • Fix free-threaded Python warning: RuntimeWarning: The global interpreter lock (GIL) has been enabled... as seen on Python 3.13+.

    Thanks to Javier Buzzi in PR [#531](https://github.com/adamchainz/time-machine/issues/531) <https://github.com/adamchainz/time-machine/pull/531>__.

  • Add support to travel() for datetime destinations with tzinfo set to datetime.UTC (datetime.timezone.utc).

    Thanks to Lawrence Law in PR [#502](https://github.com/adamchainz/time-machine/issues/502) <https://github.com/adamchainz/time-machine/pull/502>__.

  • Prevent segmentation faults in unlikely scenarios, such as if the time_machine module cannot be imported.

    PR [#543](https://github.com/adamchainz/time-machine/issues/543) <https://github.com/adamchainz/time-machine/pull/543>, PR [#545](https://github.com/adamchainz/time-machine/issues/545) <https://github.com/adamchainz/time-machine/pull/545>.

  • Make travel() fully unpatch date and time functions when travel ends. This may fix certain edge cases.

    Issue [#532](https://github.com/adamchainz/time-machine/issues/532) <https://github.com/adamchainz/time-machine/issues/532>__.

2.17.0 (2025-08-05)

  • Include wheels for Python 3.14.

    Thanks to Edgar Ramírez Mondragón in PR [#521](https://github.com/adamchainz/time-machine/issues/521) <https://github.com/adamchainz/time-machine/pull/521>__.

  • Support free-threaded Python.

... (truncated)

Commits

Updates hypothesis from 6.136.8 to 6.138.13

Release notes

Sourced from hypothesis's releases.

Hypothesis for Python - version 6.138.13

Fix a typo affecting pretty-printing of lambdas with complex default arguments.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.138.12

Improve automatic detection of the CI profile on various vendor- specific CI systems.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.138.11

This patch updates our vendored list of top-level domains, which is used by the provisional "domains()" strategy.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.138.10

Internal refactor to simplify "SearchStrategy".

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.138.9

This patch further improves stringification of lambdas, by never returning a lambda source unless it is confirmed to compile to the same code object. This stricter check makes it possible to widen the search for a matching source block, so that it can often be found even if the file has been edited.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.138.8

Fixes a race condition under threading when using "deferred()".

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.138.7

Improves upon the cache eviction problem workaround of v6.135.12.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.138.6

Documentation tweaks.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.138.5

Fixes a race condition under threading for strategies which trigger our filter-rewriting rules, like "st.integers().filter(lambda x:

... (truncated)

Commits
  • f09c331 Bump hypothesis-python version to 6.138.13 and update changelog
  • 717d957 Merge pull request #4532 from jobh/fix-4531
  • 214c17e Strengthen lambda key size test
  • 3db87b3 Fix typo (#4531)
  • 34c0255 Bump hypothesis-python version to 6.138.12 and update changelog
  • aa4f3cf Merge pull request #4530 from Liam-DeVoe/next2
  • c239456 simplify code
  • 0d71df0 update tests
  • c7f43f3 Merge branch 'master' into next2
  • 7a08af1 Bump hypothesis-python version to 6.138.11 and update changelog
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added part:tooling Affects the development tooling (CI, deployment, dependency management, etc.) type:tech-debt Improves the project without visible changes for users labels Sep 2, 2025
@dependabot dependabot bot requested review from a team as code owners September 2, 2025 03:22
@dependabot dependabot bot added the type:tech-debt Improves the project without visible changes for users label Sep 2, 2025
llucax
llucax previously approved these changes Sep 2, 2025
@llucax llucax enabled auto-merge September 2, 2025 07:51
@dependabot dependabot bot force-pushed the dependabot/pip/minor-4b9c0d8ceb branch from ed65385 to 765ca40 Compare September 2, 2025 08:03
@llucax
Copy link
Contributor

llucax commented Sep 2, 2025

nox > mypy
src/frequenz/client/dispatch/main.py:674: error: "object" not callable [operator]

@Marenz Marenz force-pushed the dependabot/pip/minor-4b9c0d8ceb branch from 765ca40 to d59e4a6 Compare September 2, 2025 16:00
@github-actions github-actions bot added the part:test-utils Affects the test utilities label Sep 2, 2025
@Marenz
Copy link
Contributor

Marenz commented Sep 2, 2025

nox > mypy src/frequenz/client/dispatch/main.py:674: error: "object" not callable [operator]

This error originates from the update of asyncclick to v8.2.2.2. It seems there are some issues with that version.
The other issues originate from the newest release of the base-client which adds waiting for initial_metadata and changes the stream_method type.

My commits intend to fix this, but fail to fix the inital_metadata part so far.

@Marenz Marenz force-pushed the dependabot/pip/minor-4b9c0d8ceb branch from d59e4a6 to 2b55d8e Compare September 2, 2025 16:26
Bumps the minor group with 2 updates: [time-machine](https://github.com/adamchainz/time-machine) and [hypothesis](https://github.com/HypothesisWorks/hypothesis).

Updates `time-machine` from 2.16.0 to 2.19.0
- [Changelog](https://github.com/adamchainz/time-machine/blob/main/docs/changelog.rst)
- [Commits](adamchainz/time-machine@2.16.0...2.19.0)

Updates `hypothesis` from 6.136.8 to 6.138.13
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.136.8...hypothesis-python-6.138.13)

---
updated-dependencies:
- dependency-name: time-machine
  dependency-version: 2.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: hypothesis
  dependency-version: 6.138.13
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@Marenz Marenz force-pushed the dependabot/pip/minor-4b9c0d8ceb branch from 2b55d8e to 77120cf Compare September 2, 2025 16:27
@Marenz
Copy link
Contributor

Marenz commented Sep 2, 2025

Updated to be based on my ci-fix PR and to not update asyncclick.

@Marenz Marenz added cmd:skip-release-notes It is not necessary to update release notes for this PR status:blocked Other issues must be resolved before this can be worked on labels Sep 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cmd:skip-release-notes It is not necessary to update release notes for this PR part:dispatcher part:test-utils Affects the test utilities part:tooling Affects the development tooling (CI, deployment, dependency management, etc.) status:blocked Other issues must be resolved before this can be worked on type:tech-debt Improves the project without visible changes for users
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants