Skip to content

Commit 5ac3324

Browse files
committed
1.11.0
1 parent 79b8c0b commit 5ac3324

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

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

99
### Bug fixes
1010

11+
## 1.11.0 (13 June 2020)
12+
13+
### Breaking changes
14+
15+
- Global tracers are removed (deprecated since 1.7.4) #2936
16+
- Fields defined in camel case (`field :doStuff`) will not line up to methods that are underscore case (`def do_stuff`). Instead, the given symbol is used _verbatim_. #2938 To work around this:
17+
18+
- Change the name of the field to match the method
19+
- Or, add `method: :do_stuff` to explicitly map the field to a method
20+
21+
You can probably find instances of this in your application with a regexp like `/field :[a-z]+[A-Z]/`, and review them.
22+
23+
### New features
24+
25+
- `extend SubscriptionRoot` is no longer necessary #2770
26+
- Add `broadcast: true` option to subscriptions #2959
27+
- Add `Edge#parent` to new connection classes #2961
28+
29+
### Bug fixes
30+
31+
- Use the field name as configured for hash key or method name #2906
32+
1133
## 1.10.12 (13 June 2020)
1234

1335
### 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 = "1.10.12"
3+
VERSION = "1.11.0"
44
end

0 commit comments

Comments
 (0)