Skip to content

Commit

Permalink
Release juniper 0.15.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Jul 28, 2022
1 parent 8d28cdb commit 6fd7a59
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion juniper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# master
# [[0.15.10] 2022-07-28](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.10)

- Fix [CVE-2022-31173](https://github.com/graphql-rust/juniper/security/advisories/GHSA-4rx6-g5vg-5f3j).
- Fix incorrect error when explicit `null` provided for `null`able list input parameter. ([#1086](https://github.com/graphql-rust/juniper/pull/1086))
Expand Down
2 changes: 1 addition & 1 deletion juniper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "juniper"
version = "0.15.9"
version = "0.15.10"
authors = [
"Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>",
Expand Down
2 changes: 1 addition & 1 deletion juniper/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
[bson]: https://crates.io/crates/bson
*/
#![doc(html_root_url = "https://docs.rs/juniper/0.15.9")]
#![doc(html_root_url = "https://docs.rs/juniper/0.15.10")]
#![warn(missing_docs)]

// Required for using `juniper_codegen` macros inside this crate to resolve absolute `::juniper`
Expand Down
4 changes: 2 additions & 2 deletions juniper_actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ http = "0.2.4"
actix-web = "4.0.0-beta.8"
actix-web-actors = "4.0.0-beta.6"

juniper = { version = "0.15.9", path = "../juniper", default-features = false }
juniper = { version = "0.15.10", path = "../juniper", default-features = false }
juniper_graphql_ws = { version = "0.2.6", path = "../juniper_graphql_ws", optional = true }

anyhow = "1.0"
Expand All @@ -35,7 +35,7 @@ tokio = "1"
async-stream = "0.3"
actix-test = "0.1.0-beta.3"

juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] }
juniper = { version = "0.15.10", path = "../juniper", features = ["expose-test-schema"] }

bytes = "1.0"
env_logger = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion juniper_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ syn = { version = "1.0.60", features = ["extra-traits", "full", "parsing"], defa
[dev-dependencies]
derive_more = "0.99.7"
futures = "0.3"
juniper = { version = "0.15.9", path = "../juniper" }
juniper = { version = "0.15.10", path = "../juniper" }
2 changes: 1 addition & 1 deletion juniper_graphql_ws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/graphql-rust/juniper"
keywords = ["apollo", "graphql", "graphql-ws", "juniper"]

[dependencies]
juniper = { version = "0.15.9", path = "../juniper", default-features = false }
juniper = { version = "0.15.10", path = "../juniper", default-features = false }
juniper_subscriptions = { version = "0.15.6", path = "../juniper_subscriptions" }
serde = { version = "1.0.8", features = ["derive"], default-features = false }
tokio = { version = "1", features = ["macros", "rt", "time"], default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions juniper_hyper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ repository = "https://github.com/graphql-rust/juniper"

[dependencies]
futures = "0.3.1"
juniper = { version = "0.15.9", path = "../juniper", default-features = false }
juniper = { version = "0.15.10", path = "../juniper", default-features = false }
hyper = {version = "0.14", features = ["server", "runtime"]}
serde_json = "1.0"
tokio = "1"
url = "2"

[dev-dependencies]
juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] }
juniper = { version = "0.15.10", path = "../juniper", features = ["expose-test-schema"] }
pretty_env_logger = "0.4"
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
4 changes: 2 additions & 2 deletions juniper_iron/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ repository = "https://github.com/graphql-rust/juniper"

[dependencies]
futures = "0.3.1"
juniper = { version = "0.15.9", path = "../juniper" }
juniper = { version = "0.15.10", path = "../juniper" }
iron = ">= 0.5, < 0.7"
serde_json = "1.0.2"
urlencoded = ">= 0.5, < 0.7"

[dev-dependencies]
juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] }
juniper = { version = "0.15.10", path = "../juniper", features = ["expose-test-schema"] }
iron-test = "0.6"
logger = "0.4"
mount = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions juniper_rocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ repository = "https://github.com/graphql-rust/juniper"

[dependencies]
futures = "0.3.1"
juniper = { version = "0.15.9", path = "../juniper", default-features = false }
juniper = { version = "0.15.10", path = "../juniper", default-features = false }
rocket = { version = "0.5.0-rc.1", default-features = false }
serde_json = "1.0.2"

[dev-dependencies]
juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] }
juniper = { version = "0.15.10", path = "../juniper", features = ["expose-test-schema"] }
2 changes: 1 addition & 1 deletion juniper_subscriptions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/graphql-rust/juniper"

[dependencies]
futures = "0.3.1"
juniper = { version = "0.15.9", path = "../juniper", default-features = false }
juniper = { version = "0.15.10", path = "../juniper", default-features = false }

[dev-dependencies]
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions juniper_warp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ subscriptions = ["juniper_graphql_ws"]
[dependencies]
anyhow = "1.0"
futures = "0.3.1"
juniper = { version = "0.15.9", path = "../juniper", default-features = false }
juniper = { version = "0.15.10", path = "../juniper", default-features = false }
juniper_graphql_ws = { version = "0.2.6", path = "../juniper_graphql_ws", optional = true }
serde = { version = "1.0.75", features = ["derive"] }
serde_json = "1.0.24"
Expand All @@ -24,7 +24,7 @@ warp = "0.3"

[dev-dependencies]
env_logger = "0.8"
juniper = { version = "0.15.9", path = "../juniper", features = ["expose-test-schema"] }
juniper = { version = "0.15.10", path = "../juniper", features = ["expose-test-schema"] }
log = "0.4"
percent-encoding = "2.1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
Expand Down

0 comments on commit 6fd7a59

Please sign in to comment.