Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 3, 2025

Bumps mock from 4.0.3 to 5.2.0.

Changelog

Sourced from mock's changelog.

5.2.0

This is release is in memory of Michael Foord__, who originally authored the mock package and passed away in January 2025.

__ https://discuss.python.org/t/in-memoriam-michael-foord-1974-2025/78317

  • gh-65454: :func:unittest.mock.Mock.attach_mock no longer triggers a call to a PropertyMock being attached.

  • gh-117765: Improved documentation for :func:unittest.mock.patch.dict

  • gh-124176: Add support for :func:dataclasses.dataclass in :func:unittest.mock.create_autospec. Now create_autospec will check for potential dataclasses and use :func:dataclasses.fields function to retrieve the spec information.

  • gh-123934: Fix :class:unittest.mock.MagicMock reseting magic methods return values after .reset_mock(return_value=True) was called.

  • gh-90848: Fixed :func:unittest.mock.create_autospec to configure parent mock with keyword arguments.

  • gh-113569: Indicate if there were no actual calls in unittest :meth:~unittest.mock.Mock.assert_has_calls failure.

  • gh-122858: Deprecate :func:!asyncio.iscoroutinefunction in favor of :func:inspect.iscoroutinefunction.

  • gh-104745: Limit starting a patcher (from :func:unittest.mock.patch or :func:unittest.mock.patch.object) more than once without stopping it

  • gh-75988: Fixed :func:unittest.mock.create_autospec to pass the call through to the wrapped object to return the real result.

  • gh-119600: Fix :func:unittest.mock.patch to not read attributes of the target when new_callable is set. Patch by Robert Collins.

  • gh-113407: Fix import of :mod:unittest.mock when CPython is built without docstrings.

  • gh-120732: Fix name passing to :class:unittest.mock.Mock object when using :func:unittest.mock.create_autospec.

5.1.0

  • bpo-44185: :func:unittest.mock.mock_open will call the :func:close method of the file handle mock when it is exiting from the context

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jun 3, 2025
@xiangfu0
Copy link
Contributor

xiangfu0 commented Jun 3, 2025

@dependabot rebase

1 similar comment
@xiangfu0
Copy link
Contributor

xiangfu0 commented Jun 3, 2025

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/pip/mock-5.2.0 branch from ec7fa97 to 198e1e5 Compare June 3, 2025 15:17
@xiangfu0 xiangfu0 requested review from Copilot and xiangfu0 and removed request for xiangfu0 June 3, 2025 15:23
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR bumps the dependency for the mock library from version 4.0.3 to allow versions up to but not including 6.0.0, preparing for compatibility with the latest release (5.2.0).

  • Updated dependency version constraint for mock in pyproject.toml
  • Sets an upper limit (<6.0.0) to guard against unexpected major version changes
Comments suppressed due to low confidence (1)

pyproject.toml:29

  • The updated dependency version constraint appropriately limits changes to the mock package. Please verify that our tests cover all relevant functionality affected by potential 5.x release updates.
mock = ">=4.0.3,<6.0.0"

@dependabot dependabot bot force-pushed the dependabot/pip/mock-5.2.0 branch from 198e1e5 to 138035d Compare June 3, 2025 15:28
@xiangfu0
Copy link
Contributor

xiangfu0 commented Jun 3, 2025

@dependabot rebase

Bumps [mock](https://github.com/testing-cabal/mock) from 4.0.3 to 5.2.0.
- [Changelog](https://github.com/testing-cabal/mock/blob/master/CHANGELOG.rst)
- [Commits](testing-cabal/mock@4.0.3...5.2.0)

---
updated-dependencies:
- dependency-name: mock
  dependency-version: 5.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/mock-5.2.0 branch from 138035d to 72e5378 Compare June 3, 2025 16:13
@xiangfu0 xiangfu0 requested a review from Copilot June 3, 2025 16:15
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR updates the version constraint for the mock dependency to allow any 5.x release while capping at <6.0.0.

  • Changed mock requirement in pyproject.toml from a caret-pinned ^4.0.3 to a range allowing up to but not including 6.0.0.

urllib3 = "^1.26.12"
flake8 = "^5"
mock = "^4.0.3"
mock = ">=4.0.3,<6.0.0"
Copy link

Copilot AI Jun 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The lower bound remains at 4.0.3, so projects may still install earlier 4.x versions. To ensure users get the new 5.2.0 release, bump the lower bound to >=5.2.0,<6.0.0.

Suggested change
mock = ">=4.0.3,<6.0.0"
mock = ">=5.2.0,<6.0.0"

Copilot uses AI. Check for mistakes.

@xiangfu0 xiangfu0 merged commit c2d3e76 into master Jun 3, 2025
10 checks passed
@xiangfu0 xiangfu0 deleted the dependabot/pip/mock-5.2.0 branch June 3, 2025 16:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant