Skip to content

fix(deps): update all dependencies#494

Merged
nirtal85 merged 1 commit into
mainfrom
renovate/all
Jun 1, 2026
Merged

fix(deps): update all dependencies#494
nirtal85 merged 1 commit into
mainfrom
renovate/all

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jun 1, 2026

This PR contains the following updates:

Package Type Update Change Age Confidence
allure-framework/allure-action action minor v0.6.6v0.7.0 age confidence
astral-sh/ruff-pre-commit repository patch v0.15.12v0.15.15 age confidence
pytest-flakiness dependency-groups major ==0.18.0==1.0.0 age confidence
pytest-rerunfailures project.dependencies minor ==16.1==16.3 age confidence
requests (changelog) project.dependencies minor ==2.33.1==2.34.2 age confidence
ruff (source, changelog) dependency-groups patch ==0.15.12==0.15.15 age confidence
selenium project.dependencies minor ==4.43.0==4.44.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

allure-framework/allure-action (allure-framework/allure-action)

v0.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: allure-framework/allure-action@v0...v0.7.0

astral-sh/ruff-pre-commit (astral-sh/ruff-pre-commit)

v0.15.15

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.15

v0.15.14

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.14

v0.15.13

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.13

flakiness/pytest-flakiness (pytest-flakiness)

v1.0.0

Compare Source

pytest-flakiness graduates to 1.0

The pytest plugin's options and the emitted JSON report are now considered stable; future breaking changes will follow semver. This release aligns pytest-flakiness with the rest of the Flakiness reporter family — Playwright, Vitest, Jest, and Cucumber-JS — which are already on 1.x.

What's Changed

Full Changelog: flakiness/pytest-flakiness@v0.18.0...v1.0.0

pytest-dev/pytest-rerunfailures (pytest-rerunfailures)

v16.3

Compare Source

Features
++++++++

  • Add --reruns-mode option (strict or append). With append,
    marker reruns and the global --reruns / reruns ini setting are summed
    instead of the marker taking strict priority. Default is strict so
    existing behaviour is unchanged.
    Fixes #&#8203;321 <https://github.com/pytest-dev/pytest-rerunfailures/issues/321>_.

  • Add --rerun-show-tracebacks option to display tracebacks from failed
    attempts that were retried, including tests that eventually passed. The
    rerun summary section is emitted automatically when the flag is set, so
    -rR is no longer required to see the tracebacks.
    Fixes #&#8203;156 <https://github.com/pytest-dev/pytest-rerunfailures/issues/156>_.

v16.2

Compare Source

Breaking changes
++++++++++++++++

  • Drop support for pytest 8.0. Minimum pytest version is now 8.1.

Features
++++++++

  • Add support for pytest 9.0.

Bug fixes
+++++++++

  • Fix missing teardown for session and module scoped fixtures when fixture teardown fails.
    Fixes #&#8203;314 <https://github.com/pytest-dev/pytest-rerunfailures/issues/314>_.

  • Clear fixture finalizers when removing cached results from failed fixtures
    to fix compatibility with pytest >= 9, which asserts that _finalizers is
    empty before executing a fixture.
    Fixes #&#8203;323 <https://github.com/pytest-dev/pytest-rerunfailures/issues/323>_.

  • Accept exception classes (not only regex strings) in the only_rerun and
    rerun_except marker keyword arguments instead of crashing with an
    internal error.
    Fixes #&#8203;275 <https://github.com/pytest-dev/pytest-rerunfailures/issues/275>_.

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)
astral-sh/ruff (ruff)

v0.15.15

Compare Source

Released on 2026-05-28.

Preview features
  • Fix Markdown closing fence handling (#​25310)
  • [pyflakes] Report duplicate imports in typing.TYPE_CHECKING block (F811) (#​22560)
Bug fixes
  • [pyflakes] Treat function-scope bare annotations as locals per PEP 526 (F821) (#​21540)
Performance
  • Avoid redundant TokenValue drops in the lexer (#​25300)
  • Reduce memory usage by dropping token-excess capacity and improve performance by approximating the initial tokens Vec size (#​25354)
  • Use ThinVec in AST to shrink Stmt (#​25361)
Documentation
  • Fix line-length example for --config option (#​25389)
  • [flake8-comprehensions] Document RecursionError edge case in __len__ (C416) (#​25286)
  • [mccabe] Improve example (C901) (#​25287)
  • [pyupgrade] Clarify fix safety docs (UP007, UP045) (#​25288)
  • [refurb] Document FURB192 exception change for empty sequences (#​25317)
  • [ruff] Document false negative for user-defined types (RUF013) (#​25289)
Formatter
  • Fix formatting of lambdas nested within f-strings (#​25398)
Server
  • Return code action for codeAction/resolve requests that contain no or no valid URL (#​25365)
Other changes
  • Expand semantic syntax errors for invalid walruses (#​25415)
Contributors

v0.15.14

Compare Source

Released on 2026-05-21.

Preview features
  • [airflow] Implement airflow-task-implicit-multiple-outputs (AIR202) (#​25152)
  • [flake8-use-pathlib] Mark PTH101 fix as unsafe when first argument is a class attribute annotated as int (#​25086)
  • [pylint] Implement too-many-try-statements (W0717) (#​23970)
  • [ruff] Add incorrect-decorator-order (RUF074) (#​23461)
  • [ruff] Add fallible-context-manager (RUF075) (#​22844)
Bug fixes
  • Fix lambda formatting in interpolated string expressions (#​25144)
  • Treat generic frozenset annotations as immutable (#​25251)
  • [flake8-type-checking] Avoid strict behavior when future-annotations are enabled (TC001, TC002, TC003) (#​25035)
  • [pylint] Avoid false positives in else clause (PLR1733) (#​25177)
Rule changes
  • [flake8-comprehensions] Skip C417 for lambdas with positional-only parameters (#​25272)
  • [flake8-simplify] Preserve f-string source verbatim in SIM101 fix (#​25061)
Performance
  • Avoid unnecessary parser lookahead for operators (#​25290)
Documentation
  • Update code example setting Neovim LSP log level (#​25284)
Other changes
Contributors

v0.15.13

Compare Source

Released on 2026-05-14.

Preview features
  • Add a rule to flag lazy imports that are eagerly evaluated (#​25016)
  • [pylint] Standardize diagnostic message (PLR0914, PLR0917) (#​24996)
Bug fixes
  • Fix F811 false positive for class methods (#​24933)
  • Fix setting selection for multi-folder workspace (#​24819)
  • [eradicate] Fix false positive for lines with leading whitespace (ERA001) (#​25122)
  • [flake8-pyi] Fix false positive for f-string debug specifier (PYI016) (#​24098)
Rule changes
  • Always include panic payload in panic diagnostic message (#​24873)
  • Restrict PYI034 for in-place operations to enclosing class (#​24511)
  • Improve error message for parameters that are declared global (#​24902)
  • Update known stdlib (#​25103)
Performance
  • [isort] Avoid constructing glob::Patterns for literal known modules (#​25123)
CLI
  • Add TOML examples to --config help text (#​25013)
  • Colorize ruff check 'All checks passed' (#​25085)
Configuration
  • Increase max allowed value of line-length setting (#​24962)
Documentation
  • Add D203 to rules that conflict with the formatter (#​25044)
  • Clarify COM819 and formatter interaction (#​25045)
  • Clarify that NotImplemented is a value, not an exception (F901) (#​25054)
  • Update number of lint rules supported (#​24942)
Other changes
  • Simplify the playground's markdown template (#​24924)
Contributors

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "monthly"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Jun 1, 2026

Allure Report Summary

Name Duration Stats New Flaky Retry Report
Allure Report – Pull request #494 5ms Passed tests 1 1 0 0

@renovate renovate Bot temporarily deployed to github-pages June 1, 2026 03:44 Inactive
@nirtal85 nirtal85 merged commit fd78bde into main Jun 1, 2026
6 checks passed
@nirtal85 nirtal85 deleted the renovate/all branch June 1, 2026 06:38
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