From 7840f5680c0ef28f1866ab698ab3ad87790e63ae Mon Sep 17 00:00:00 2001 From: Robert Mosolgo Date: Thu, 11 Mar 2021 15:36:40 -0500 Subject: [PATCH] 1.12.6 --- CHANGELOG.md | 13 +++++++++++++ lib/graphql/version.rb | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74a8f8a799..6f0b79a7d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,19 @@ ### Bug fixes +# 1.12.6 (11 March 2021) + +### New features + +- Connection types: support `edges_nullable(false)` and `edge_nullable(false)` for non-null fields #3376 +- Connections: add `.arguments` reader to new `Pagination::Connection` classes #3360 + +### Bug fixes + +- Relation connection: Remove extra `COUNT` query from some scenarios #3373 +- Add a Bootsnap-style parsing cache when Bootsnap is detected #3156 +- Fix input validation for input object variables #3370 + # 1.12.5 (18 February 2021) ### New features diff --git a/lib/graphql/version.rb b/lib/graphql/version.rb index 07220ec870..1db990a716 100644 --- a/lib/graphql/version.rb +++ b/lib/graphql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GraphQL - VERSION = "1.12.5" + VERSION = "1.12.6" end