0.9.2 release
* Changelogs * Update versions and dependency versions
This commit is contained in:
parent
5670fc7eb1
commit
40c946c81c
10 changed files with 35 additions and 21 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
target
|
||||
Cargo.lock
|
||||
.idea
|
||||
|
|
13
changelog/0.9.2.md
Normal file
13
changelog/0.9.2.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# [0.9.2] 2018-01-13
|
||||
|
||||
## Changes
|
||||
|
||||
### `__typename` for unions
|
||||
|
||||
The [`__typename`](http://graphql.org/learn/queries/#meta-fields) query meta-field now works on unions.
|
||||
|
||||
[#112](https://github.com/graphql-rust/juniper/issues/112)
|
||||
|
||||
### Debug impls.
|
||||
|
||||
http::GraphQLRequest now implements `Debug`.
|
|
@ -1,9 +1,5 @@
|
|||
## [master]
|
||||
# [master] yyyy-mm-dd
|
||||
|
||||
## Changes
|
||||
|
||||
### `__typename` for unions
|
||||
|
||||
The [`__typename`](http://graphql.org/learn/queries/#meta-fields) query meta-field now works on unions.
|
||||
|
||||
[#112](https://github.com/graphql-rust/juniper/issues/112)
|
||||
Add your changes below...
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "juniper"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
authors = [
|
||||
"Magnus Hallin <mhallin@fastmail.com>",
|
||||
"Christoph Herzog <chris@theduke.at>",
|
||||
|
@ -32,7 +32,7 @@ default = [
|
|||
]
|
||||
|
||||
[dependencies]
|
||||
juniper_codegen = { version = "0.9.1", path = "../juniper_codegen" }
|
||||
juniper_codegen = { version = "0.9.2", path = "../juniper_codegen" }
|
||||
|
||||
fnv = "1.0.3"
|
||||
ordermap = { version = "0.2.11", features = ["serde-1"] }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "juniper_codegen"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
authors = [
|
||||
"Magnus Hallin <mhallin@fastmail.com>",
|
||||
"Christoph Herzog <chris@theduke.at>",
|
||||
|
|
|
@ -13,7 +13,7 @@ repository = "https://github.com/graphql-rust/juniper"
|
|||
[dependencies]
|
||||
serde = { version = "1.0.2" }
|
||||
serde_json = { version = "1.0.2" }
|
||||
juniper = { version = "0.9.1", path = "../juniper" }
|
||||
juniper = { version = "0.9.2", path = "../juniper" }
|
||||
|
||||
urlencoded = { version = "0.5.0" }
|
||||
iron = "0.5.1"
|
||||
|
@ -25,6 +25,6 @@ mount = "^0.3.0"
|
|||
logger = "^0.3.0"
|
||||
|
||||
[dev-dependencies.juniper]
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
features = ["expose-test-schema", "serde_json"]
|
||||
path = "../juniper"
|
||||
|
|
|
@ -14,12 +14,12 @@ repository = "https://github.com/graphql-rust/juniper"
|
|||
serde = { version = "1.0.2" }
|
||||
serde_derive = {version="1.0.2" }
|
||||
serde_json = { version = "1.0.2" }
|
||||
juniper = { version = "0.9.1" , path = "../juniper"}
|
||||
juniper = { version = "0.9.2" , path = "../juniper"}
|
||||
|
||||
rocket = { version = "0.3.6" }
|
||||
rocket_codegen = { version = "0.3.6" }
|
||||
|
||||
[dev-dependencies.juniper]
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
features = ["expose-test-schema", "serde_json"]
|
||||
path = "../juniper"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
# juniper_rocket 0.1.2
|
||||
# juniper_rocket [0.1.2] 2018-01-13
|
||||
|
||||
## Rocket updated to `0.3.6`
|
||||
## Changes
|
||||
|
||||
### Rocket updated to `0.3.6`
|
||||
|
||||
[Rocket](https://rocket.rs) integration now requires Rocket `0.3.6` to
|
||||
support building with recent Rust nightlies.
|
||||
|
@ -9,11 +11,10 @@ Additional information and supported nightly versions can be found in [Rocket's
|
|||
|
||||
[#125](https://github.com/graphql-rust/juniper/issues/125)
|
||||
|
||||
## Decoding of query params
|
||||
### Decoding of query params
|
||||
|
||||
When processing GET requests, query parameters where not properly url_decoded,
|
||||
When processing GET requests, query parameters were not properly url_decoded,
|
||||
|
||||
This was fixed by [PR #128](https://github.com/graphql-rust/juniper/pull/128) by @LegNeato.
|
||||
This was fixed by [PR #122](https://github.com/graphql-rust/juniper/pull/128) by @LegNeato.
|
||||
|
||||
This fixed the [issue #116](https://github.com/graphql-rust/juniper/issues/116).
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
# juniper_rocket master
|
||||
# juniper_rocket [master] yyyy-mm-dd
|
||||
|
||||
## Changes
|
||||
|
||||
Add your changes here...
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ name = "juniper_tests"
|
|||
version = "0.1.0"
|
||||
|
||||
[dependencies]
|
||||
juniper = { version = "0.9.1", path = "../juniper" }
|
||||
juniper = { version = "0.9.2", path = "../juniper" }
|
||||
serde_json = { version = "1" }
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
Loading…
Reference in a new issue