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

View File

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

View File

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