Skip to content

Update all dependencies#328

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

Update all dependencies#328
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 8, 2026

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/github-script action major v8v9 age confidence
codecov/codecov-action action major v5v6 age confidence
fastapi (changelog) dependencies patch 0.136.10.136.3 age confidence
pytest-cov (changelog) dev minor 7.0.07.1.0 age confidence
redis final digest 1c054d5aa049e6
registry.access.redhat.com/ubi9/python-39 final digest f54df76fca62bd
requests (changelog) dependencies minor 2.33.12.34.2 age confidence
testfixtures (changelog) test major 11.0.012.0.0 age confidence

Release Notes

actions/github-script (actions/github-script)

v9.0.0

Compare Source

New features:

  • getOctokit factory function — Available directly in the script context. Create additional authenticated Octokit clients with different tokens for multi-token workflows, GitHub App tokens, and cross-org access. See Creating additional clients with getOctokit for details and examples.
  • Orchestration ID in user-agent — The ACTIONS_ORCHESTRATION_ID environment variable is automatically appended to the user-agent string for request tracing.

Breaking changes:

  • require('@​actions/github') no longer works in scripts. The upgrade to @actions/github v9 (ESM-only) means require('@​actions/github') will fail at runtime. If you previously used patterns like const { getOctokit } = require('@​actions/github') to create secondary clients, use the new injected getOctokit function instead — it's available directly in the script context with no imports needed.
  • getOctokit is now an injected function parameter. Scripts that declare const getOctokit = ... or let getOctokit = ... will get a SyntaxError because JavaScript does not allow const/let redeclaration of function parameters. Use the injected getOctokit directly, or use var getOctokit = ... if you need to redeclare it.
  • If your script accesses other @actions/github internals beyond the standard github/octokit client, you may need to update those references for v9 compatibility.
What's Changed
New Contributors

Full Changelog: actions/github-script@v8.0.0...v9.0.0

v9

Compare Source

codecov/codecov-action (codecov/codecov-action)

v6.0.1

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v6.0.0...v6.0.1

v6.0.0

Compare Source

⚠️ This version introduces support for node24 which make cause breaking changes for systems that do not currently support node24. ⚠️

What's Changed

Full Changelog: codecov/codecov-action@v5.5.4...v6.0.0

v6

Compare Source

v5.5.4

Compare Source

This is a mirror of v5.5.2. v6 will be released which requires node24

What's Changed

Full Changelog: codecov/codecov-action@v5.5.3...v5.5.4

v5.5.3

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v5.5.2...v5.5.3

v5.5.2

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.5.1..v5.5.2

v5.5.1

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.5.0..v5.5.1

v5.5.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.3..v5.5.0

v5.4.3

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3

v5.4.2

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.1..v5.4.2

v5.4.1

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.0..v5.4.1

v5.4.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.3.1..v5.4.0

v5.3.1

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.3.0..v5.3.1

v5.3.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.2.0..v5.3.0

v5.2.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.1.2..v5.2.0

v5.1.2

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.1.1..v5.1.2

v5.1.1

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.1.0..v5.1.1

v5.1.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.0.7..v5.1.0

v5.0.7

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.0.6..v5.0.7

v5.0.6

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.0.5..v5.0.6

v5.0.5

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.0.4..v5.0.5

v5.0.4

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.0.3..v5.0.4

v5.0.3

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.0.2..v5.0.3

v5.0.2

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v5.0.1...v5.0.2

v5.0.1

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v5.0.0...v5.0.1

fastapi/fastapi (fastapi)

v0.136.3

Compare Source

Refactors
  • ♻️ Do not accept underscore headers when using convert_underscores=True (the default). PR #​15589 by @​tiangolo.
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).

psf/requests (requests)

v2.34.2

Compare Source

  • Moved headers input type back to Mapping to avoid invariance issues
    with MutableMapping and inferred dict types. Users calling
    Request.headers.update() may need to narrow typing in their code. (#​7441)

v2.34.1

Compare Source

Bugfixes

  • Widened json input type from dict and list to Mapping
    and Sequence. (#​7436)
  • Changed headers input type to MutableMapping and removed None from
    Request.headers typing to improve handling for users. (#​7431)
  • Response.reason moved from str | None to str to improve handling
    for users. (#​7437)
  • Fixed a bug where some bodies with custom __getattr__ implementations
    weren't being properly detected as Iterables. (#​7433)

v2.34.0

Compare Source

Announcements

  • Requests 2.34.0 introduces inline types, replacing those provided by
    typeshed. Public API types should be fully compatible with mypy, pyright,
    and ty. We believe types are comprehensive but if you find issues, please
    report them to the pinned tracking issue.

    Special thanks to @​bastimeyer, @​cthoyt, @​edgarrmondragon, and @​srittau for
    helping review and test the types ahead of the release. (#​7272)

Improvements

  • Digest Auth hashing algorithms have added usedforsecurity=False to clarify
    security considerations. (#​7310)
  • Requests added support for Python 3.15 based on beta1. Downstream projects
    should be able to start testing prior to its release in October. (#​7422)
  • Requests added support for Python 3.14t. (#​7419)

Bugfixes

  • Response.history no longer contains a reference to itself, preventing
    accidental looping when traversing the history list. (#​7328)
  • Requests no longer performs greedy matching on no_proxy domains. The
    proxy_bypass implementation has been updated with CPython's fix from
    bpo-39057. (#​7427)
  • Requests no longer incorrectly strips duplicate leading slashes in
    URI paths. This should address user issues with specific presigned
    URLs. Note the full fix requires urllib3 2.7.0+. (#​7315)
Simplistix/testfixtures (testfixtures)

v12.0.0

Compare Source

.. warning:: Breaking changes:

  • Comparers have moved from :mod:!testfixtures.comparison to :mod:testfixtures.comparers.

  • :func:!django_compare has been removed, :func:compare now works with Django models.

  • Refactoring of :class:LogCapture to introduce support for :doc:loguru <loguru>,
    :doc:structlog <structlog> and similar support for :doc:twisted <twisted> by way of the new
    :class:~testfixtures.logcapture.CaptureSource architecture.

  • :func:compare now supports per-type ignore_eq.

  • :func:compare now supports both :doc:polars <polars> and :doc:pandas <pandas> dataframes.

  • :func:compare now provides better feedback when objects being compared raised exceptipns in
    their :any:str or :any:repr.

  • Added raises parameter to :meth:OutputCapture.compare, :meth:LogCapture.check and
    :meth:LogCapture.check_present to they can be more easily used in compositions.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "every weekend"
  • 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 review from drepelov and rbikar as code owners March 8, 2026 09:09
@github-actions
Copy link
Copy Markdown

github-actions Bot commented Mar 8, 2026

Warning: The mypy type checker has found some errors. See the mypy job for details

@codecov-commenter
Copy link
Copy Markdown

codecov-commenter commented Mar 8, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 100.00%. Comparing base (b5ad55e) to head (5b63ea9).

Additional details and impacted files
@@            Coverage Diff            @@
##            master      #328   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           21        21           
  Lines         1319      1319           
=========================================
  Hits          1319      1319           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Mar 9, 2026

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Mar 9, 2026

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 8, 2026

Warning: The mypy type checker has found some errors. See the mypy job for details

@renovate renovate Bot force-pushed the renovate/all branch from 2148051 to 21b12c2 Compare May 9, 2026 00:27
@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 9, 2026

Warning: The mypy type checker has found some errors. See the mypy job for details

@renovate renovate Bot force-pushed the renovate/all branch from 21b12c2 to 4e2ff80 Compare May 9, 2026 01:59
@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 9, 2026

Warning: The mypy type checker has found some errors. See the mypy job for details

@renovate renovate Bot force-pushed the renovate/all branch from 4e2ff80 to 09aaaa1 Compare May 11, 2026 04:46
@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@renovate renovate Bot force-pushed the renovate/all branch from 09aaaa1 to f9f9918 Compare May 11, 2026 07:03
@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@renovate renovate Bot force-pushed the renovate/all branch from f9f9918 to a896cb7 Compare May 11, 2026 08:34
@github-actions
Copy link
Copy Markdown

Warning: The mypy type checker has found some errors. See the mypy job for details

@renovate renovate Bot force-pushed the renovate/all branch 8 times, most recently from c3076c8 to 6a0fc1d Compare May 18, 2026 06:58
@renovate renovate Bot force-pushed the renovate/all branch 9 times, most recently from b87ecd8 to 3032957 Compare May 25, 2026 17:33
@renovate renovate Bot force-pushed the renovate/all branch from 3032957 to 520e4ef Compare May 26, 2026 09:55
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.

1 participant