Skip to content

v1.41

Compare
Choose a tag to compare
@github-actions github-actions released this 28 Aug 11:58
· 19 commits to master since this release
8219fa6

Changelog

  • 8219fa6 Filter messages in sub and tap command (#100)

What's Changed

  • Filter messages in sub and tap command by @jandelgado in #100
    • new: --filter=FILTER option for tap and sub commands to filter output
      of received messages, e.g. rabtap sub JDQ --filter="r.msg.RoutingKey == 'test'"
      or rabtap sub JDQ --filter="let b=fromJSON(r.toStr(r.body(r.msg))); b.Name == 'JAN'". See README for details.
    • breaking change: the binding, queue, exchange, connection and channel variables available
      in expressions of rabtap info --filter=FILTER are now all prefixed with r. and are thus now to be referenced as r.binding,
      r.queue etc.
    • Documented channel and connection expression variables that are available in the rabtap info --filter <expr> command. See README for details.

Full Changelog: v1.40...v1.41