aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'actioncable/CHANGELOG.md')
-rw-r--r--actioncable/CHANGELOG.md15
1 files changed, 10 insertions, 5 deletions
diff --git a/actioncable/CHANGELOG.md b/actioncable/CHANGELOG.md
index 1ea862b389..d59e48e00c 100644
--- a/actioncable/CHANGELOG.md
+++ b/actioncable/CHANGELOG.md
@@ -1,11 +1,16 @@
-* Add ActiveSupport::Notifications to ActionCable::Channel.
+* Pubsub: automatic stream decoding.
- *Matthew Wear*
+ stream_for @room, coder: ActiveSupport::JSON do |message|
+ # `message` is a Ruby hash here instead of a JSON string
-* Allow channel identifiers with no backslahes/escaping to be accepted
- by the subscription storer.
+ The `coder` must respond to `#decode`. Defaults to `coder: nil`
+ which skips decoding entirely.
- *Jon Moss*
+ *Jeremy Daer*
+
+* Add ActiveSupport::Notifications to ActionCable::Channel.
+
+ *Matthew Wear*
* Safely support autoloading and class unloading, by preventing concurrent
loads, and disconnecting all cables during reload.