aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/CHANGELOG.md
diff options
context:
space:
mode:
authorRichard Macklin <richard.github@nrm.com>2018-12-01 14:48:24 -0800
committerRichard Macklin <richard.github@nrm.com>2018-12-01 14:49:43 -0800
commit2bb4fdef5efc70327c018e982ff809a29ac6708b (patch)
tree51bf25fefd24540a84bb8b27c31e02123e58881c /actioncable/CHANGELOG.md
parentaa1ba9cb244b1e03d36aaa941ae4e91c6713b77e (diff)
downloadrails-2bb4fdef5efc70327c018e982ff809a29ac6708b.tar.gz
rails-2bb4fdef5efc70327c018e982ff809a29ac6708b.tar.bz2
rails-2bb4fdef5efc70327c018e982ff809a29ac6708b.zip
Replace reference to WebSocket global with ActionCable.adapters.WebSocket
The WebSocket dependency of ActionCable.Connection was made configurable in 66901c1849efae74c8a58fe0cb36afd487c067cc However, the reference here in Connection#getState was not updated to use the configurable property. This change remedies that and adds a test to verify it. Additionally, it backfills a test to ensure that Connection#open uses the configurable property.
Diffstat (limited to 'actioncable/CHANGELOG.md')
-rw-r--r--actioncable/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/actioncable/CHANGELOG.md b/actioncable/CHANGELOG.md
index c0ab0485f3..e30e07d4a2 100644
--- a/actioncable/CHANGELOG.md
+++ b/actioncable/CHANGELOG.md
@@ -1,3 +1,7 @@
+* `ActionCable.Connection#getState` now references the configurable
+ `ActionCable.adapters.WebSocket` property rather than the `WebSocket` global
+ variable, matching the behavior of `ActionCable.Connection#open`.
+
* The ActionCable javascript package has been converted from CoffeeScript
to ES2015, and we now publish the source code in the npm distribution.