chore(deps): Bump clap from 3.1.10 to 3.1.11 (#4390)

* chore(deps): Bump clap from 3.1.10 to 3.1.11

Bumps [clap](https://github.com/clap-rs/clap) from 3.1.10 to 3.1.11.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.1.10...v3.1.11)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix: update tests for changes to clap

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
pull/24376/head
dependabot[bot] 2022-04-22 11:15:48 +00:00 committed by GitHub
parent 36ef122c89
commit e8bfd7a537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 14 deletions

22
Cargo.lock generated
View File

@ -665,9 +665,9 @@ dependencies = [
[[package]]
name = "clap"
version = "3.1.10"
version = "3.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3124f3f75ce09e22d1410043e1e24f2ecc44fad3afe4f08408f1f7663d68da2b"
checksum = "423af4bd829996d7de0b8bf0279f5b91a20306937be514e972a95c3d3ab13f33"
dependencies = [
"atty",
"bitflags",
@ -684,7 +684,7 @@ dependencies = [
name = "clap_blocks"
version = "0.1.0"
dependencies = [
"clap 3.1.10",
"clap 3.1.11",
"data_types",
"futures",
"iox_catalog",
@ -2221,7 +2221,7 @@ dependencies = [
"byteorder",
"bytes",
"chrono",
"clap 3.1.10",
"clap 3.1.11",
"clap_blocks",
"comfy-table",
"compactor",
@ -2542,7 +2542,7 @@ version = "0.1.0"
dependencies = [
"chrono",
"chrono-english",
"clap 3.1.10",
"clap 3.1.11",
"criterion",
"data_types",
"futures",
@ -2571,7 +2571,7 @@ dependencies = [
"assert_matches",
"async-trait",
"chrono",
"clap 3.1.10",
"clap 3.1.11",
"dotenv",
"futures",
"glob",
@ -2664,7 +2664,7 @@ dependencies = [
"async-trait",
"bytes",
"chrono",
"clap 3.1.10",
"clap 3.1.11",
"clap_blocks",
"data_types",
"dml",
@ -2737,7 +2737,7 @@ dependencies = [
"arrow_util",
"async-trait",
"bytes",
"clap 3.1.10",
"clap 3.1.11",
"clap_blocks",
"data_types",
"db",
@ -2913,7 +2913,7 @@ name = "ioxd_test"
version = "0.1.0"
dependencies = [
"async-trait",
"clap 3.1.10",
"clap 3.1.11",
"generated_types",
"hyper",
"ioxd_common",
@ -6467,7 +6467,7 @@ version = "0.1.0"
dependencies = [
"async-trait",
"chrono",
"clap 3.1.10",
"clap 3.1.11",
"futures",
"observability_deps",
"snafu",
@ -6613,7 +6613,7 @@ dependencies = [
name = "trogging"
version = "0.1.0"
dependencies = [
"clap 3.1.10",
"clap 3.1.11",
"logfmt",
"observability_deps",
"regex",

View File

@ -35,7 +35,7 @@ async fn test_git_version() {
.arg("--version")
.assert()
.success()
.stdout(
.stderr(
predicate::str::contains("UNKNOWN")
.not()
.and(predicate::str::is_match("revision [0-9a-f]{40}").unwrap()),

View File

@ -483,7 +483,7 @@ async fn release_database() {
.arg(addr)
.assert()
.failure()
.stderr(predicate::str::contains(
.stdout(predicate::str::contains(
r#"Invalid value "foo" for '--uuid <UUID>'"#,
));
@ -636,7 +636,7 @@ async fn claim_database() {
.arg(addr)
.assert()
.failure()
.stderr(predicate::str::contains(
.stdout(predicate::str::contains(
r#"Invalid value "foo" for '<UUID>'"#,
));