Skip to content

Commit 0959705

Browse files
committed
1.11.2
1 parent 7766225 commit 0959705

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

CHANGELOG.md

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

99
### Bug fixes
1010

11+
## 1.11.2 (1 August 2020)
12+
13+
### Breaking changes
14+
15+
- Previously, GraphQL-Ruby allowed _both_ `default_value: ...` and `required: true` in argument definitions. However, this definition doesn't make sense -- a default value is never used for a `required: true` argument. This configuration now raises an error. Remove the `default_value:` to get rid of the error. #3011
16+
17+
### New features
18+
19+
- Support Date, Time and OpenStruct in Subscription::Serialize #3057
20+
21+
### Bug fixes
22+
23+
- Speed up `DELETE_NODE` check #3053
24+
- Reject invalid enum values during definition #3055
25+
- Fix `.trigger` from unsubscribed ActionCable channel #3051
26+
- Fix error message from VariablesAreUsedAndDefined for anonymous queries #3050
27+
- Fix renaming variable identifiers in AST visitor #3045
28+
- Reject `default_value: ...` used with `required: true` during definition #3011
29+
- Use the configured `edge_class:` with new connections #3036
30+
- Don't call visible for unused arguments #3030, #3031
31+
- Properly load directives from introspection results #3021
32+
- Reject interfaces as members of unions #3024
33+
- Load deprecation reason from introspection results #3014
34+
- Fix arguments caching when extension modify arguments #3009
35+
1136
## 1.11.1 (17 June 2020)
1237

1338
### New Features

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.11.1"
3+
VERSION = "1.11.2"
44
end

0 commit comments

Comments
 (0)