2017-09-29 00:54:00 -04:00
* Support redis-rb 4.0.
*Jeremy Daer*
2017-08-06 22:14:10 -04:00
* Hash long stream identifiers when using PostgreSQL adapter.
2017-07-06 10:34:05 -04:00
PostgreSQL has a limit on identifiers length (63 chars, [docs ](https://www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS )).
Provided fix minifies identifiers longer than 63 chars by hashing them with SHA1.
Fixes #28751 .
*Vladimir Dementyev*
2017-08-06 22:14:10 -04:00
* Action Cable's `redis` adapter allows for other common redis-rb options (`host`, `port` , `db` , `password` ) in cable.yml.
2017-06-26 21:34:37 -04:00
Previously, it accepts only a [redis:// url ](https://www.iana.org/assignments/uri-schemes/prov/redis ) as an option.
While we can add all of these options to the `url` itself, it is not explicitly documented. This alternative setup
is shown as the first example in the [Redis rubygem ](https://github.com/redis/redis-rb#getting-started ), which
makes this set of options as sensible as using just the `url` .
*Marc Rendl Ignacio*
2017-08-06 22:14:10 -04:00
* Action Cable socket errors are now logged to the console
2017-04-14 09:25:08 -04:00
Previously any socket errors were ignored and this made it hard to diagnose socket issues (e.g. as discussed in #28362 ).
*Edward Poot*
2017-04-29 13:41:44 -04:00
2017-03-21 19:41:39 -04:00
Please check [5-1-stable ](https://github.com/rails/rails/blob/5-1-stable/actioncable/CHANGELOG.md ) for previous changes.