diff --git a/CHANGELOG.md b/CHANGELOG.md index 262cc5465e..e088db7a70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ ### Bug fixes +# 2.4.3 (11 Nov 2024) + +### Bug fixes + +- Lookahead: return an empty hash for `.arguments` when they raised a `GraphQL::ExecutionError` #5155 +- Visibility: fix error when Mutation is lazy-loaded #5158 +- Visibility: improve performance of `Schema.types` #5157 + # 2.4.2 (7 Nov 2024) ### Bug fixes diff --git a/lib/graphql/version.rb b/lib/graphql/version.rb index 6d5c949efb..08a0b220da 100644 --- a/lib/graphql/version.rb +++ b/lib/graphql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GraphQL - VERSION = "2.4.2" + VERSION = "2.4.3" end