Skip to content

Commit 53bc45b

Browse files
committed
1.11.7
1 parent 3459702 commit 53bc45b

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

Diff for: CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,40 @@
88

99
### Bug fixes
1010

11+
# 1.11.7 (18 January 2021)
12+
13+
### Breaking changes
14+
15+
- Incoming integer values are properly bound (as per the spec) #3206 To continue receiving out-of-bound integer values, add this to your schema's `def self.type_error(err, ctx)` hook:
16+
17+
```ruby
18+
def self.type_error(err, ctx)
19+
if err.is_a?(GraphQL::IntegerDecodingError)
20+
return err.value # return it anyways, since this is how graphql-ruby used to work
21+
end
22+
# ...
23+
end
24+
```
25+
26+
### New features
27+
28+
- Support Ruby 3.0 #3278
29+
- Add validation timeout option #3234
30+
- Support Prometheus custom_labels in GraphQLCollector #3215
31+
32+
### Bug fixes
33+
34+
- Handle `GraphQL::UnauthorizedError` in interpreter in from arguments #3276
35+
- Set description for auto-generated `input:` argument #3141
36+
- Improve performance of fields will merge validation #3228
37+
- Use `Float` graphql type for ActiveRecord decimal columns #3246
38+
- Add some custom methods to ArrayConnection #3238
39+
- Fix generated fields for types ending Connection #3223
40+
- Improve runtime performance #3217
41+
- Improve argument handling when extensions shortcut the defined resolve #3212
42+
- Bind scalar ints as per the spec #3206
43+
- Validate that input object names are unique #3205
44+
1145
## 1.11.6 (29 October 2020)
1246

1347
### Breaking changes

Diff for: lib/graphql/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module GraphQL
3-
VERSION = "1.11.6"
3+
VERSION = "1.11.7"
44
end

0 commit comments

Comments
 (0)