@@ -27,15 +27,15 @@ Tiny release to fix broken crate metadata on crates.io.
27
27
28
28
If an incoming integer is out of range for a 32 bit signed integer type, an
29
29
error will be returned to the client.
30
- ([ #52 ] ( https://github.com/mhallin /juniper/issues/52 ) ,
31
- [ #49 ] ( https://github.com/mhallin /juniper/issues/49 ) )
30
+ ([ #52 ] ( https://github.com/graphql-rust /juniper/issues/52 ) ,
31
+ [ #49 ] ( https://github.com/graphql-rust /juniper/issues/49 ) )
32
32
33
33
* Serde has been updated to 1.0. If your application depends on an older
34
34
version, you will need to first update your application before you can upgrade
35
- to a more recent Juniper. ([ #43 ] ( https://github.com/mhallin /juniper/pull/43 ) )
35
+ to a more recent Juniper. ([ #43 ] ( https://github.com/graphql-rust /juniper/pull/43 ) )
36
36
37
37
* ` rustc_serialize ` support has been dropped since this library is now
38
- deprecated. ([ #51 ] ( https://github.com/mhallin /juniper/pull/51 ) )
38
+ deprecated. ([ #51 ] ( https://github.com/graphql-rust /juniper/pull/51 ) )
39
39
40
40
## New features
41
41
@@ -46,14 +46,14 @@ Tiny release to fix broken crate metadata on crates.io.
46
46
## Bugfixes
47
47
48
48
* A panic in the parser has been replaced with a proper error
49
- ([ #44 ] ( https://github.com/mhallin /juniper/pull/44 ) )
49
+ ([ #44 ] ( https://github.com/graphql-rust /juniper/pull/44 ) )
50
50
51
51
## [ 0.7.0] – 2017-02-26
52
52
53
53
### Breaking changes
54
54
55
55
* The ` iron-handlers ` feature now depends on Iron 0.5
56
- ([ #30 ] ( https://github.com/mhallin /juniper/pull/30 ) ). Because of
56
+ ([ #30 ] ( https://github.com/graphql-rust /juniper/pull/30 ) ). Because of
57
57
this, support for Rust 1.12 has been dropped. It might still work if
58
58
you're not using the Iron integrations feature, however.
59
59
@@ -68,63 +68,63 @@ Tiny release to fix broken crate metadata on crates.io.
68
68
### New features
69
69
70
70
* Add support for default values on input object fields
71
- ([ #28 ] ( https://github.com/mhallin /juniper/issues/28 ) )
71
+ ([ #28 ] ( https://github.com/graphql-rust /juniper/issues/28 ) )
72
72
73
73
## [ 0.6.2] – 2017-02-05
74
74
75
75
### New features
76
76
77
77
* The ` null ` literal is now supported in the GraphQL
78
- language. ([ #26 ] ( https://github.com/mhallin /juniper/pull/26 ) )
78
+ language. ([ #26 ] ( https://github.com/graphql-rust /juniper/pull/26 ) )
79
79
* Rustc-serialize is now optional, but enabled by default. If you
80
80
_ only_ want Serde support, include Juniper without default features
81
81
and enable
82
- Serde. ([ #12 ] ( https://github.com/mhallin /juniper/pull/12 ) )
82
+ Serde. ([ #12 ] ( https://github.com/graphql-rust /juniper/pull/12 ) )
83
83
* The built-in ` ID ` type now has a public constructor and derives a
84
84
few traits (` Clone ` , ` Debug ` , ` Eq ` , ` PartialEq ` , ` From<String> ` ,
85
- ` Deref<Target=str> ` ). ([ #19 ] ( https://github.com/mhallin /juniper/pull/19 ) )
85
+ ` Deref<Target=str> ` ). ([ #19 ] ( https://github.com/graphql-rust /juniper/pull/19 ) )
86
86
* Juniper is now built and tested against all Rust compilers since
87
87
version 1.12.1.
88
88
89
89
### Minor breaking change
90
90
91
91
* Serde has been updated to
92
- 0.9. ([ #25 ] ( https://github.com/mhallin /juniper/pull/25 ) )
92
+ 0.9. ([ #25 ] ( https://github.com/graphql-rust /juniper/pull/25 ) )
93
93
94
94
### Bugfixes
95
95
96
96
* The built-in GraphiQL handler had a bug in variable serialization.
97
- ([ #16 ] ( https://github.com/mhallin /juniper/pull/16 ) )
97
+ ([ #16 ] ( https://github.com/graphql-rust /juniper/pull/16 ) )
98
98
* The example should now build and run without problems on
99
- Windows. ([ #15 ] ( https://github.com/mhallin /juniper/pull/15 ) )
99
+ Windows. ([ #15 ] ( https://github.com/graphql-rust /juniper/pull/15 ) )
100
100
* Object types now properly implement
101
- ` __typename ` . ([ #22 ] ( https://github.com/mhallin /juniper/pull/22 ) )
101
+ ` __typename ` . ([ #22 ] ( https://github.com/graphql-rust /juniper/pull/22 ) )
102
102
* String variables are now properly parsed into GraphQL
103
- enums. ([ #17 ] ( https://github.com/mhallin /juniper/pull/17 ) )
103
+ enums. ([ #17 ] ( https://github.com/graphql-rust /juniper/pull/17 ) )
104
104
105
105
## [ 0.6.1] – 2017-01-06
106
106
107
107
### New features
108
108
109
109
* Optional Serde support
110
- ([ #8 ] ( https://github.com/mhallin /juniper/pull/8 ) )
110
+ ([ #8 ] ( https://github.com/graphql-rust /juniper/pull/8 ) )
111
111
112
112
### Improvements
113
113
114
114
* The ` graphql_input_object! ` macro can now be used to define input
115
115
objects as public Rust structs.
116
116
* GraphiQL in the Iron GraphiQL handler has been updated to 0.8.1
117
- (#[ #11 ] ( https://github.com/mhallin /juniper/pull/11 ) )
117
+ (#[ #11 ] ( https://github.com/graphql-rust /juniper/pull/11 ) )
118
118
119
119
### Minor breaking changes
120
120
121
121
Some undocumented but public APIs were changed.
122
122
123
123
* ` to_snake_case ` correctly renamed to ` to_camel_case `
124
- ([ #9 ] ( https://github.com/mhallin /juniper/pull/9 ) )
124
+ ([ #9 ] ( https://github.com/graphql-rust /juniper/pull/9 ) )
125
125
* JSON serialization of ` GraphQLError ` changed to be more consistent
126
126
with how other values were serialized
127
- ([ #10 ] ( https://github.com/mhallin /juniper/pull/10 ) ).
127
+ ([ #10 ] ( https://github.com/graphql-rust /juniper/pull/10 ) ).
128
128
129
129
## [ 0.6.0] – 2017-01-02
130
130
@@ -340,11 +340,11 @@ using the macros and not deriving `GraphQLType` directly.
340
340
* Macro syntax stability has also been improved. All syntactical edge
341
341
cases of the macros have gotten tests to verify their correctness.
342
342
343
- [ 0.8.0 ] : https://github.com/mhallin /juniper/compare/0.8.0...0.8.1
344
- [ 0.8.0 ] : https://github.com/mhallin /juniper/compare/0.7.0...0.8.0
345
- [ 0.7.0 ] : https://github.com/mhallin /juniper/compare/0.6.3...0.7.0
346
- [ 0.6.3 ] : https://github.com/mhallin /juniper/compare/0.6.2...0.6.3
347
- [ 0.6.2 ] : https://github.com/mhallin /juniper/compare/0.6.1...0.6.2
348
- [ 0.6.1 ] : https://github.com/mhallin /juniper/compare/0.6.0...0.6.1
349
- [ 0.6.0 ] : https://github.com/mhallin /juniper/compare/0.5.3...0.6.0
350
- [ 0.5.3 ] : https://github.com/mhallin /juniper/compare/0.5.2...0.5.3
343
+ [ 0.8.0 ] : https://github.com/graphql-rust /juniper/compare/0.8.0...0.8.1
344
+ [ 0.8.0 ] : https://github.com/graphql-rust /juniper/compare/0.7.0...0.8.0
345
+ [ 0.7.0 ] : https://github.com/graphql-rust /juniper/compare/0.6.3...0.7.0
346
+ [ 0.6.3 ] : https://github.com/graphql-rust /juniper/compare/0.6.2...0.6.3
347
+ [ 0.6.2 ] : https://github.com/graphql-rust /juniper/compare/0.6.1...0.6.2
348
+ [ 0.6.1 ] : https://github.com/graphql-rust /juniper/compare/0.6.0...0.6.1
349
+ [ 0.6.0 ] : https://github.com/graphql-rust /juniper/compare/0.5.3...0.6.0
350
+ [ 0.5.3 ] : https://github.com/graphql-rust /juniper/compare/0.5.2...0.5.3
0 commit comments