Skip to content

Update all non-major dependencies#403

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#403
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 31, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
bandit (source, changelog) ==1.8.6==1.9.4 age confidence dependency-groups minor
mypy (changelog) ==1.17.1==1.19.1 age confidence dependency-groups minor
pylint (changelog) ==4.0.2==4.0.5 age confidence dependency-groups patch
pytest (changelog) ==8.4.1==8.4.2 age confidence dependency-groups patch
pytest-httpserver ==1.1.3==1.1.5 age confidence dependency-groups patch
python 3.133.14 age confidence uses-with minor
python 3.13-alpine3.14-alpine age confidence final minor
tox (changelog) ==4.28.4==4.47.3 age confidence dependency-groups minor
uv_build (source, changelog) >=0.9.5,<0.10.0>=0.10.8,<0.11.0 age confidence build-system.requires minor
werkzeug (changelog) ==3.1.3==3.1.6 age confidence dependency-groups patch
wheel (changelog) ==0.45.1==0.46.3 age confidence dependency-groups minor
yamllint ==1.37.1==1.38.0 age confidence dependency-groups minor

Release Notes

PyCQA/bandit (bandit)

v1.9.4

Compare Source

What's Changed
New Contributors

Full Changelog: PyCQA/bandit@1.9.3...1.9.4

v1.9.3

Compare Source

What's Changed

New Contributors

Full Changelog: PyCQA/bandit@1.9.2...1.9.3

v1.9.2

Compare Source

What's Changed

Full Changelog: PyCQA/bandit@1.9.1...1.9.2

v1.9.1

Compare Source

What's Changed

Full Changelog: PyCQA/bandit@1.9.0...1.9.1

python/mypy (mypy)

v1.19.1

Compare Source

  • Fix noncommutative joins with bounded TypeVars (Shantanu, PR 20345)
  • Respect output format for cached runs by serializing raw errors in cache metas (Ivan Levkivskyi, PR 20372)
  • Allow types.NoneType in match cases (A5rocks, PR 20383)
  • Fix mypyc generator regression with empty tuple (BobTheBuidler, PR 20371)
  • Fix crash involving Unpack-ed TypeVarTuple (Shantanu, PR 20323)
  • Fix crash on star import of redefinition (Ivan Levkivskyi, PR 20333)
  • Fix crash on typevar with forward ref used in other module (Ivan Levkivskyi, PR 20334)
  • Fail with an explicit error on PyPy (Ivan Levkivskyi, PR 20389)

v1.19.0

Compare Source

v1.18.2

Compare Source

  • Fix crash on recursive alias (Ivan Levkivskyi, PR 19845)
  • Add additional guidance for stubtest errors when runtime is object.__init__ (Stephen Morton, PR 19733)
  • Fix handling of None values in f-string expressions in mypyc (BobTheBuidler, PR 19846)

v1.18.1

Compare Source

pylint-dev/pylint (pylint)

v4.0.5

Compare Source

What's new in Pylint 4.0.5?

Release date: 2026-02-20

False Positives Fixed

  • Fix possibly-used-before-assignment false positive when using self.fail() in tests.

    Closes #​10743

  • Fixed false positive for logging-unsupported-format when no arguments are provided to logging functions.

    According to Python's logging documentation, no formatting is performed when no arguments are supplied, so strings like logging.error("%test") are valid.

    Closes #​10752

  • Fix a false positive for invalid-name where a dataclass field typed with Final
    was evaluated against the class_const regex instead of the class_attribute regex.

    Closes #​10790

  • Avoid emitting unspecified-encoding (W1514) when py-version is 3.15+.

    Refs #​10791

Other Bug Fixes

  • Fix --known_third_party config being ignored.

    Closes #​10801

  • Fixed dynamic color mapping for "fail-on" messages when using multiple reporter/output formats.

    Closes #​10825

  • dependency on isort is now set to <9, permitting to use isort 8.

    Closes #​10857

v4.0.4

Compare Source

What's new in Pylint 4.0.4?

Release date: 2025-11-30

False Positives Fixed

  • Fixed false positive for invalid-name where module-level constants were incorrectly classified as variables when a class-level attribute with the same name exists.

    Closes #​10719

  • Fix a false positive for invalid-name on an UPPER_CASED name inside an if branch that assigns an object.

    Closes #​10745

v4.0.3

Compare Source

What's new in Pylint 4.0.3?

Release date: 2025-11-13

False Positives Fixed

  • Add Enum dunder methods _generate_next_value_, _missing_, _numeric_repr_, _add_alias_, and _add_value_alias_ to the list passed to --good-dunder-names.

    Closes #​10435

  • Fixed false positive for invalid-name with typing.Annotated.

    Closes #​10696

  • Fix false positive for f-string-without-interpolation with template strings
    when using format spec.

    Closes #​10702

  • Fix a false positive when an UPPER_CASED class attribute was raising an
    invalid-name when typed with Final.

    Closes #​10711

  • Fix a false positive for unbalanced-tuple-unpacking when a tuple is assigned to a function call and the structure of the function's return value is ambiguous.

    Closes #​10721

Other Bug Fixes

  • Make 'ignore' option work as expected again.

    Closes #​10669

  • Fix crash for consider-using-assignment-expr when a variable annotation without assignment
    is used as the if test expression.

    Closes #​10707

  • Fix crash for prefer-typing-namedtuple and consider-math-not-float when
    a slice object is called.

    Closes #​10708

pytest-dev/pytest (pytest)

v8.4.2

Compare Source

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"}.
csernazs/pytest-httpserver (pytest-httpserver)

v1.1.5

Compare Source

=====

.. _Release Notes_1.1.5_New Features:

New Features

  • Add bake() method to HTTPServer for creating pre-configured
    request expectation proxies (BakedHTTPServer). This allows sharing
    common keyword arguments (e.g. method, headers) across multiple
    expect_request() calls with last-wins merging semantics.
    #&#8203;470 <https://github.com/csernazs/pytest-httpserver/pull/470>_
    Contributed by @HayaoSuzuki <https://github.com/HayaoSuzuki>_

.. _Release Notes_1.1.4:

v1.1.4

Compare Source

=====

.. _Release Notes_1.1.4_New Features:

New Features

  • More robust server startup by checking server readiness (disabled by
    default).
    #&#8203;462 <https://github.com/csernazs/pytest-httpserver/pull/462>_

.. _Release Notes_1.1.4_Deprecation Notes:

Deprecation Notes

  • Python 3.9 has been deprecated as it reached EOL 2025-10-31. While the code
    may work on this version, there will be no CI tests running on it.

.. _Release Notes_1.1.3:

actions/python-versions (python)

v3.14.3: 3.14.3

Compare Source

Python 3.14.3

v3.14.2: 3.14.2

Compare Source

Python 3.14.2

v3.14.1: 3.14.1

Compare Source

Python 3.14.1

v3.14.0: 3.14.0

Compare Source

Python 3.14.0

tox-dev/tox (tox)

v4.47.3

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.47.2...4.47.3

v4.47.2

Compare Source

What's Changed
New Contributors

Full Changelog: tox-dev/tox@4.47.1...4.47.2

v4.47.1

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.47.0...4.47.1

v4.47.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.46.3...4.47.0

v4.46.3

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.46.2...4.46.3

v4.46.2

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.46.1...4.46.2

v4.46.1

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.46.0...4.46.1

v4.46.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.45.0...4.46.0

v4.45.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.44.0...4.45.0

v4.44.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.43.0...4.44.0

v4.43.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.42.0...4.43.0

v4.42.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.41.0...4.42.0

v4.41.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.40.0...4.41.0

v4.40.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.39.0...4.40.0

v4.39.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.38.0...4.39.0

v4.38.0

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.37.0...4.38.0

v4.37.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.36.1...4.37.0

v4.36.1

Compare Source

What's Changed

Full Changelog: tox-dev/tox@4.36.0...4.36.1

v4.36.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.35.0...4.36.0

v4.35.0

Compare Source

What's Changed

New Contributors


Configuration

📅 Schedule: 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 becomes conflicted, 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 maxdymond August 31, 2025 09:56
@renovate renovate bot changed the title Update dependency tox to v4.29.0 Update dependency tox to v4.30.1 Sep 3, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 442d3f6 to 6062773 Compare September 3, 2025 16:56
@renovate renovate bot changed the title Update dependency tox to v4.30.1 Update all non-major dependencies Sep 4, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3ad8b03 to c846920 Compare September 6, 2025 17:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c846920 to 10be4d7 Compare September 13, 2025 00:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 25df641 to 23d2c10 Compare September 19, 2025 02:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3a5b4a4 to 6bf9381 Compare October 7, 2025 19:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6bf9381 to 267306e Compare October 9, 2025 21:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a503a82 to 7810ce5 Compare October 29, 2025 10:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0e1d35a to 99c437d Compare November 18, 2025 02:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 8846368 to 64d2df1 Compare November 30, 2025 14:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 88e1e19 to b47a2fb Compare December 8, 2025 06:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from dfc4212 to b4549d8 Compare January 30, 2026 04:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from bc2f8f7 to 57c7026 Compare February 7, 2026 05:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 2934b74 to bbc24a9 Compare February 16, 2026 15:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from ca774c8 to f69b187 Compare February 23, 2026 23:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from feffcfb to bfd161a Compare February 25, 2026 02:40
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