Skip to content

Bump the minor group with 4 updates - #327

Merged
frequenz-auto-dependabot[bot] merged 1 commit into
v1.x.xfrom
dependabot/pip/minor-9edd1156f5
Sep 1, 2026
Merged

Bump the minor group with 4 updates#327
frequenz-auto-dependabot[bot] merged 1 commit into
v1.x.xfrom
dependabot/pip/minor-9edd1156f5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 4 updates: types-protobuf, nox, time-machine and hypothesis.

Updates types-protobuf from 7.34.1.20260518 to 7.35.1.20260827

Commits

Updates nox from 2026.7.11 to 2026.8.17

Release notes

Sourced from nox's releases.

2026.08.17 🪟

This is a small follow-up release to better support running the parallel mode on legacy windows.

We'd like to thank the following folks who contributed to this release:

Fixes:

Internal changes:

2026.08.10 🔀

This release can run sessions in parallel with --parallel/-j (experimental for now, report any bugs!). Requires session opt-in, or use --allow-parallel. Interpreter discovery now uses the python-discovery package, which should be better at finding Python and supports version specifier sets. Using this, script mode reads requires-python. Many bugs were fixed, mostly in Python version handling, conda version specifiers, and option precedence. Unrecognized global options are now an error.

We'd like to thank the following folks who contributed to this release:

Features:

Fixes:

... (truncated)

Changelog

Sourced from nox's changelog.

Changelog

2026.08.17

This is a small follow-up release to better support running the parallel mode on legacy windows.

We'd like to thank the following folks who contributed to this release:

Fixes:

Internal changes:

2026.08.10

This release can run sessions in parallel with --parallel/-j (experimental for now, report any bugs!). Requires session opt-in, or use --allow-parallel. Interpreter discovery now uses the python-discovery package, which should be better at finding Python and supports version specifier sets. Using this, script mode reads requires-python. Many bugs were fixed, mostly in Python version handling, conda version specifiers, and option precedence. Unrecognized global options are now an error.

We'd like to thank the following folks who contributed to this release:

Features:

... (truncated)

Commits
  • a976d7e docs: prepare 2026.08.17 release notes (#1168)
  • ade83de chore: tighten mypy and pytest config (#1167)
  • c699c47 fix: support legacy encodings in parallel reporter (#1160)
  • f85d050 chore(deps): bump pre-commit hooks, hold pyproject-fmt at 2.26.0 (#1163)
  • 4b9d946 chore(deps): bump the github-actions group with 2 updates (#1162)
  • 57f9e10 docs: prepare 2026.08.10 release notes (#1156)
  • c7134d4 fix: isolate script mode from inherited PYTHONPATH (#1157)
  • aad0ea8 fix: require virtualenv 21+ on Python 3.15 (#1158)
  • 00c9566 fix: conda version constraints on Windows (#1146)
  • 1d6b258 fix: drop stale type ignores for argcomplete 3.7.2 (#1155)
  • Additional commits viewable in compare view

Updates time-machine from 3.2.0 to 3.5.0

Changelog

Sourced from time-machine's changelog.

3.5.0 (2026-08-25)

  • Support None as a destination for travel() and Traveller.move_to(), meaning the current time. Use this with tick=False to freeze time at the present moment, matching freezegun’s behaviour when freeze_time() is called with no arguments.

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

  • Extend the :ref:Migration CLI <migration-cli> to migrate aliased imports: import freezegun as fg and from freezegun import freeze_time as ft, plus calls using such aliases.

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

  • Extend the :ref:Migration CLI <migration-cli> to migrate the pytest.mark.freeze_time marker in module-level and class-level pytestmark assignments.

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

  • Extend the :ref:Migration CLI <migration-cli> to migrate freeze_time() calls and markers that pass tz_offset with a literal zero value. The argument is dropped, since a zero offset has no effect.

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

  • Extend the :ref:Migration CLI <migration-cli> to migrate freeze_time() calls and markers that pass real_asyncio. The argument is dropped, whatever its value, since time-machine does not mock time.monotonic(), so asyncio event loops always see real time.

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

  • Extend the :ref:Migration CLI <migration-cli> to migrate freeze_time() calls and markers with no destination argument, which freeze at the current time. None is added as the destination, using the new support for None destinations (above).

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

  • Extend the :ref:Migration CLI <migration-cli> to migrate freeze_time() calls and markers that pass ignore. The argument is dropped, since it works around problems with freezegun’s module patching, which time-machine’s C-level mocking doesn’t have.

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

  • Make the :ref:Migration CLI <migration-cli> report freezegun-related usages that it recognizes but cannot migrate, with their positions, like:

    .. code-block:: console

    example/tests.py:9:2: freeze_time usage not migrated

    This makes it easier to find and fix the remaining usages manually.

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

  • Make the :ref:Migration CLI <migration-cli> report files that cannot be parsed, rather than skipping them silently. This helps notice files using syntax from a newer Python version than the tool is run with.

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

... (truncated)

Commits
  • 19a2af0 Version 3.5.0
  • def0c67 Add PR links to changelog
  • c31d98c Make Migration CLI report files that cannot be parsed (#674)
  • d0c4319 Extend Migration CLI to migrate FrozenDateTimeFactory (#673)
  • 5593830 Improve start/stop migration performance (#672)
  • 3c82f59 Extend Migration CLI to drop ignore arguments (#671)
  • 5fbc5ef Extend Migration CLI to migrate raw-use start()/stop() assignments (#670)
  • a1c34c6 Make Migration CLI report unmigrated freezegun usages (#669)
  • a9d66bf Make Migration CLI report unmigrated freezegun usages (#668)
  • c979ebc Extend Migration CLI to migrate freeze_time() calls with no destination (#667)
  • Additional commits viewable in compare view

Updates hypothesis from 6.163.0 to 6.165.10

Commits
  • 6384dee Bump hypothesis version to 6.165.10 and update changelog
  • c7ca59d Merge pull request #4864 from dgutson/claude-stateful-and-example
  • 3fc38f1 claude: teach /hypothesis about stateful tests and @​example
  • 16f24b7 Merge pull request #4862 from Zac-HD/claude/upstream-regex-issues-fkke9q
  • 48ce446 Bump hypothesis version to 6.165.9 and update changelog
  • d559a69 Merge pull request #4860 from Liam-DeVoe/optimize-single-branch-one-of
  • 3a19d89 fix context flag restoration
  • 2408c99 drop unecessary empty check
  • 3f94912 Clarify re.ASCII wording in changelog entry
  • 9d0a9a8 Fix from_regex handling of negative classes, re.ASCII, and zero-min repeats
  • 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 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

Bumps the minor group with 4 updates: [types-protobuf](https://github.com/python/typeshed), [nox](https://github.com/wntrblm/nox), [time-machine](https://github.com/adamchainz/time-machine) and [hypothesis](https://github.com/HypothesisWorks/hypothesis).


Updates `types-protobuf` from 7.34.1.20260518 to 7.35.1.20260827
- [Commits](https://github.com/python/typeshed/commits)

Updates `nox` from 2026.7.11 to 2026.8.17
- [Release notes](https://github.com/wntrblm/nox/releases)
- [Changelog](https://github.com/wntrblm/nox/blob/main/CHANGELOG.md)
- [Commits](wntrblm/nox@2026.07.11...2026.08.17)

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

Updates `hypothesis` from 6.163.0 to 6.165.10
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@v6.163.0...v6.165.10)

---
updated-dependencies:
- dependency-name: types-protobuf
  dependency-version: 7.35.1.20260827
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: nox
  dependency-version: 2026.8.17
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: time-machine
  dependency-version: 3.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: hypothesis
  dependency-version: 6.165.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@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 1, 2026
@dependabot
dependabot Bot requested review from a team as code owners September 1, 2026 15:35
@dependabot
dependabot Bot requested review from stefan-brus-frequenz and removed request for a team September 1, 2026 15:35
@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 1, 2026
@dependabot
dependabot Bot requested review from daniel-zullo-frequenz and removed request for a team September 1, 2026 15:36
@frequenz-auto-dependabot frequenz-auto-dependabot Bot added the tool:auto-merged Auto-approved Dependabot PRs label Sep 1, 2026
@frequenz-auto-dependabot
frequenz-auto-dependabot Bot added this pull request to the merge queue Sep 1, 2026
Merged via the queue into v1.x.x with commit f9d48f3 Sep 1, 2026
30 checks passed
@frequenz-auto-dependabot
frequenz-auto-dependabot Bot deleted the dependabot/pip/minor-9edd1156f5 branch September 1, 2026 15:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

part:dispatcher part:tooling Affects the development tooling (CI, deployment, dependency management, etc.) tool:auto-merged Auto-approved Dependabot PRs type:tech-debt Improves the project without visible changes for users

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants