0.9.2 release

* Changelogs
* Update versions and dependency versions
This commit is contained in:
Christoph Herzog 2018-01-13 10:34:30 +01:00
parent 5670fc7eb1
commit 40c946c81c
10 changed files with 35 additions and 21 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
target target
Cargo.lock Cargo.lock
.idea

13
changelog/0.9.2.md Normal file
View 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`.

View file

@ -1,9 +1,5 @@
## [master] # [master] yyyy-mm-dd
## Changes ## Changes
### `__typename` for unions Add your changes below...
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)

View file

@ -1,6 +1,6 @@
[package] [package]
name = "juniper" name = "juniper"
version = "0.9.1" version = "0.9.2"
authors = [ authors = [
"Magnus Hallin <mhallin@fastmail.com>", "Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>", "Christoph Herzog <chris@theduke.at>",
@ -32,7 +32,7 @@ default = [
] ]
[dependencies] [dependencies]
juniper_codegen = { version = "0.9.1", path = "../juniper_codegen" } juniper_codegen = { version = "0.9.2", path = "../juniper_codegen" }
fnv = "1.0.3" fnv = "1.0.3"
ordermap = { version = "0.2.11", features = ["serde-1"] } ordermap = { version = "0.2.11", features = ["serde-1"] }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "juniper_codegen" name = "juniper_codegen"
version = "0.9.1" version = "0.9.2"
authors = [ authors = [
"Magnus Hallin <mhallin@fastmail.com>", "Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>", "Christoph Herzog <chris@theduke.at>",

View file

@ -13,7 +13,7 @@ repository = "https://github.com/graphql-rust/juniper"
[dependencies] [dependencies]
serde = { version = "1.0.2" } serde = { version = "1.0.2" }
serde_json = { 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" } urlencoded = { version = "0.5.0" }
iron = "0.5.1" iron = "0.5.1"
@ -25,6 +25,6 @@ mount = "^0.3.0"
logger = "^0.3.0" logger = "^0.3.0"
[dev-dependencies.juniper] [dev-dependencies.juniper]
version = "0.9.1" version = "0.9.2"
features = ["expose-test-schema", "serde_json"] features = ["expose-test-schema", "serde_json"]
path = "../juniper" path = "../juniper"

View file

@ -14,12 +14,12 @@ repository = "https://github.com/graphql-rust/juniper"
serde = { version = "1.0.2" } serde = { version = "1.0.2" }
serde_derive = {version="1.0.2" } serde_derive = {version="1.0.2" }
serde_json = { 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 = { version = "0.3.6" }
rocket_codegen = { version = "0.3.6" } rocket_codegen = { version = "0.3.6" }
[dev-dependencies.juniper] [dev-dependencies.juniper]
version = "0.9.1" version = "0.9.2"
features = ["expose-test-schema", "serde_json"] features = ["expose-test-schema", "serde_json"]
path = "../juniper" path = "../juniper"

View file

@ -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 [Rocket](https://rocket.rs) integration now requires Rocket `0.3.6` to
support building with recent Rust nightlies. 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) [#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). This fixed the [issue #116](https://github.com/graphql-rust/juniper/issues/116).

View file

@ -1,3 +1,6 @@
# juniper_rocket master # juniper_rocket [master] yyyy-mm-dd
## Changes
Add your changes here... Add your changes here...

View file

@ -3,7 +3,7 @@ name = "juniper_tests"
version = "0.1.0" version = "0.1.0"
[dependencies] [dependencies]
juniper = { version = "0.9.1", path = "../juniper" } juniper = { version = "0.9.2", path = "../juniper" }
serde_json = { version = "1" } serde_json = { version = "1" }
[dev-dependencies] [dev-dependencies]