From fc089b03d22cef6184993e9991787051e8172cc1 Mon Sep 17 00:00:00 2001 From: Robert Mosolgo Date: Mon, 27 Apr 2020 06:54:38 -0400 Subject: [PATCH] 1.10.8 --- CHANGELOG.md | 18 ++++++++++++++++++ lib/graphql/version.rb | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ee80f4199..57ee504522 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,24 @@ ### Bug fixes +## 1.10.8 (27 April 2020) + +### Breaking changes + +- With the interpreter, `Query#arguments_for` returns `Interpreter::Arguments` instances instead of plain hashes. (They should work mostly the same, though.) #2881 + +### New features + +- `Schema::Field#introspection?` returns true for built-in introspection-related fields + +### Bug fixes + +- Fix Ruby 2.7 warning on `Schema.to_json` #2905 +- Pass `&block` to nested method calls to reduce stack depths #2900 +- Fix lazy `loads:` with list arguments #2894 +- Fix `loads:` on nested input object #2895 +- Rescue base64 encoding errors in the encoder #2896 + ## 1.10.7 (16 April 2020) ### Breaking changes diff --git a/lib/graphql/version.rb b/lib/graphql/version.rb index 596befff74..5af915923d 100644 --- a/lib/graphql/version.rb +++ b/lib/graphql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GraphQL - VERSION = "1.10.7" + VERSION = "1.10.8" end