Skip to content

Releases: krakphp/symfony-messenger-redis

Version 0.1.8

28 Feb 20:30
Compare
Choose a tag to compare
Version 0.1.8 Pre-release
Pre-release
  • Support Symfony 5
  • Upgrade dev devs

Version 0.1.7

27 Oct 16:41
bd5fbe2
Compare
Choose a tag to compare
Version 0.1.7 Pre-release
Pre-release
  • Fixed issue where delayed or denounced messages weren’t showing up in the queue count.

Version 0.1.6

16 Oct 21:12
f0d03fc
Compare
Choose a tag to compare
Version 0.1.6 Pre-release
Pre-release
  • Added Support for Debounce Stamp

Version 0.1.5

29 Jun 19:17
6ede44a
Compare
Choose a tag to compare
Version 0.1.5 Pre-release
Pre-release
  • Added support for TLS connections.

Version 0.1.4

26 May 20:40
afbeeb7
Compare
Choose a tag to compare
Version 0.1.4 Pre-release
Pre-release
  • Added support for redis db from DSN path

Version 0.1.3

30 Apr 19:44
1649444
Compare
Choose a tag to compare
Version 0.1.3 Pre-release
Pre-release
  • Fixed issue with auth and selecting a db
  • Added tests for auth and db
  • Added GitHub workflows for tests

Version 0.1.2

21 Apr 04:19
Compare
Choose a tag to compare
Version 0.1.2 Pre-release
Pre-release

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

21 Apr 01:49
Compare
Choose a tag to compare
Version 0.1.1 Pre-release
Pre-release

Fixes issue where messages weren't being removed from the processing queue if any sendable message stamps were added.

Version 0.1.0

27 Mar 05:03
Compare
Choose a tag to compare
Version 0.1.0 Pre-release
Pre-release

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