Skip to content

chore(deps): update dev dependencies (stable/v0.8)#54

Open
renovate[bot] wants to merge 1 commit into
stable/v0.8from
renovate/stable/v0.8-dev-dependencies
Open

chore(deps): update dev dependencies (stable/v0.8)#54
renovate[bot] wants to merge 1 commit into
stable/v0.8from
renovate/stable/v0.8-dev-dependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Oct 10, 2025

This PR contains the following updates:

Package Change Age Confidence
mongomock (changelog) 4.2.0.post14.3.0 age confidence
mypy (changelog) 1.11.21.20.2 age confidence
pytest-cov (changelog) 6.0.06.3.0 age confidence
pytest-mock (changelog) 3.14.03.15.1 age confidence
pytest-timeout 2.3.12.4.0 age confidence

Release Notes

mongomock/mongomock (mongomock)

v4.3.0

Compare Source

Added
Changed
  • Remove legacy syntax constructs using pyupgrade --py38-plus
Fixed
  • The Mongo Python driver did refactor the gridfs implementation, so that the patched code had to
    be adapted.
python/mypy (mypy)

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

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

v1.17.1

Compare Source

  • Retain None as constraints bottom if no bottoms were provided (Stanislav Terliakov, PR 19485)
  • Fix "ignored exception in hasattr" in dmypy (Stanislav Terliakov, PR 19428)
  • Prevent a crash when InitVar is redefined with a method in a subclass (Stanislav Terliakov, PR 19453)

v1.17.0

Compare Source

v1.16.1

Compare Source

v1.16.0

Compare Source

v1.15.0

Compare Source

v1.14.1

Compare Source

v1.14.0

Compare Source

v1.13.0

Compare Source

v1.12.1

Compare Source

  • Fix crash when showing partially analyzed type in error message (Ivan Levkivskyi, PR 17961)
  • Fix iteration over union (when self type is involved) (Shantanu, PR 17976)
  • Fix type object with type var default in union context (Jukka Lehtosalo, PR 17991)
  • Revert change to os.path stubs affecting use of os.PathLike[Any] (Shantanu, PR 17995)

v1.12.0

Compare Source

pytest-dev/pytest-cov (pytest-cov)

v6.3.0

Compare Source

  • Added support for markdown reports.
    Contributed by Marcos Boger in #&#8203;712 <https://github.com/pytest-dev/pytest-cov/pull/712>_
    and #&#8203;714 <https://github.com/pytest-dev/pytest-cov/pull/714>_.
  • Fixed some formatting issues in docs.
    Anonymous contribution in #&#8203;706 <https://github.com/pytest-dev/pytest-cov/pull/706>_.

v6.2.1

Compare Source

  • Added a version requirement for pytest's pluggy dependency (1.2.0, released 2023-06-21) that has the required new-style hookwrapper API.

  • Removed deprecated license classifier (packaging).

  • Disabled coverage warnings in two more situations where they have no value:

    • "module-not-measured" in workers
    • "already-imported" in subprocesses

v6.2.0

Compare Source

  • The plugin now adds 3 rules in the filter warnings configuration to prevent common coverage warnings being raised as obscure errors::

    default:unclosed database in <sqlite3.Connection object at:ResourceWarning
    once::PytestCovWarning
    once::CoverageWarning

    This fixes most of the bad interactions that are occurring on pytest 8.4 with filterwarnings=error.

    The plugin will check if there already matching rules for the 3 categories
    (ResourceWarning, PytestCovWarning, CoverageWarning) and message (unclosed database in <sqlite3.Connection object at) before adding the filters.

    This means you can have this in your pytest configuration for complete oblivion (not recommended, if that is not clear)::

    filterwarnings = [
    "error",
    "ignore:unclosed database in <sqlite3.Connection object at:ResourceWarning",
    "ignore::PytestCovWarning",
    "ignore::CoverageWarning",
    ]

v6.1.1

Compare Source

  • Fixed breakage that occurs when --cov-context and the no_cover marker are used together.

v6.1.0

Compare Source

  • Change terminal output to use full width lines for the coverage header.
    Contributed by Tsvika Shapira in #&#8203;678 <https://github.com/pytest-dev/pytest-cov/pull/678>_.
  • Removed unnecessary CovFailUnderWarning. Fixes #&#8203;675 <https://github.com/pytest-dev/pytest-cov/issues/675>_.
  • Fixed the term report not using the precision specified via --cov-precision.
pytest-dev/pytest-mock (pytest-mock)

v3.15.1

Compare Source

2025-09-16

  • #&#8203;529 <https://github.com/pytest-dev/pytest-mock/issues/529>_: Fixed itertools._tee object has no attribute error -- now duplicate_iterators=True must be passed to mocker.spy to duplicate iterators.

v3.15.0

Compare Source

2025-09-04

  • Python 3.8 (EOL) is no longer supported.
  • #&#8203;524 <https://github.com/pytest-dev/pytest-mock/pull/524>_: Added spy_return_iter to mocker.spy, which contains a duplicate of the return value of the spied method if it is an Iterator.

v3.14.1

Compare Source

  • #&#8203;503 <https://github.com/pytest-dev/pytest-mock/pull/503>_: Python 3.14 is now officially supported.
pytest-dev/pytest-timeout (pytest-timeout)

v2.4.0

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "every 4th week on Thursday before 10am"
  • 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.

@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from f254f96 to 047564c Compare October 10, 2025 05:43
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from 047564c to b0cb1ef Compare November 7, 2025 10:44
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from b0cb1ef to d8d4403 Compare November 28, 2025 18:12
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from d8d4403 to db93636 Compare December 15, 2025 05:56
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from db93636 to 896a8a0 Compare February 2, 2026 18:26
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from 896a8a0 to d2a1224 Compare March 13, 2026 11:10
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from d2a1224 to fdd842e Compare March 31, 2026 21:46
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch 3 times, most recently from 65e669d to 87b3d15 Compare April 16, 2026 11:48
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from 87b3d15 to d5cd001 Compare April 21, 2026 21:15
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from d5cd001 to e7ac245 Compare April 30, 2026 17:11
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from e7ac245 to ad6282c Compare May 12, 2026 11:16
@renovate renovate Bot force-pushed the renovate/stable/v0.8-dev-dependencies branch from ad6282c to 6762545 Compare May 22, 2026 10:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants