|
1 | 1 | Change log
|
2 | 2 | ==========
|
3 | 3 |
|
| 4 | +## [0.6.2] – 2017-02-05 |
| 5 | + |
| 6 | +### New features |
| 7 | + |
| 8 | +* The ``null`` literal is now supported in the GraphQL language. (#26) |
| 9 | +* Rustc-serialize is now optional, but enabled by default. If you |
| 10 | + _only_ want Serde support, include Juniper without default features |
| 11 | + and enable Serde. (#12) |
| 12 | +* The built-in ``ID`` type now has a public constructor and derives a |
| 13 | + few traits (``Clone``, ``Debug``, ``Eq``, ``PartialEq``, |
| 14 | + ``From<String>``, ``Deref<Target=str>``). (#19) |
| 15 | +* Juniper is now built and tested against all Rust compilers since |
| 16 | + version 1.12.1. |
| 17 | + |
| 18 | +### Minor breaking change |
| 19 | + |
| 20 | +* Serde has been updated to 0.9. (#25) |
| 21 | + |
| 22 | +### Bugfixes |
| 23 | + |
| 24 | +* The built-in GraphiQL handler had a bug in variable serialization. |
| 25 | + (#16) |
| 26 | +* The example should now build and run without problems on |
| 27 | + Windows. (#15) |
| 28 | +* Object types now properly implement ``__typename``. (#22) |
| 29 | +* String variables are now properly parsed into GraphQL enums. (#17) |
| 30 | + |
4 | 31 | ## [0.6.1] – 2017-01-06
|
5 | 32 |
|
6 | 33 | ### New features
|
@@ -236,7 +263,7 @@ using the macros and not deriving `GraphQLType` directly.
|
236 | 263 | * Macro syntax stability has also been improved. All syntactical edge
|
237 | 264 | cases of the macros have gotten tests to verify their correctness.
|
238 | 265 |
|
239 |
| - |
| 266 | +[0.6.2]: https://github.com/mhallin/juniper/compare/0.6.1...0.6.2 |
240 | 267 | [0.6.1]: https://github.com/mhallin/juniper/compare/0.6.0...0.6.1
|
241 | 268 | [0.6.0]: https://github.com/mhallin/juniper/compare/0.5.3...0.6.0
|
242 | 269 | [0.5.3]: https://github.com/mhallin/juniper/compare/0.5.2...0.5.3
|
0 commit comments