You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,28 @@
8
8
9
9
### Bug fixes
10
10
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
0 commit comments