Skip to content

Commit c9a86dc

Browse files
committed
2.3.0
1 parent f9ef0f3 commit c9a86dc

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@
1010

1111
### Bug fixes
1212

13+
# 2.3.0 (20 Mar 2024)
14+
15+
### Breaking Changes
16+
17+
- `orphan_types`: Only object types are accepted here; other types may be added to the schema through `extra_types` instead. #4869
18+
- Parser: line terminators are no longer allowed in single-quoted strings (as per the GraphQL spec). Escape newline characters instead; see `GraphQL::Language.escape_single_quoted_newline(query_str)` if you need to transform incoming query strings #4834
19+
20+
### Deprecations
21+
22+
- `.tracer(...)` is deprecated, use `.trace_with(...)` instead, using trace modules (https://graphql-ruby.org/queries/tracing.html) #4878
23+
24+
### Bug fixes
25+
26+
- Parser: handle some escaped character edge cases according to the GraphQL spec #4824
27+
- Analyzers: fix fragment skip/include tracking #4865
28+
- Remove unused Context modules #4876
29+
1330
# 2.2.14 (18 Mar 2024)
1431

1532
### Bug fixes

lib/graphql/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module GraphQL
3-
VERSION = "2.2.14"
3+
VERSION = "2.3.0"
44
end

0 commit comments

Comments
 (0)