Releases: krakphp/symfony-messenger-redis
Releases · krakphp/symfony-messenger-redis
Version 0.1.8
- Support Symfony 5
- Upgrade dev devs
Version 0.1.7
- Fixed issue where delayed or denounced messages weren’t showing up in the queue count.
Version 0.1.6
- Added Support for Debounce Stamp
Version 0.1.5
- Added support for TLS connections.
Version 0.1.4
- Added support for redis db from DSN path
Version 0.1.3
- Fixed issue with auth and selecting a db
- Added tests for auth and db
- Added GitHub workflows for tests
Version 0.1.2
Supporting Legacy Serialization Format When Receiving
The legacy serialization format of a tuple array was causing an issue with the lua command when checking if we should delete the unique id out of the set.
We'd specifically get the following error:
@user_script:26: @user_script: 26: Lua redis() command arguments must be strings or integers
which stemmed from the fact that when we tested if uniqueId field didn't equal cjson.nil, we essentially allowed for any non-nil type to be executed, but in reality we should only allow strings to be passed through. So we made that update.
Version 0.1.1
Fixes issue where messages weren't being removed from the processing queue if any sendable message stamps were added.
Version 0.1.0
Initial Release for Symfony 4.4
- Functional Redis Transport based on redis lists and the reliable queue pattern
- Support for unique messages
- Support for delayed messages