Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the minor-and-patches group with 5 updates:

Package From To
typer 0.17.3 0.17.4
pytest 8.4.1 8.4.2
ruff 0.12.11 0.12.12
checkov 3.2.469 3.2.470
reuse 5.0.2 5.1.1

Updates typer from 0.17.3 to 0.17.4

Release notes

Sourced from typer's releases.

0.17.4

Fixes

  • 🐛 Make sure rich.markup is imported when rendering help text. PR #1290 by @​g-arjones.

Internal

Changelog

Sourced from typer's changelog.

0.17.4

Fixes

  • 🐛 Make sure rich.markup is imported when rendering help text. PR #1290 by @​g-arjones.

Internal

Commits
  • 1b50007 🔖 Release version 0.17.4
  • 90aab51 📝 Update release notes
  • 263e427 🐛 Make sure rich.markup is imported when rendering help text (#1290)
  • f99defb 📝 Update release notes
  • f116fca ⬆ Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 (#1292)
  • 9c5c543 📝 Update release notes
  • 4c21293 📝 Update release notes
  • bdf4710 ⬆ Bump ruff from 0.12.10 to 0.12.11 (#1283)
  • e8e472d ⬆ [pre-commit.ci] pre-commit autoupdate (#1288)
  • 075eb30 📝 Update release notes
  • Additional commits viewable in compare view

Updates pytest from 8.4.1 to 8.4.2

Release notes

Sourced from pytest's releases.

8.4.2

pytest 8.4.2 (2025-09-03)

Bug fixes

  • #13478: Fixed a crash when using console_output_style{.interpreted-text role="confval"} with times and a module is skipped.

  • #13530: Fixed a crash when using pytest.approx{.interpreted-text role="func"} and decimal.Decimal{.interpreted-text role="class"} instances with the decimal.FloatOperation{.interpreted-text role="class"} trap set.

  • #13549: No longer evaluate type annotations in Python 3.14 when inspecting function signatures.

    This prevents crashes during module collection when modules do not explicitly use from __future__ import annotations and import types for annotations within a if TYPE_CHECKING: block.

  • #13559: Added missing [int]{.title-ref} and [float]{.title-ref} variants to the [Literal]{.title-ref} type annotation of the [type]{.title-ref} parameter in pytest.Parser.addini{.interpreted-text role="meth"}.

  • #13563: pytest.approx{.interpreted-text role="func"} now only imports numpy if NumPy is already in sys.modules. This fixes unconditional import behavior introduced in [8.4.0]{.title-ref}.

Improved documentation

  • #13577: Clarify that pytest_generate_tests is discovered in test modules/classes; other hooks must be in conftest.py or plugins.

Contributor-facing changes

  • #13480: Self-testing: fixed a few test failures when run with -Wdefault or a similar override.
  • #13547: Self-testing: corrected expected message for test_doctest_unexpected_exception in Python 3.14.
  • #13684: Make pytest's own testsuite insensitive to the presence of the CI environment variable -- by ogrisel{.interpreted-text role="user"}.
Commits
  • bfae422 Prepare release version 8.4.2
  • 8990538 Fix passenv CI in tox ini and make tests insensitive to the presence of the C...
  • ca676bf Merge pull request #13687 from pytest-dev/patchback/backports/8.4.x/e63f6e51c...
  • 975a60a Merge pull request #13686 from pytest-dev/patchback/backports/8.4.x/12bde8af6...
  • 7723ce8 Merge pull request #13683 from even-even/fix_Exeption_to_Exception_in_errorMe...
  • b7f0568 Merge pull request #13685 from CoretexShadow/fix/docs-pytest-generate-tests
  • 2c94c4a add missing colon (#13640) (#13641)
  • c3d7684 Merge pull request #13606 from pytest-dev/patchback/backports/8.4.x/5f9938563...
  • dc6e3be Merge pull request #13605 from The-Compiler/training-update-2025-07
  • f87289c Fix crash with times output style and skipped module (#13573) (#13579)
  • Additional commits viewable in compare view

Updates ruff from 0.12.11 to 0.12.12

Release notes

Sourced from ruff's releases.

0.12.12

Release Notes

Preview features

  • Show fixes by default (#19919)
  • [airflow] Convert DatasetOrTimeSchedule(datasets=...) to AssetOrTimeSchedule(assets=...) (AIR311) (#20202)
  • [airflow] Improve the AIR002 error message (#20173)
  • [airflow] Move airflow.operators.postgres_operator.Mapping from AIR302 to AIR301 (#20172)
  • [flake8-async] Implement blocking-input rule (ASYNC250) (#20122)
  • [flake8-use-pathlib] Make PTH119 and PTH120 fixes unsafe because they can change behavior (#20118)
  • [pylint] Add U+061C to PLE2502 (#20106)
  • [ruff] Fix false negative for empty f-strings in deque calls (RUF037) (#20109)

Bug fixes

  • Less confidently mark f-strings as empty when inferring truthiness (#20152)
  • [fastapi] Fix false positive for paths with spaces around parameters (FAST003) (#20077)
  • [flake8-comprehensions] Skip C417 when lambda contains yield/yield from (#20201)
  • [perflint] Handle tuples in dictionary comprehensions (PERF403) (#19934)

Rule changes

  • [pycodestyle] Preserve return type annotation for ParamSpec (E731) (#20108)

Documentation

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.12.12

Preview features

  • Show fixes by default (#19919)
  • [airflow] Convert DatasetOrTimeSchedule(datasets=...) to AssetOrTimeSchedule(assets=...) (AIR311) (#20202)
  • [airflow] Improve the AIR002 error message (#20173)
  • [airflow] Move airflow.operators.postgres_operator.Mapping from AIR302 to AIR301 (#20172)
  • [flake8-async] Implement blocking-input rule (ASYNC250) (#20122)
  • [flake8-use-pathlib] Make PTH119 and PTH120 fixes unsafe because they can change behavior (#20118)
  • [pylint] Add U+061C to PLE2502 (#20106)
  • [ruff] Fix false negative for empty f-strings in deque calls (RUF037) (#20109)

Bug fixes

  • Less confidently mark f-strings as empty when inferring truthiness (#20152)
  • [fastapi] Fix false positive for paths with spaces around parameters (FAST003) (#20077)
  • [flake8-comprehensions] Skip C417 when lambda contains yield/yield from (#20201)
  • [perflint] Handle tuples in dictionary comprehensions (PERF403) (#19934)

Rule changes

  • [pycodestyle] Preserve return type annotation for ParamSpec (E731) (#20108)

Documentation

Commits
  • c6516e9 Bump 0.12.12 (#20242)
  • 1aaa084 [ty] More tests for TypedDict (#20205)
  • b49aa35 Split LICENSE addendum by derivation type (#20222)
  • 1e34f3f [ty] Fix small test typo (#20220)
  • 77b2cee [ty] Add functions for revealing assignability/subtyping constraints (#20217)
  • 200349c [flake8-comprehensions] Skip C417 when lambda contains yield/`yield fro...
  • 0d4f7dd [ty] Treat __new__ as a static method (#20212)
  • cb1ba0d Expose Indentation in ruff_python_codegen (#20216)
  • cda376a [ty]eliminate definitely-impossible types from union in equality narrowing (#...
  • b14fc96 Update Rust crate tracing-subscriber to v0.3.20 (#20162)
  • Additional commits viewable in compare view

Updates checkov from 3.2.469 to 3.2.470

Changelog

Sourced from checkov's changelog.

CHANGELOG

Unreleased

Commits

Updates reuse from 5.0.2 to 5.1.1

Release notes

Sourced from reuse's releases.

v5.1.1

Fixed

  • Fixed repository file detection using jujutsu versions 0.19.0 or later. (#1191)
  • Fixed a bug that caused not all strings to be marked translatable. This bug was introduced in v5.0.0. Strings that were already translated before the release of v5.0.0 are now translated again. (#1216)

v5.1.0

Added

  • Added new file extensions:
    • .dtd (#1141)
    • .gperf (#1131)
    • Erlang .erl and .hrl, leex and yecc Erlang parser generators .xrl and .yrl (#1117)
    • Elixir (.ex and .exs) (#1117)
    • Gleam (.gleam) (#1117)
    • Lean (.lean, .olean, and .ilean) (#1188)
  • Added --json flag to the supported-licenses subcommand. (#1187)

Changed

  • Revert Cargo.lock to uncommentable. (#1169)
  • reuse annotate previously would insert a newline after a header, which is not always a desirable behavior. Instead of inserting a newline, reuse annotate will now respect the existing whitespace of the file where the header is being placed. When the license header is being added to a file for the first time, a space will be added after the license, but subsequent updates to the header will leave the whitespace alone. (#1136)
  • Updated spdx-license-list-data to v3.27.0.
Changelog

Sourced from reuse's changelog.

v5.1.1 - 2025-09-05

Fixed

  • Fixed repository file detection using jujutsu versions 0.19.0 or later. (#1191)
  • Fixed a bug that caused not all strings to be marked translatable. This bug was introduced in v5.0.0. Strings that were already translated before the release of v5.0.0 are now translated again. (#1216)

v5.1.0 - 2025-09-04

Added

  • Added new file extensions:
    • .dtd (#1141)
    • .gperf (#1131)
    • Erlang .erl and .hrl, leex and yecc Erlang parser generators .xrl and .yrl (#1117)
    • Elixir (.ex and .exs) (#1117)
    • Gleam (.gleam) (#1117)
    • Lean (.lean, .olean, and .ilean) (#1188)
  • Added --json flag to the supported-licenses subcommand. (#1187)

Changed

  • Revert Cargo.lock to uncommentable. (#1169)
  • reuse annotate previously would insert a newline after a header, which is not always a desirable behavior. Instead of inserting a newline, reuse annotate will now respect the existing whitespace of the file where the header is being placed. When the license header is being added to a file for the first time, a space will be added after the license, but subsequent updates to the header will leave the whitespace alone. (#1136)
  • Updated spdx-license-list-data to v3.27.0.
Commits
  • ba42a0b Generate change log
  • 2122643 Bump version: v5.1.0 → v5.1.1
  • 5e8cb95 Update reuse.pot
  • b659b97 Merge pull request #1191 from PigeonF/push-rplntwzsortz
  • 7fc4be3 Merge pull request #1216 from carmenbianca/fix-globstar-makefile
  • 1db9830 Correctly include all gettext strings in .pot file
  • 99c9ad9 Correct invocation for jujutsu file listing
  • ab9acaa Merge pull request #1215 from carmenbianca/release-5.1.0
  • d6b23ab Add a step to the release check list
  • 634a182 Regenerate poetry.lock
  • 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

Bumps the minor-and-patches group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [typer](https://github.com/fastapi/typer) | `0.17.3` | `0.17.4` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.4.1` | `8.4.2` |
| [ruff](https://github.com/astral-sh/ruff) | `0.12.11` | `0.12.12` |
| [checkov](https://github.com/bridgecrewio/checkov) | `3.2.469` | `3.2.470` |
| [reuse](https://github.com/fsfe/reuse-tool) | `5.0.2` | `5.1.1` |


Updates `typer` from 0.17.3 to 0.17.4
- [Release notes](https://github.com/fastapi/typer/releases)
- [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md)
- [Commits](fastapi/typer@0.17.3...0.17.4)

Updates `pytest` from 8.4.1 to 8.4.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.4.1...8.4.2)

Updates `ruff` from 0.12.11 to 0.12.12
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.12.11...0.12.12)

Updates `checkov` from 3.2.469 to 3.2.470
- [Release notes](https://github.com/bridgecrewio/checkov/releases)
- [Changelog](https://github.com/bridgecrewio/checkov/blob/main/CHANGELOG.md)
- [Commits](bridgecrewio/checkov@3.2.469...3.2.470)

Updates `reuse` from 5.0.2 to 5.1.1
- [Release notes](https://github.com/fsfe/reuse-tool/releases)
- [Changelog](https://github.com/fsfe/reuse-tool/blob/main/CHANGELOG.md)
- [Commits](fsfe/reuse-tool@v5.0.2...v5.1.1)

---
updated-dependencies:
- dependency-name: typer
  dependency-version: 0.17.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patches
- dependency-name: pytest
  dependency-version: 8.4.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patches
- dependency-name: ruff
  dependency-version: 0.12.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patches
- dependency-name: checkov
  dependency-version: 3.2.470
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patches
- dependency-name: reuse
  dependency-version: 5.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patches
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 8, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 8, 2025 22:19
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 8, 2025
Copy link

github-actions bot commented Sep 8, 2025

dyff of changes in rendered templates of CI manifests

No changes in rendered templates

@gaelgatelement gaelgatelement force-pushed the dependabot/pip/minor-and-patches-8c189c1fc3 branch from d9cfb0b to 8536a55 Compare September 9, 2025 08:10
@gaelgatelement gaelgatelement merged commit c32df26 into main Sep 9, 2025
67 of 68 checks passed
@gaelgatelement gaelgatelement deleted the dependabot/pip/minor-and-patches-8c189c1fc3 branch September 9, 2025 08:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants