Release juniper 0.15.6
This commit is contained in:
parent
3d57c8316d
commit
5dee177fb1
12 changed files with 21 additions and 17 deletions
|
@ -1,5 +1,9 @@
|
||||||
# master
|
# master
|
||||||
|
|
||||||
|
- No changes yet
|
||||||
|
|
||||||
|
# [[0.15.6] 2021-06-07](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.6)
|
||||||
|
|
||||||
- Allow `RootNode::as_schema_language` and `RootNode::as_parser_document` for arbitrary type info ([#935](https://github.com/graphql-rust/juniper/pull/935))
|
- Allow `RootNode::as_schema_language` and `RootNode::as_parser_document` for arbitrary type info ([#935](https://github.com/graphql-rust/juniper/pull/935))
|
||||||
|
|
||||||
# [[0.15.5] 2021-05-11](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.5)
|
# [[0.15.5] 2021-05-11](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.5)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "juniper"
|
name = "juniper"
|
||||||
version = "0.15.5"
|
version = "0.15.6"
|
||||||
authors = [
|
authors = [
|
||||||
"Magnus Hallin <mhallin@fastmail.com>",
|
"Magnus Hallin <mhallin@fastmail.com>",
|
||||||
"Christoph Herzog <chris@theduke.at>",
|
"Christoph Herzog <chris@theduke.at>",
|
||||||
|
|
|
@ -90,7 +90,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
|
||||||
[bson]: https://crates.io/crates/bson
|
[bson]: https://crates.io/crates/bson
|
||||||
|
|
||||||
*/
|
*/
|
||||||
#![doc(html_root_url = "https://docs.rs/juniper/0.15.5")]
|
#![doc(html_root_url = "https://docs.rs/juniper/0.15.6")]
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
|
|
||||||
// Required for using `juniper_codegen` macros inside this crate to resolve absolute `::juniper`
|
// Required for using `juniper_codegen` macros inside this crate to resolve absolute `::juniper`
|
||||||
|
|
|
@ -16,7 +16,7 @@ actix = "0.10"
|
||||||
actix-web = "3.3"
|
actix-web = "3.3"
|
||||||
actix-web-actors = "3.0"
|
actix-web-actors = "3.0"
|
||||||
|
|
||||||
juniper = { version = "0.15.5", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.6", path = "../juniper", default-features = false }
|
||||||
juniper_graphql_ws = { version = "0.2.4", path = "../juniper_graphql_ws", optional = true }
|
juniper_graphql_ws = { version = "0.2.4", path = "../juniper_graphql_ws", optional = true }
|
||||||
|
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
@ -31,7 +31,7 @@ actix-rt = "1.1"
|
||||||
actix-cors = "0.5"
|
actix-cors = "0.5"
|
||||||
actix-identity = "0.3"
|
actix-identity = "0.3"
|
||||||
|
|
||||||
juniper = { version = "0.15.5", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.6", path = "../juniper", features = ["expose-test-schema"] }
|
||||||
|
|
||||||
bytes = "0.6"
|
bytes = "0.6"
|
||||||
env_logger = "0.8"
|
env_logger = "0.8"
|
||||||
|
|
|
@ -26,4 +26,4 @@ syn = { version = "1.0.60", features = ["extra-traits", "full", "parsing"], defa
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
derive_more = "0.99.7"
|
derive_more = "0.99.7"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
juniper = { version = "0.15.5", path = "../juniper" }
|
juniper = { version = "0.15.6", path = "../juniper" }
|
||||||
|
|
|
@ -10,7 +10,7 @@ repository = "https://github.com/graphql-rust/juniper"
|
||||||
keywords = ["apollo", "graphql", "graphql-ws", "juniper"]
|
keywords = ["apollo", "graphql", "graphql-ws", "juniper"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
juniper = { version = "0.15.5", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.6", path = "../juniper", default-features = false }
|
||||||
juniper_subscriptions = { version = "0.15.4", path = "../juniper_subscriptions" }
|
juniper_subscriptions = { version = "0.15.4", path = "../juniper_subscriptions" }
|
||||||
serde = { version = "1.0.8", features = ["derive"], default-features = false }
|
serde = { version = "1.0.8", features = ["derive"], default-features = false }
|
||||||
tokio = { version = "0.2", features = ["macros", "rt-core", "time"], default-features = false }
|
tokio = { version = "0.2", features = ["macros", "rt-core", "time"], default-features = false }
|
||||||
|
|
|
@ -10,14 +10,14 @@ repository = "https://github.com/graphql-rust/juniper"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
juniper = { version = "0.15.5", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.6", path = "../juniper", default-features = false }
|
||||||
hyper = "0.13"
|
hyper = "0.13"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
tokio = "0.2"
|
tokio = "0.2"
|
||||||
url = "2"
|
url = "2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
juniper = { version = "0.15.5", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.6", path = "../juniper", features = ["expose-test-schema"] }
|
||||||
pretty_env_logger = "0.4"
|
pretty_env_logger = "0.4"
|
||||||
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] }
|
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] }
|
||||||
tokio = { version = "0.2", features = ["macros"] }
|
tokio = { version = "0.2", features = ["macros"] }
|
||||||
|
|
|
@ -13,13 +13,13 @@ repository = "https://github.com/graphql-rust/juniper"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
juniper = { version = "0.15.5", path = "../juniper" }
|
juniper = { version = "0.15.6", path = "../juniper" }
|
||||||
iron = ">= 0.5, < 0.7"
|
iron = ">= 0.5, < 0.7"
|
||||||
serde_json = "1.0.2"
|
serde_json = "1.0.2"
|
||||||
urlencoded = ">= 0.5, < 0.7"
|
urlencoded = ">= 0.5, < 0.7"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
juniper = { version = "0.15.5", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.6", path = "../juniper", features = ["expose-test-schema"] }
|
||||||
iron-test = "0.6"
|
iron-test = "0.6"
|
||||||
logger = "0.4"
|
logger = "0.4"
|
||||||
mount = "0.4"
|
mount = "0.4"
|
||||||
|
|
|
@ -12,9 +12,9 @@ documentation = "https://docs.rs/juniper_rocket"
|
||||||
repository = "https://github.com/graphql-rust/juniper"
|
repository = "https://github.com/graphql-rust/juniper"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
juniper = { version = "0.15.5", path = "../juniper", default-features = false}
|
juniper = { version = "0.15.6", path = "../juniper", default-features = false}
|
||||||
rocket = { version = "0.4.9", default-features = false }
|
rocket = { version = "0.4.9", default-features = false }
|
||||||
serde_json = "1.0.2"
|
serde_json = "1.0.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
juniper = { version = "0.15.5", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.6", path = "../juniper", features = ["expose-test-schema"] }
|
||||||
|
|
|
@ -13,9 +13,9 @@ repository = "https://github.com/graphql-rust/juniper"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
juniper = { version = "0.15.5", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.6", path = "../juniper", default-features = false }
|
||||||
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master", default-features = false }
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master", default-features = false }
|
||||||
serde_json = "1.0.2"
|
serde_json = "1.0.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
juniper = { version = "0.15.5", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.6", path = "../juniper", features = ["expose-test-schema"] }
|
||||||
|
|
|
@ -10,7 +10,7 @@ repository = "https://github.com/graphql-rust/juniper"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
juniper = { version = "0.15.5", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.6", path = "../juniper", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
|
|
@ -15,7 +15,7 @@ subscriptions = ["juniper_graphql_ws"]
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
bytes = "0.5"
|
bytes = "0.5"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
juniper = { version = "0.15.5", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.6", path = "../juniper", default-features = false }
|
||||||
juniper_graphql_ws = { version = "0.2.4", path = "../juniper_graphql_ws", optional = true }
|
juniper_graphql_ws = { version = "0.2.4", path = "../juniper_graphql_ws", optional = true }
|
||||||
serde = { version = "1.0.75", features = ["derive"] }
|
serde = { version = "1.0.75", features = ["derive"] }
|
||||||
serde_json = "1.0.24"
|
serde_json = "1.0.24"
|
||||||
|
@ -25,7 +25,7 @@ warp = "0.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.8"
|
env_logger = "0.8"
|
||||||
juniper = { version = "0.15.5", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.6", path = "../juniper", features = ["expose-test-schema"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
percent-encoding = "2.1"
|
percent-encoding = "2.1"
|
||||||
tokio = { version = "0.2", features = ["blocking", "macros", "rt-core"] }
|
tokio = { version = "0.2", features = ["blocking", "macros", "rt-core"] }
|
||||||
|
|
Loading…
Reference in a new issue