From 44be301b072951b62ca012cdcc4d3e936efb9d48 Mon Sep 17 00:00:00 2001 From: Robert Mosolgo Date: Thu, 24 Oct 2024 14:04:42 -0400 Subject: [PATCH] 2.3.19 --- CHANGELOG.md | 12 ++++++++++++ lib/graphql/version.rb | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1b039b1cb..f01df86460 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,18 @@ ### Bug fixes +# 2.3.19 (24 Oct 2024) + +### New features + +- Dataloader: accept a `fiber_limit:` option #5132 + +### Bug fixes + +- Argument Validation: improve the `one_of:` error message #5130 +- Lookahead: return a null lookahead from `Query#lookahead` when no operation is selected #5129 +- Static Validation: speed up FieldsWillMerge when some fields are not defined #5125 + # 2.3.18 (7 Oct 2024) ### Bug fixes diff --git a/lib/graphql/version.rb b/lib/graphql/version.rb index 68641976a4..c90d08bcf6 100644 --- a/lib/graphql/version.rb +++ b/lib/graphql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GraphQL - VERSION = "2.3.18" + VERSION = "2.3.19" end