1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actioncable/CHANGELOG.md

38 lines
1 KiB
Markdown
Raw Normal View History

* Permit same-origin connections by default.
2016-11-12 13:14:49 -05:00
Added new option `config.action_cable.allow_same_origin_as_host = false`
to disable this behaviour.
*Dávid Halász*, *Matthew Draper*
* Prevent race where the client could receive and act upon a
subscription confirmation before the channel's `subscribed` method
completed.
Fixes #25381.
*Vladimir Dementyev*
* Buffer now writes to WebSocket connections, to avoid blocking threads
that could be doing more useful things.
*Matthew Draper*, *Tinco Andringa*
* Protect against concurrent writes to a WebSocket connection from
2016-07-08 13:47:03 -04:00
multiple threads; the underlying OS write is not always threadsafe.
2016-07-08 13:47:03 -04:00
*Tinco Andringa*
2016-11-12 13:14:49 -05:00
* Add `ActiveSupport::Notifications` hook to `Broadcaster#broadcast`.
2016-07-08 13:47:03 -04:00
*Matthew Wear*
2016-05-06 17:54:40 -04:00
2016-07-08 13:47:03 -04:00
* Close hijacked socket when connection is shut down.
2016-07-08 13:23:35 -04:00
2016-07-08 13:47:03 -04:00
Fixes #25613.
2016-07-08 13:23:35 -04:00
2016-07-08 13:47:03 -04:00
*Tinco Andringa*
2016-07-08 13:23:35 -04:00
2016-05-10 00:07:09 -04:00
Please check [5-0-stable](https://github.com/rails/rails/blob/5-0-stable/actioncable/CHANGELOG.md) for previous changes.