nugget / python-insteonplm

Python 3 asyncio module for interfacing with Insteon Powerline modems
MIT License
32 stars 19 forks source link

Bump mock-open from 1.3.1 to 1.4.0 #229

Open dependabot-preview[bot] opened 4 years ago

dependabot-preview[bot] commented 4 years ago

Bumps mock-open from 1.3.1 to 1.4.0.

Release notes

Sourced from mock-open's releases.

v1.4.0

Changed

  • Moved library code under the src/ directory.
  • Copied over the original CPython's unittest.mock.mock_open tests (with some modifications) as part of the library's test suite. This brought up a few differences in the API and usage to light which were fixed as part of this release.

Fixed

  • Allow to omit the mode argument, since the builtin open will understand this as 'r'.
  • Reset position in the file-like mock in consecutive calls to a patched open (either a direct call or when used as a context manager).
  • Define FileLikeMock as an iterator, which was an API of the builtin open it was missing:
    with patch('builtins.open', new_callable=MockOpen) as mock_open:
        mock_open.return_value.read_data = 'SOME DATA'
        with open('/some/path') as f:
            assert 'SOME DATA' == next(f)
    

v1.3.2

Changed

  • Added TravisCI integration.

Fixed

  • Issue #7: Side effect now returns unittest.mock.DEFAULT.
  • Fixed compatibility issue with AsyncMock changes in 3.8.
Commits
  • 3ce2bc9 Bump to v1.4.0
  • 19d9220 Add CPython original mock_open test cases
  • e06f414 Define FileLikeMock as an iterator
  • 6d08c1b Reset position on consecutive call to mocked open
  • f484e56 Allow omitting mode argument
  • 0d3380b Move library code under src directory
  • dddf428 Update tox config
  • d043756 Update badges on README.md
  • 1dad5d3 Bump to v1.3.2
  • e01c9b8 Generalize mock call
  • Additional commits viewable in compare view


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 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 use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)