Releases: fp-in-bo/jms4s
Releases · fp-in-bo/jms4s
v0.1.0 - Socialismo tascabile (Prove tecniche di trasmissione)
Migrate to Cats-Effect 3.0
v0.0.11 - Physical Graffiti
- Remove useless type constraints
- Various fixes
v0.0.10 - Ummagumma
- Upgrade version dependencies
v0.0.9 - Give Up
Fix sendN
in transacted consumers, which was causing message consuming to be blocked after a previous sendN
was performed.
v0.0.8 - The future is now
Bump dependencies.
One last release before cats-effects 3, hopefully.
v0.0.7 - Something to Write Home About
Fix issue with sendN
in transacted consumers which was committing the session too early.
v0.0.6 - What It Is To Burn
Make all JmsMessage getters return Option[T] instead of Try[T] handling possible jms exceptions of jms driver.
v0.0.5 - De-Loused in the Comatorium
In this release:
- Providers instantiate
JmsClient
. This means thatJmsContext
is no more accessible to clients - Updated internals which is now using a saner approach for receiving
v0.0.4 - Good Apollo, I'm Burning Star IV
The main change in this release is in how the lib lets the user create messages to send (#24).
v0.0.3 - Relantionship of Command
This version will bring in the following additions/updates:
- Add
Show
instance forJmsMessage
. This may be helpful for logging purposes. - Remove
F
fromJmsMessage
. Most of the ops onJmsMessage
are not doing any I/O at all, so we found it easier to just returnTry
s and avoid the spread ofF
everywhere in clients' projects.