From 04104f17b7bb2b885494bd8c9b2cec33f8f95b83 Mon Sep 17 00:00:00 2001 From: Robert Mosolgo Date: Wed, 6 Mar 2024 14:29:08 -0500 Subject: [PATCH] 2.2.12 --- CHANGELOG.md | 15 +++++++++++++++ lib/graphql/version.rb | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1472744ef..e29aeae67f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,21 @@ ### Bug fixes +# 2.2.12 (6 Mar 2024) + +### Deprecations + +- `Schema.{query|mutation|subscription}_execution_strategy` methods are deprecated without replacement #4867 + +### Breaking Changes + +- Connections: Revert changes to `hasNextPage` returning `false` when no `first` is given (previously changed in 2.2.6) #4866 + +### Bug fixes + +- Complexity: handle unauthorized argument errors better #4868 +- Pass `context` when fetching argument for `loads: ...` #4870 + # 2.2.11 (27 Feb 2024) ### New features diff --git a/lib/graphql/version.rb b/lib/graphql/version.rb index 266a38fa5d..cd12d1553b 100644 --- a/lib/graphql/version.rb +++ b/lib/graphql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GraphQL - VERSION = "2.2.11" + VERSION = "2.2.12" end