Skip to content

Commit 698f179

Browse files
committed
1.13.1
1 parent 1249a9c commit 698f179

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,29 @@
88

99
### Bug fixes
1010

11+
# 1.13.1 (13 December 2021)
12+
13+
### Deprecations
14+
15+
- `.to_graphql` and `.graphql_definition` are deprecated and will be removed in GraphQL-Ruby 2.0. All features using those legacy definitions are already removed and all behaviors should have been ported to class-based definitions. So, you should be able to remove those calls entirely. Please open an issue if you have trouble with it! #3750 #3765
16+
17+
### New features
18+
19+
- `context.response_extensions[...] = ...` adds key-value pairs to the `"extensions" => {...}` hash in the final response #3770
20+
- Connections: `node_type` and `edge_type` accept `field_options:` to pass custom options to generated fields #3756
21+
- Field extensions: Support `default_argument ...` configuration for adding arguments if the field doesn't already have them #3751
22+
23+
### Bug fixes
24+
25+
- fix `rails destroy graphql:install` #3739
26+
- ActionCable subscriptions: close channel when unsubscribing from server #3737
27+
- Mutations: call `.authorized?` on arguments from `input_object_class`, `input_type`, too #3738
28+
- Prevent blank strings with `validates: { length: ... }, allow_blank: false` #3747
29+
- Lexer: return mutable strings when strings are empty #3741
30+
- Errors: don't send execution errors to schema-defined handlers from inside lazies #3749
31+
- Complexity: don't multiple `edges` and `nodes` fields by page size #3758
32+
- Performance: fix validation performance degradation from 1.12.20 #3762
33+
1134
# 1.13.0 (24 November 2021)
1235

1336
Since this version, GraphQL-Ruby is tested on Ruby 2.4+ and Rails 4+ only.

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 = "1.13.0"
3+
VERSION = "1.13.1"
44
end

0 commit comments

Comments
 (0)