Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix(deps): update all non-major packages >= 1.0 #2511

Merged
merged 4 commits into from
May 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apollo-router-scaffold/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ license = "Elastic-2.0"
publish = false

[dependencies]
anyhow = "1.0.68"
clap = { version = "4.1.4", features = ["derive"] }
anyhow = "1.0.69"
clap = { version = "4.1.6", features = ["derive"] }
cargo-scaffold = { version = "0.8.9", default-features = false }
regex = "1"
str_inflector = "0.12.0"
toml = "0.5.11"
[dev-dependencies]
tempfile = "3.3.0"
tempfile = "3.4.0"
copy_dir = "0.1.2"
22 changes: 11 additions & 11 deletions apollo-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ features = ["docs_rs"]
[dependencies]
askama = "0.11.1"
access-json = "0.1.0"
anyhow = "1.0.68"
anyhow = "1.0.69"
apollo-compiler = "0.8.0"
apollo-parser = "0.5.3"
arc-swap = "1.6.0"
Expand All @@ -69,7 +69,7 @@ backtrace = "0.3.67"
base64 = "0.20.0"
buildstructor = "0.5.2"
bytes = "1.4.0"
clap = { version = "4.1.4", default-features = false, features = [
clap = { version = "4.1.6", default-features = false, features = [
"env",
"derive",
"std",
Expand Down Expand Up @@ -117,7 +117,7 @@ multimap = "0.8.3"
# To avoid tokio issues
notify = { version = "5.1.0", default-features = false, features=["macos_kqueue"] }
nu-ansi-term = "0.47"
once_cell = "1.16.0"
once_cell = "1.17.1"

# Any package that starts with `opentelemetry` needs to be updated with care
# because it is tightly intertwined with the `tracing` packages on account of
Expand Down Expand Up @@ -163,7 +163,7 @@ prost-types = "0.11.9"
proteus = "0.5.0"
rand = "0.8.5"
rhai = { version = "1.12.0", features = ["sync", "serde", "internals"] }
regex = "1.6.0"
regex = "1.7.1"
reqwest = { version = "0.11.18", default-features = false, features = [
"rustls-tls",
"rustls-native-certs",
Expand All @@ -177,9 +177,9 @@ rustls-pemfile = "1.0.2"
schemars = { version = "0.8.12", features = ["url"] }
shellexpand = "3.0.0"
sha2 = "0.10.6"
serde = { version = "1.0.149", features = ["derive", "rc"] }
serde = { version = "1.0.152", features = ["derive", "rc"] }
serde_json_bytes = { version = "0.2.1", features = ["preserve_order"] }
serde_json = { version = "1.0.85", features = ["preserve_order"] }
serde_json = { version = "1.0.93", features = ["preserve_order"] }
serde_urlencoded = "0.7.1"
serde_yaml = "0.8.26"
static_assertions = "1.1.0"
Expand Down Expand Up @@ -211,7 +211,7 @@ tracing-opentelemetry = "0.18.0"
tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
url = { version = "2.3.1", features = ["serde"] }
urlencoding = "2.1.2"
uuid = { version = "1.1.2", features = ["serde", "v4"] }
uuid = { version = "1.3.0", features = ["serde", "v4"] }
yaml-rust = "0.4.5"
wsl = "0.1.0"
tokio-rustls = "0.23.4"
Expand All @@ -233,17 +233,17 @@ tikv-jemallocator = "0.5"

[dev-dependencies]
ecdsa = { version = "0.15.1", features = ["signing", "pem", "pkcs8"] }
fred = "6.0.0-beta.2"
redis = { version = "0.21.7", features = ["tokio-comp"] }
fred = { version = "6.0.0", features = ["enable-rustls", "no-client-setname"] }
futures-test = "0.3.28"
insta = { version = "1.26.0", features = ["json", "redactions", "yaml"] }
insta = { version = "1.28.0", features = ["json", "redactions", "yaml"] }
introspector-gadget = "0.2.1"
maplit = "1.0.2"
memchr = { version = "2.5.0", default-features = false }
mockall = "0.11.4"
once_cell = "1.16.0"
once_cell = "1.17.1"
p256 = "0.12.0"
rand_core = "0.6.4"
redis = { version = "0.21.7", features = ["tokio-comp"] }
reqwest = { version = "0.11.18", default-features = false, features = [
"json",
"stream",
Expand Down