Skip to content

fix(deps): update all dependencies#198

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all
Open

fix(deps): update all dependencies#198
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 12, 2026

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/dependency-review-action action major v4v5.0.0 age confidence
googleapis/release-please-action action major v4v5 age confidence
mypy (changelog) dev major ^1.2^2.0.0 age confidence
orgoro/coverage action minor v3.2v3.3 age confidence
pre-commit dev minor 4.5.14.6.0 age confidence
pre-commit/mirrors-mypy repository major v1.19.1v2.1.0 age confidence
pre-commit/pre-commit repository minor v4.5.1v4.6.0 age confidence
psf/black repository minor 26.3.026.5.1 age confidence
pytest-cov (changelog) dependencies minor 7.0.07.1.0 age confidence

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

actions/dependency-review-action (actions/dependency-review-action)

v5.0.0: 5.0.0

Compare Source

This is a new major version of the Dependency Review Action which updates the runtime to node24. This requires a minimum Actions Runner version v2.327.1 to run.

What's Changed

New Contributors

Full Changelog: actions/dependency-review-action@v4.9.0...v5.0.0

googleapis/release-please-action (googleapis/release-please-action)

v5.0.0

Compare Source

⚠ BREAKING CHANGES
Features
Bug Fixes

v5.0

Compare Source

v5

Compare Source

v4.4.1

Compare Source

v4.4.0

Compare Source

Features
  • add ability to select versioning-strategy and release-as (#​1121) (ee0f5ba)
Bug Fixes
  • changelog-host parameter ignored when using manifest configuration (#​1151) (535c413)
  • bump mocha from 11.7.1 to 11.7.2 in the npm_and_yarn group across 1 directory (#​1149) (3612a99)
  • bump release-please from 17.1.2 to 17.1.3 (#​1158) (66fbfe9)

v4.4

Compare Source

v4.3.0

Compare Source

Features
  • deps: update release-please to 17.1.2 (f07192c)

v4.3

Compare Source

v4.2.0

Compare Source

Features
  • support for skip-labeling parameter for GitHub action (#​1066) (fb7f385)

v4.2

Compare Source

v4.1.5

Compare Source

Bug Fixes

v4.1.4

Compare Source

Bug Fixes

v4.1.3

Compare Source

Bug Fixes

v4.1.2

Compare Source

Bug Fixes

v4.1.1

Compare Source

Bug Fixes

v4.1.0

Compare Source

Features

v4.1

Compare Source

v4.0.3

Compare Source

Bug Fixes

v4.0.2

Compare Source

Bug Fixes

v4.0.1

Compare Source

Bug Fixes
python/mypy (mypy)

v2.1.0

Compare Source

v2.0.0

Compare Source

v1.20.2

Compare Source

v1.20.1

Compare Source

  • Always disable sync in SQLite cache (Ivan Levkivskyi, PR 21184)
  • Temporarily skip few base64 tests (Ivan Levkivskyi, PR 21193)
  • Revert dict.__or__ typeshed change (Ivan Levkivskyi, PR 21186)
  • Fix narrowing for match case with variadic tuples (Shantanu, PR 21192)
  • Avoid narrowing type[T] in type calls (Shantanu, PR 21174)
  • Fix regression for catching empty tuple in except (Shantanu, PR 21153)
  • Fix reachability for frozenset and dict view narrowing (Shantanu, PR 21151)
  • Fix narrowing with chained comparison (Shantanu, PR 21150)
  • Avoid narrowing to unreachable at module level (Shantanu, PR 21144)
  • Allow dangerous identity comparisons to Any typed variables (Shantanu, PR 21142)
  • --warn-unused-config should not be a strict flag (Ivan Levkivskyi, PR 21139)

v1.20.0

Compare Source

orgoro/coverage (orgoro/coverage)

v3.3.1: — renamed files counted as modified

Compare Source

Fix

  • compareCommits was only counting files with status added or modified. The GitHub compare API also returns renamed for git rename detection — those files were silently dropped, so refactor PRs that rename files lost coverage tracking on them. Now renamed files are included as modified. (#​350, originally proposed in #​325 by @​mangunowsky)

Full changelog: orgoro/coverage@v3.3...v3.3.1

v3.3: — node24 runtime, configurable title, docs

Compare Source

Runtime

  • bumps action runtime from node20 to node24
  • internal: TypeScript ^5.4, @types/node ^24, jest/ts-jest ^29

Features

  • new title input — heading text for the PR comment. Default changed from Python Coverage to Code Coverage since the action works for any language producing cobertura xml. Setting a unique value per matrix entry (e.g. Python Coverage 3.10, Python Coverage 3.11) posts separate comments instead of overwriting one shared one. Closes #​328, #​320.

Docs

  • README now documents required token permissions (contents: read, pull-requests: write). Closes #​310.

Fixes

  • overall-coverage table column LinesStatements to match coverage.py terminology. Closes #​250.

⚠️ Upgrade note

The default title changed from Python Coverage to Code Coverage. The first post-upgrade run will create a new comment instead of updating the existing Python Coverage one (the old comment becomes orphaned on each open PR). To preserve the old behavior, pin the title:

- uses: orgoro/coverage@v3.3
  with:
    coverageFile: path/to/coverage.xml
    token: ${{ secrets.GITHUB_TOKEN }}
    title: "Python Coverage"

Full changelog: orgoro/coverage@v3.2...v3.3

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

v4.6.0

Compare Source

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

Features
  • pre-commit hook-impl: allow --hook-dir to be missing to enable easier
    usage with git 2.54+ git hooks.
Fixes
pre-commit/mirrors-mypy (pre-commit/mirrors-mypy)

v2.1.0

Compare Source

v2.0.0

Compare Source

v1.20.2

Compare Source

v1.20.1

Compare Source

v1.20.0

Compare Source

psf/black (psf/black)

v26.5.1

Compare Source

Stable style
  • Fix unstable formatting of annotated assignments whose subscript annotation contains
    an inline comment (e.g. x: list[ # pyright: ignore[...]) (#​5130)
  • Preserve inline comments (including # type: ignore) immediately before a
    # fmt: skip line, avoiding AST equivalence failures (#​5139)
Packaging
  • Correct the version in the published executables (#​5137)
Documentation
  • Add Neovim integration guide covering conform.nvim, ALE, and simple command approaches
    (#​5124)

v26.5.0

Compare Source

Highlights
  • Add support for unpacking in comprehensions (PEP 798) and for lazy imports (PEP 810),
    both new syntactic features in Python 3.15 (#​5048)
  • Python 3.15 is now supported. Compiled wheels are not yet provided for Python 3.15, so
    performance may be slower than on existing Python versions. Wheels will be provided
    once Python 3.15 is later in its release cycle. (#​5127)
Stable style
  • Fix # fmt: skip being ignored in nested if expressions with parenthesized in
    clauses (#​4903)
  • Add syntactic support for Python 3.15 (#​5048)
  • Fix crash when an f-string follows a # fmt: off comment inside brackets (#​5097)
  • Preserve multiline compound statement headers when # fmt: skip is placed on the
    colon line (#​5117)
Preview style
  • Improve heuristics around whether blank lines should appear before, within and after
    groups of same-name decorated functions (such as @overload groups) in .pyi stub
    files (#​5021)
  • Fix blank lines being removed between a function and a decorated class in .pyi stub
    files (#​5092)
  • Prevent string merger from creating unsplittable long lines when a pragma comment
    (e.g. # type: ignore) follows the closing bracket (#​5096)
Packaging
Output
  • Improve parse error readability by showing multi-line output with an error pointer.
    (#​5068)
  • Add SourceASTParseError to distinguish source parse failures from internal safety
    errors, improving error reporting when Black's lenient parser accepts input that
    ast.parse() rejects (#​5080)
Blackd
  • Return HTTP 400 (Bad Request) for source parse failures instead of HTTP 500, keeping
    HTTP 500 only for genuine internal safety errors (#​5080)
Integrations
  • Added documentation for doctest formatting tools and updated the integrations index to
    match (#​4916)
Documentation
  • Use "Version X.Y.Z" headings in changelog for stable permalink anchors on ReadTheDocs
    (#​5063)
  • Note in the editor integrations that the SublimeText sublack plugin is archived and
    unmaintained (#​5082)

v26.3.1

Compare Source

Stable style
  • Prevent Jupyter notebook magic masking collisions from corrupting cells by using
    exact-length placeholders for short magics and aborting if a placeholder can no longer
    be unmasked safely (#​5038)
Configuration
  • Always hash cache filename components derived from --python-cell-magics so custom
    magic names cannot affect cache paths (#​5038)
Blackd
  • Disable browser-originated requests by default, add configurable origin allowlisting
    and request body limits, and bound executor submissions to improve backpressure
    (#​5039)
pytest-dev/pytest-cov (pytest-cov)

v7.1.0

Compare Source

  • Fixed total coverage computation to always be consistent, regardless of reporting settings.
    Previously some reports could produce different total counts, and consequently can make --cov-fail-under behave different depending on
    reporting options.
    See #&#8203;641 <https://github.com/pytest-dev/pytest-cov/issues/641>_.

  • Improve handling of ResourceWarning from sqlite3.

    The plugin adds warning filter for sqlite3 ResourceWarning unclosed database (since 6.2.0).
    It checks if there is already existing plugin for this message by comparing filter regular expression.
    When filter is specified on command line the message is escaped and does not match an expected message.
    A check for an escaped regular expression is added to handle this case.

    With this fix one can suppress ResourceWarning from sqlite3 from command line::

    pytest -W "ignore:unclosed database in <sqlite3.Connection object at:ResourceWarning" ...

  • Various improvements to documentation.
    Contributed by Art Pelling in #&#8203;718 <https://github.com/pytest-dev/pytest-cov/pull/718>_ and
    "vivodi" in #&#8203;738 <https://github.com/pytest-dev/pytest-cov/pull/738>.
    Also closed #&#8203;736 <https://github.com/pytest-dev/pytest-cov/issues/736>
    .

  • Fixed some assertions in tests.
    Contributed by in Markéta Machová in #&#8203;722 <https://github.com/pytest-dev/pytest-cov/pull/722>_.

  • Removed unnecessary coverage configuration copying (meant as a backup because reporting commands had configuration side-effects before coverage 5.0).


Configuration

📅 Schedule: (UTC)

  • 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 is behind base branch, 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 requested a review from NaffanDroo as a code owner March 12, 2026 04:41
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Mar 12, 2026

☂️ Python Coverage

current status: ✅

Overall Coverage

Lines Covered Coverage Threshold Status
3 3 100% 0% 🟢

New Files

No new covered files...

Modified Files

No covered modified files...

updated for commit: 02c487b by action🐍

@renovate renovate Bot changed the title fix(deps): update pre-commit hook psf/black to v26.3.1 fix(deps): update all dependencies Mar 21, 2026
@renovate renovate Bot force-pushed the renovate/all branch 3 times, most recently from 1ca8f16 to 5ec3aa0 Compare April 7, 2026 21:31
@renovate renovate Bot force-pushed the renovate/all branch 3 times, most recently from 9754097 to abb2d23 Compare April 14, 2026 05:47
@renovate renovate Bot force-pushed the renovate/all branch 5 times, most recently from 424462b to 02c487b Compare April 27, 2026 23:33
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Apr 30, 2026

☂️ Code Coverage

current status: ✅

Overall Coverage

Statements Covered Coverage Threshold Status
3 3 100% 0% 🟢

New Files

No new covered files...

Modified Files

No covered modified files...

updated for commit: 029870b by action🐍

@renovate renovate Bot force-pushed the renovate/all branch 5 times, most recently from e32c9b5 to deeb81f Compare May 12, 2026 12:13
@renovate renovate Bot force-pushed the renovate/all branch 2 times, most recently from 4478885 to 648d80d Compare May 18, 2026 16:00
@renovate renovate Bot force-pushed the renovate/all branch from 648d80d to 029870b Compare May 18, 2026 18:58
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