rails/actioncable/CHANGELOG.md
Jeremy Daer 53c516d88d
redis-rb 4.0 support
* Use `gem 'redis', '~> 4.0'` for new app Gemfiles
* Loosen Action Cable redis-rb dep to `>= 3.3, < 5`
* Bump redis-namespace for looser Redis version dep
* Avoid using the underlying `redis.client` directly
* Use `Redis.new` instead of `Redis.connect`
2017-10-08 15:37:54 -07:00

1.3 KiB

  • Support redis-rb 4.0.

    Jeremy Daer

  • Hash long stream identifiers when using PostgreSQL adapter.

    PostgreSQL has a limit on identifiers length (63 chars, docs). Provided fix minifies identifiers longer than 63 chars by hashing them with SHA1.

    Fixes #28751.

    Vladimir Dementyev

  • Action Cable's redis adapter allows for other common redis-rb options (host, port, db, password) in cable.yml.

    Previously, it accepts only a redis:// url 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, which makes this set of options as sensible as using just the url.

    Marc Rendl Ignacio

  • Action Cable socket errors are now logged to the console

    Previously any socket errors were ignored and this made it hard to diagnose socket issues (e.g. as discussed in #28362).

    Edward Poot

Please check 5-1-stable for previous changes.