File tree 10 files changed +35
-21
lines changed
10 files changed +35
-21
lines changed Original file line number Diff line number Diff line change 1
1
target
2
2
Cargo.lock
3
+ .idea
Original file line number Diff line number Diff line change
1
+ # [ 0.9.2] 2018-01-13
2
+
3
+ ## Changes
4
+
5
+ ### ` __typename ` for unions
6
+
7
+ The [ ` __typename ` ] ( http://graphql.org/learn/queries/#meta-fields ) query meta-field now works on unions.
8
+
9
+ [ #112 ] ( https://github.com/graphql-rust/juniper/issues/112 )
10
+
11
+ ### Debug impls.
12
+
13
+ http::GraphQLRequest now implements ` Debug ` .
Original file line number Diff line number Diff line change 1
- ## [ master]
1
+ # [ master] yyyy-mm-dd
2
2
3
3
## Changes
4
4
5
- ### ` __typename ` for unions
6
-
7
- The [ ` __typename ` ] ( http://graphql.org/learn/queries/#meta-fields ) query meta-field now works on unions.
8
-
9
- [ #112 ] ( https://github.com/graphql-rust/juniper/issues/112 )
5
+ Add your changes below...
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " juniper"
3
- version = " 0.9.1 "
3
+ version = " 0.9.2 "
4
4
authors = [
5
5
" Magnus Hallin <mhallin@fastmail.com>" ,
6
6
" Christoph Herzog <chris@theduke.at>" ,
@@ -32,7 +32,7 @@ default = [
32
32
]
33
33
34
34
[dependencies ]
35
- juniper_codegen = { version = " 0.9.1 " , path = " ../juniper_codegen" }
35
+ juniper_codegen = { version = " 0.9.2 " , path = " ../juniper_codegen" }
36
36
37
37
fnv = " 1.0.3"
38
38
ordermap = { version = " 0.2.11" , features = [" serde-1" ] }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " juniper_codegen"
3
- version = " 0.9.1 "
3
+ version = " 0.9.2 "
4
4
authors = [
5
5
" Magnus Hallin <mhallin@fastmail.com>" ,
6
6
" Christoph Herzog <chris@theduke.at>" ,
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ repository = "https://github.com/graphql-rust/juniper"
13
13
[dependencies ]
14
14
serde = { version = " 1.0.2" }
15
15
serde_json = { version = " 1.0.2" }
16
- juniper = { version = " 0.9.1 " , path = " ../juniper" }
16
+ juniper = { version = " 0.9.2 " , path = " ../juniper" }
17
17
18
18
urlencoded = { version = " 0.5.0" }
19
19
iron = " 0.5.1"
@@ -25,6 +25,6 @@ mount = "^0.3.0"
25
25
logger = " ^0.3.0"
26
26
27
27
[dev-dependencies .juniper ]
28
- version = " 0.9.1 "
28
+ version = " 0.9.2 "
29
29
features = [" expose-test-schema" , " serde_json" ]
30
30
path = " ../juniper"
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ repository = "https://github.com/graphql-rust/juniper"
14
14
serde = { version = " 1.0.2" }
15
15
serde_derive = {version =" 1.0.2" }
16
16
serde_json = { version = " 1.0.2" }
17
- juniper = { version = " 0.9.1 " , path = " ../juniper" }
17
+ juniper = { version = " 0.9.2 " , path = " ../juniper" }
18
18
19
19
rocket = { version = " 0.3.6" }
20
20
rocket_codegen = { version = " 0.3.6" }
21
21
22
22
[dev-dependencies .juniper ]
23
- version = " 0.9.1 "
23
+ version = " 0.9.2 "
24
24
features = [" expose-test-schema" , " serde_json" ]
25
25
path = " ../juniper"
Original file line number Diff line number Diff line change 1
- # juniper_rocket 0.1.2
1
+ # juniper_rocket [ 0.1.2] 2018-01-13
2
2
3
- ## Rocket updated to ` 0.3.6 `
3
+ ## Changes
4
+
5
+ ### Rocket updated to ` 0.3.6 `
4
6
5
7
[ Rocket] ( https://rocket.rs ) integration now requires Rocket ` 0.3.6 ` to
6
8
support building with recent Rust nightlies.
@@ -9,11 +11,10 @@ Additional information and supported nightly versions can be found in [Rocket's
9
11
10
12
[ #125 ] ( https://github.com/graphql-rust/juniper/issues/125 )
11
13
12
- ## Decoding of query params
14
+ ### Decoding of query params
13
15
14
- When processing GET requests, query parameters where not properly url_decoded,
16
+ When processing GET requests, query parameters were not properly url_decoded,
15
17
16
- This was fixed by [ PR #128 ] ( https://github.com/graphql-rust/juniper/pull/128 ) by @LegNeato .
18
+ This was fixed by [ PR #122 ] ( https://github.com/graphql-rust/juniper/pull/128 ) by @LegNeato .
17
19
18
20
This fixed the [ issue #116 ] ( https://github.com/graphql-rust/juniper/issues/116 ) .
19
-
Original file line number Diff line number Diff line change 1
- # juniper_rocket master
1
+ # juniper_rocket [ master] yyyy-mm-dd
2
+
3
+ ## Changes
2
4
3
5
Add your changes here...
6
+
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "juniper_tests"
3
3
version = " 0.1.0"
4
4
5
5
[dependencies ]
6
- juniper = { version = " 0.9.1 " , path = " ../juniper" }
6
+ juniper = { version = " 0.9.2 " , path = " ../juniper" }
7
7
serde_json = { version = " 1" }
8
8
9
9
[dev-dependencies ]
You can’t perform that action at this time.
0 commit comments