mirror of
https://github.com/nushell/nushell.git
synced 2025-01-08 23:40:17 +01:00
Bump mockito from 1.2.0 to 1.3.0 (#11976)
Bumps [mockito](https://github.com/lipanski/mockito) from 1.2.0 to 1.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lipanski/mockito/releases">mockito's releases</a>.</em></p> <blockquote> <h2>1.3.0</h2> <ul> <li><a href="3e2d4662eb
">Introduced</a> <code>Server::new_with_opts</code>, <code>Server::new_with_opts_async</code> and the <code>ServerOpts</code> struct to allow configuring the server host, port and enabling auto-asserts (see next item)</li> <li><a href="3e2d4662eb
">Added</a> the <code>assert_on_drop</code> server option that allows you to automatically call <code>assert()</code> whenever your mocks go out of scope (defaults to false)</li> <li><a href="2ed230b5e9
">Expose</a> <code>Server::socket_address()</code> to return the raw server <code>SocketAddr</code></li> <li><a href="efc7da13c5
">Use</a> only required features for dependencies</li> <li><a href="bcdcb2a154
">Accept</a> <code>hyper::header::HeaderValue</code> as a <code>match_header()</code> value</li> </ul> <p>Thanks to <a href="https://github.com/andrewtoth"><code>@andrewtoth</code></a> <a href="https://github.com/alexander-jackson"><code>@alexander-jackson</code></a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="a09f1f0009
"><code>a09f1f0</code></a> Bump to 1.3.0</li> <li><a href="0be6d7a184
"><code>0be6d7a</code></a> Merge pull request <a href="https://redirect.github.com/lipanski/mockito/issues/191">#191</a> from lipanski/server-opts</li> <li><a href="3e2d4662eb
"><code>3e2d466</code></a> Allow configuring the mock server (host, port, assert_on_drop)</li> <li><a href="12cb5d0786
"><code>12cb5d0</code></a> Add sponsor button</li> <li><a href="3cce903c0f
"><code>3cce903</code></a> Merge pull request <a href="https://redirect.github.com/lipanski/mockito/issues/186">#186</a> from alexander-jackson/feat/return-raw-socket-address</li> <li><a href="2ed230b5e9
"><code>2ed230b</code></a> feat: return raw socket address</li> <li><a href="496f26da87
"><code>496f26d</code></a> Merge pull request <a href="https://redirect.github.com/lipanski/mockito/issues/185">#185</a> from andrewtoth/less-deps</li> <li><a href="40138fe979
"><code>40138fe</code></a> Merge pull request <a href="https://redirect.github.com/lipanski/mockito/issues/184">#184</a> from andrewtoth/into-headername</li> <li><a href="efc7da13c5
"><code>efc7da1</code></a> Use only required features for dependencies</li> <li><a href="10d1081d80
"><code>10d1081</code></a> Add impl IntoHeaderName for &HeaderName</li> <li>Additional commits viewable in <a href="https://github.com/lipanski/mockito/compare/1.2.0...1.3.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mockito&package-manager=cargo&previous-version=1.2.0&new-version=1.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
55b67e17bb
commit
2697ea9a25
19
Cargo.lock
generated
19
Cargo.lock
generated
@ -1942,7 +1942,6 @@ dependencies = [
|
||||
"httpdate",
|
||||
"itoa",
|
||||
"pin-project-lite",
|
||||
"socket2",
|
||||
"tokio",
|
||||
"tower-service",
|
||||
"tracing",
|
||||
@ -2641,9 +2640,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mockito"
|
||||
version = "1.2.0"
|
||||
version = "1.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f8d3038e23466858569c2d30a537f691fa0d53b51626630ae08262943e3bbb8b"
|
||||
checksum = "a8c84fe1f1d8c56dc157f79942056fad4b9efceebba374a01b222428b553facb"
|
||||
dependencies = [
|
||||
"assert-json-diff",
|
||||
"futures",
|
||||
@ -5855,25 +5854,11 @@ dependencies = [
|
||||
"libc",
|
||||
"mio",
|
||||
"num_cpus",
|
||||
"parking_lot",
|
||||
"pin-project-lite",
|
||||
"signal-hook-registry",
|
||||
"socket2",
|
||||
"tokio-macros",
|
||||
"windows-sys 0.48.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tokio-macros"
|
||||
version = "2.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn 2.0.48",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tokio-util"
|
||||
version = "0.7.10"
|
||||
|
@ -134,7 +134,7 @@ nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.90.2" }
|
||||
nu-test-support = { path = "../nu-test-support", version = "0.90.2" }
|
||||
|
||||
dirs-next = "2.0"
|
||||
mockito = { version = "1.2", default-features = false }
|
||||
mockito = { version = "1.3", default-features = false }
|
||||
quickcheck = "1.0"
|
||||
quickcheck_macros = "1.0"
|
||||
rstest = { version = "0.18", default-features = false }
|
||||
|
Loading…
Reference in New Issue
Block a user