From 5f6ec59ec16a157d5fdc6776520c8a8d9de61c40 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 25 Jan 2023 19:56:34 +0000
Subject: [PATCH] Bump clap from 4.1.1 to 4.1.4 (#2563)
Bumps [clap](https://github.com/clap-rs/clap) from 4.1.1 to 4.1.4.
Release notes
Sourced from clap's releases.
v4.1.4
[4.1.4] - 2023-01-24
Fixes
- (help) Respect
disable_colored_help
when using arg_required_else_help
Performance
- Speed up compiling
arg!
macro
v4.1.3
[4.1.3] - 2023-01-23
Fixes
- (error) Improve suggested flag/value/subcommand when two share a long preifx
- (error) When suggesting one of several subcommands, use the plural
subcommands
, rather than subcommand
v4.1.2
[4.1.2] - 2023-01-23
Fixes
- In documentation, refer to
get_flag
, rather than get_one::<bool>
Changelog
Sourced from clap's changelog.
[4.1.4] - 2023-01-24
Fixes
- (help) Respect
disable_colored_help
when using arg_required_else_help
Performance
- Speed up compiling
arg!
macro
[4.1.3] - 2023-01-23
Fixes
- (error) Improve suggested flag/value/subcommand when two share a long preifx
- (error) When suggesting one of several subcommands, use the plural
subcommands
, rather than subcommand
[4.1.2] - 2023-01-23
Fixes
- In documentation, refer to
get_flag
, rather than get_one::<bool>
Commits
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.1&new-version=4.1.4)](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)
---
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)
---
Cargo.lock | 8 ++++----
boa_cli/Cargo.toml | 2 +-
boa_tester/Cargo.toml | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 80ac671366..ab569e6be3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -185,7 +185,7 @@ dependencies = [
"boa_ast",
"boa_engine",
"boa_parser",
- "clap 4.1.1",
+ "clap 4.1.4",
"colored",
"jemallocator",
"phf",
@@ -333,7 +333,7 @@ dependencies = [
"boa_engine",
"boa_gc",
"boa_parser",
- "clap 4.1.1",
+ "clap 4.1.4",
"color-eyre",
"colored",
"fxhash",
@@ -537,9 +537,9 @@ dependencies = [
[[package]]
name = "clap"
-version = "4.1.1"
+version = "4.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ec7a4128863c188deefe750ac1d1dfe66c236909f845af04beed823638dc1b2"
+checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76"
dependencies = [
"bitflags",
"clap_derive",
diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml
index 610dc8d8db..de60dbc5d8 100644
--- a/boa_cli/Cargo.toml
+++ b/boa_cli/Cargo.toml
@@ -17,7 +17,7 @@ boa_ast = { workspace = true, features = ["serde"]}
boa_parser.workspace = true
rustyline = "10.1.1"
rustyline-derive = "0.7.0"
-clap = { version = "4.1.1", features = ["derive"] }
+clap = { version = "4.1.4", features = ["derive"] }
serde_json = "1.0.91"
colored = "2.0.0"
regex = "1.7.1"
diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml
index 17f7d6d98b..28398381e9 100644
--- a/boa_tester/Cargo.toml
+++ b/boa_tester/Cargo.toml
@@ -15,7 +15,7 @@ rust-version.workspace = true
boa_engine.workspace = true
boa_gc.workspace = true
boa_parser.workspace = true
-clap = { version = "4.1.1", features = ["derive"] }
+clap = { version = "4.1.4", features = ["derive"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_yaml = "0.9.17"
serde_json = "1.0.91"