Releases: jandelgado/rabtap
Releases · jandelgado/rabtap
Release v1.27
allow RabbitMQ http API requests to be cancelled by ctrl+c
Release v1.26
- fixes authentication with client certificates and adds basic (m)TLS integration tests
- minor fixes to the documentation (examples)
- switched to github actions (from travis)
Release v1.25
fixes a problem when the RabbitMQ API consumers API returns unexpected data, which let the rabtap info
command fail with an error (#48)
Release v1.24
- new: TLS client certificate support (#46). Thanks to @fgouteroux !
- fix: correctly set AMQP headers (#45)
Release v1.23
bugfix: avoid endless recursion in info
command (fixes #42)
Release v1.22
The pub
command now allows also to replay messages from a directory previously recorded. The pub
command also honors the recorded timestamps and delays the messages during replay. The signature of the pub
command was changed (see README.md). Note that the exchange is now optional and will be taken
from the message metadata that is published.
Release v1.21
- new option:
--format FORMAT
which controls output format intap
,
subscribe
commands.--format json
is equivalent to--json
, which is
now deprecated - new output format:
--format json-nopp
which is not-pretty-printed JSON in
tap
andsubscribe
commands (#31) - new option
--silent
for commandstap
andsubscribe
which suppresses
message output to stdout (#11) - short
-o
option for the info command--omit-empty
is no longer supported - uniformly name test files
*_test.go
to improve external tool discoverbility
Release v1.20
Fixed termination issues. See CHANGELOG.md for details.
Rabtap v1.19
- new option
--no-auto-ack
for sub command disables auto acknowledge when messages are received by rabtap (#15) - new: output of info command can now also be rendered to dot format, to create a visualization using graphviz. Set format with
--format=dot
, e.g.rabtap info --format=dot
(#23) - fix: termination with ctrl+c in tap, pub, sub commands now works reliably (#22)
- change: option
--by-connection
of info command changed to--mode=byConnection
- heaviliy simplified code
Rabtap v1.18
allow colons in exchange names by escaping them, e.g. exchange\\:with\\:colon
(fixes #13)