build(deps): bump mockito from 0.31.1 to 1.4.0
Bumps mockito from 0.31.1 to 1.4.0.
Release notes
Sourced from mockito's releases.
1.4.0
- [Breaking] Bump minimum supported Rust version to 1.70 and revert version constraints on the
coloredcrate1.3.1
- Fixed a bug where
Semaphore::const_newwasn't available on Tokio < 1.30 because of the missing Tokioparking_lotfeature flag- Use the Tokio runtime everywhere to remove the need for the
futurescrate (aside fromfutures-core)Thanks to
@tottoto1.3.0
- Introduced
Server::new_with_opts,Server::new_with_opts_asyncand theServerOptsstruct to allow configuring the server host, port and enabling auto-asserts (see next item)- Added the
assert_on_dropserver option that allows you to automatically callassert()whenever your mocks go out of scope (defaults to false)- Expose
Server::socket_address()to return the raw serverSocketAddr- Use only required features for dependencies
- Accept
hyper::header::HeaderValueas amatch_header()valueThanks to
@andrewtoth@alexander-jackson1.2.0
- [Breaking] The minimum supported Rust version was bumped to 1.68.0
- The server pool was limited to 20 servers for
mac_ostargets to prevent hitting the file descriptor limitThanks to
@kornelski1.1.1
- Ensure
with_chunked_bodysupports streaming responses (as opposed to writing the entire buffer in one go)Thanks to
@kornelski1.1.0
- Enable the server pool properly and set the server pool size to 50
1.0.2
- Print the query part in last unmatched request diffs.
- Make it more obvious in the docs that the path includes the query element.
1.0.1
- Fixed an issue where
futures::future::join_allwould block the server pool.Server::reset_asynchas been deprecated in favour ofServer::resetsince the former doesn't have an async implementation any more.1.0.0
:balloon: 7 years and 63 releases later, it's finally time for the 1.0 :balloon:
Changes
- [Breaking] The legacy interface was removed in this version
- [Breaking]
Mock::with_body_from_fnwas renamed toMock::with_chunked_body- the former is still supported with a deprecation warning- Mocks are only cleared when the server is dropped, not when the mock is dropped - this means you don't have to assign mocks to variables any more (unless you want to call other methods on them)
- Introduced the
Mock::removeandMock::remove_asyncmethods to remove mocks on demand
... (truncated)
Commits
3ce41f0Bump to 1.40.0bd9eeb7Merge pull request #196 from lipanski/coloreda177edbBump MSRV to 1.70 and relax colored crate version requirements482eed9Bump to 1.3.146078dbAdd tokio parking_lot feature8c37737Merge pull request #192 from tottoto/async-runtime39a27ebUse tokio runtime uniformly5aac55aAdd instructions about starting a stand-alone server to the Rust docsa982823Add details about starting a stand-alone servera09f1f0Bump to 1.3.0- Additional commits viewable in compare view
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 rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
[APPROVALNOTIFIER] This PR is NOT APPROVED
This pull-request has been approved by: dependabot[bot] Once this PR has been reviewed and has the lgtm label, please assign petr-muller for approval. For more information see the Kubernetes Code Review Process.
The full list of commands accepted by this bot can be found here.
Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment
@dependabot[bot]: all tests passed!
Full PR test history. Your PR dashboard.
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here.
/hold
@PratikMahajan we had to revert this bump, right?
that is correct, it has breaking changes
Superseded by #928.