Skip to content

Commit

Permalink
2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmosolgo committed Mar 20, 2024
1 parent f9ef0f3 commit c9a86dc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,23 @@

### Bug fixes

# 2.3.0 (20 Mar 2024)

### Breaking Changes

- `orphan_types`: Only object types are accepted here; other types may be added to the schema through `extra_types` instead. #4869
- 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

### Deprecations

- `.tracer(...)` is deprecated, use `.trace_with(...)` instead, using trace modules (https://graphql-ruby.org/queries/tracing.html) #4878

### Bug fixes

- Parser: handle some escaped character edge cases according to the GraphQL spec #4824
- Analyzers: fix fragment skip/include tracking #4865
- Remove unused Context modules #4876

# 2.2.14 (18 Mar 2024)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion lib/graphql/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module GraphQL
VERSION = "2.2.14"
VERSION = "2.3.0"
end

0 comments on commit c9a86dc

Please sign in to comment.