From 01eea762fc7bba25b369716c14683075842832eb Mon Sep 17 00:00:00 2001 From: MichaelJCompton Date: Thu, 15 Apr 2021 10:57:37 +1000 Subject: [PATCH] add last few changes --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f71c0ab1ca9..263ebc3eb64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,11 +16,15 @@ By [@steebchen](https://github.com/steebchen) in [#1449](https://github.com/99de ### Changed +* Updated to gqlparser to v2.2.0.
+By [@lwc](https://github.com/lwc) in [#1514](https://github.com/99designs/gqlgen/pull/1514) * GraphQL playground updated to 1.7.26.
By [@ddouglas](https://github.com/ddouglas) in [#1436](https://github.com/99designs/gqlgen/pull/1436) ### Fixed +* Removed a data race by copying when input fields have default values. +Bu [@skaji](https://github.com/skaji) in [#1456](https://github.com/99designs/gqlgen/pull/1456) * v0.12.2 broke the handling of pointers to slices by calling the custom Marshal and Unmarshal functions on the entire slice. It now correctly calls the custom Marshal and Unmarshal methods for each element in the slice.
By [@ananyasaxena](https://github.com/ananyasaxena) in [#1363](https://github.com/99designs/gqlgen/pull/1363) * Changes in go1.16 that mean go.mod and go.sum aren't always up to date. Now `go mod tidy` is run after code generation.