Release juniper 0.15.5
This commit is contained in:
parent
c3a04d7d22
commit
e998457c0e
13 changed files with 26 additions and 20 deletions
|
@ -1,8 +1,14 @@
|
||||||
# master
|
# master
|
||||||
|
|
||||||
|
- No changes yet
|
||||||
|
|
||||||
|
# [[0.15.5] 2021-05-11](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.5)
|
||||||
|
|
||||||
|
- Fix multiple fragments on sub types overriding each other ([#927](https://github.com/graphql-rust/juniper/pull/915))
|
||||||
|
- Fix error extensions in subscriptions ([#927](https://github.com/graphql-rust/juniper/pull/927))
|
||||||
- Fix fields on interfaces not being resolved when used with fragments ([#923](https://github.com/graphql-rust/juniper/pull/923))
|
- Fix fields on interfaces not being resolved when used with fragments ([#923](https://github.com/graphql-rust/juniper/pull/923))
|
||||||
|
|
||||||
# [[0.15.4] 2021-04-03](https://github.com/graphql-rust/juniper/releases/tag/juniper-0.15.4)
|
# [[0.15.4] 2021-04-03](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.4)
|
||||||
|
|
||||||
- Un-deprecate select_child, has_child, and child_names methods ([#900](https://github.com/graphql-rust/juniper/pull/#900))
|
- Un-deprecate select_child, has_child, and child_names methods ([#900](https://github.com/graphql-rust/juniper/pull/#900))
|
||||||
|
|
||||||
|
@ -821,7 +827,7 @@ using the macros and not deriving `GraphQLType` directly.
|
||||||
- Macro syntax stability has also been improved. All syntactical edge
|
- Macro syntax stability has also been improved. All syntactical edge
|
||||||
cases of the macros have gotten tests to verify their correctness.
|
cases of the macros have gotten tests to verify their correctness.
|
||||||
|
|
||||||
[0.8.0]: https://github.com/graphql-rust/juniper/compare/0.8.0...0.8.1
|
[0.8.1]: https://github.com/graphql-rust/juniper/compare/0.8.0...0.8.1
|
||||||
[0.8.0]: https://github.com/graphql-rust/juniper/compare/0.7.0...0.8.0
|
[0.8.0]: https://github.com/graphql-rust/juniper/compare/0.7.0...0.8.0
|
||||||
[0.7.0]: https://github.com/graphql-rust/juniper/compare/0.6.3...0.7.0
|
[0.7.0]: https://github.com/graphql-rust/juniper/compare/0.6.3...0.7.0
|
||||||
[0.6.3]: https://github.com/graphql-rust/juniper/compare/0.6.2...0.6.3
|
[0.6.3]: https://github.com/graphql-rust/juniper/compare/0.6.2...0.6.3
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "juniper"
|
name = "juniper"
|
||||||
version = "0.15.4"
|
version = "0.15.5"
|
||||||
authors = [
|
authors = [
|
||||||
"Magnus Hallin <mhallin@fastmail.com>",
|
"Magnus Hallin <mhallin@fastmail.com>",
|
||||||
"Christoph Herzog <chris@theduke.at>",
|
"Christoph Herzog <chris@theduke.at>",
|
||||||
|
|
|
@ -4,7 +4,7 @@ pro-release-commit-message = "Bump {{crate_name}} version to {{next_version}}"
|
||||||
tag-message = "Release {{crate_name}} {{version}}"
|
tag-message = "Release {{crate_name}} {{version}}"
|
||||||
pre-release-replacements = [
|
pre-release-replacements = [
|
||||||
# Juniper's changelog
|
# Juniper's changelog
|
||||||
{file="CHANGELOG.md", min=0, search="# master", replace="# master\n\n- No changes yet\n\n# [[{{version}}] {{date}}](https://github.com/graphql-rust/juniper/releases/tag/{{crate_name}}-{{version}})"},
|
{file="CHANGELOG.md", min=0, search="# master", replace="# master\n\n- No changes yet\n\n# [[{{version}}] {{date}}](https://github.com/graphql-rust/juniper/releases/tag/{{crate_name}}-v{{version}})"},
|
||||||
{file="src/lib.rs", min=0, search="docs.rs/juniper/[a-z0-9\\.-]+", replace="docs.rs/juniper/{{version}}"},
|
{file="src/lib.rs", min=0, search="docs.rs/juniper/[a-z0-9\\.-]+", replace="docs.rs/juniper/{{version}}"},
|
||||||
# docs
|
# docs
|
||||||
{file="../docs/book/content/quickstart.md", min=0, search="juniper = \"[^\"]+\"", replace="juniper = \"{{version}}\""},
|
{file="../docs/book/content/quickstart.md", min=0, search="juniper = \"[^\"]+\"", replace="juniper = \"{{version}}\""},
|
||||||
|
|
|
@ -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.4")]
|
#![doc(html_root_url = "https://docs.rs/juniper/0.15.5")]
|
||||||
#![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.4", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper" }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper" }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", default-features = false}
|
juniper = { version = "0.15.5", path = "../juniper", default-features = false}
|
||||||
rocket = { version = "0.4.2", default-features = false }
|
rocket = { version = "0.4.2", default-features = false }
|
||||||
serde_json = "1.0.2"
|
serde_json = "1.0.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
juniper = { version = "0.15.4", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", default-features = false }
|
juniper = { version = "0.15.5", 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.4", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.15.5", 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