1.0 KiB
1.0 KiB
CHANGELOG
5.4
- Deprecate not setting the
delete_after_ackconfig option (or DSN parameter), its default value will change totruein 6.0
5.3
- Add
rediss://DSN scheme support for TLS protocol - Deprecate TLS option, use
rediss://127.0.0.1instead ofredis://127.0.0.1?tls=1 - Add support for
\RedisClusterinstance inConnectionconstructor - Add support for Redis Cluster in DSN
5.2.0
- Added a
delete_after_rejectoption to the DSN to allow control over message deletion, similar todelete_after_ack. - Added option
lazyto delay connecting to Redis server until we first use it.
5.1.0
- Introduced the Redis bridge.
- Added TLS option in the DSN. Example:
redis://127.0.0.1?tls=1 - Deprecated use of invalid options
- Added ability to receive of old pending messages with new
redeliver_timeoutandclaim_intervaloptions. - Added a
delete_after_ackoption to the DSN as an alternative tostream_max_entriesto avoid leaking memory.