Skip to content

Commit

Permalink
release v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lwc committed Sep 8, 2021
1 parent 8e97969 commit 56451d9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
22 changes: 17 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
### Added

### Changed

### Fixed


## v0.14.0 - 2021-09-08

### Added

* Added a changelog :-) Following the same style as [Apollo Client](https://github.com/apollographql/apollo-client) because that feels like it gives good thanks to the community contributors. <br />
By [@MichaelJCompton](https://github.com/MichaelJCompton) in [#1512](https://github.com/99designs/gqlgen/pull/1512)
* Added support for methods returning `(v, ok)` shaped values to support Prisma Go client. <br />
By [@steebchen](https://github.com/steebchen) in [#1449](https://github.com/99designs/gqlgen/pull/1449)
* Added a new API to finish an already validated config <br />
By [@benjaminjkraft](https://github.com/benjaminjkraft) in [#1387](https://github.com/99designs/gqlgen/pull/1387)

### Changed

Expand All @@ -23,8 +34,8 @@ By [@ddouglas](https://github.com/ddouglas) in [#1436](https://github.com/99desi

### 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)
* Removed a data race by copying when input fields have default values. <br />
By [@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. <br />
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. <br />
Expand All @@ -35,9 +46,10 @@ By [@wilhelmeek](https://github.com/wilhelmeek) in [#1480](https://github.com/99
By [@vektah](https://github.com/vektah) in [#1399](https://github.com/99designs/gqlgen/pull/1399)
* Fixed `collectFields` not correctly respecting alias fields in fragments. <br />
By [@vmrajas](https://github.com/vmrajas) in [#1341](https://github.com/99designs/gqlgen/pull/1341)
* Return introspection document in stable order. <br />
* By [@nyergler](https://github.com/nyergler) in [#1497](https://github.com/99designs/gqlgen/pull/1497)


## [0.13.0] - 2020-09-21
## v0.13.0 - 2020-09-21

Base version at which changelog was introduced.

3 changes: 2 additions & 1 deletion docs/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ RESET='\033[0m'
HOST=https://gqlgen.com

VERSIONS_ARRAY=(
'v0.13.0'
'v0.14.0'
'origin/master'
'v0.13.0'
'v0.12.2'
'v0.11.3'
'v0.10.2'
Expand Down
2 changes: 1 addition & 1 deletion graphql/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package graphql

const Version = "v0.13.0-dev"
const Version = "v0.14.0"

0 comments on commit 56451d9

Please sign in to comment.