Skip to content
This repository was archived by the owner on Jun 14, 2019. It is now read-only.

4.0.0

Choose a tag to compare

@knalli knalli released this 13 Feb 16:51
· 152 commits to master since this release

Features

  • upgrade baseline to Vert.x 3.2 (breaking changes) (e06515b)
  • adapter: add support for EventBus.onerror (5e93cde)
  • service: add support for failureHandler on send (bbec54c)
  • service: add support for new type=err messages (54c4b2b)

BREAKING CHANGES

  • Due insuffcient support and breaking things, the feature login has been removed completely. It will come back supporting login on connect providers as well (i.e. JWT over BasicAuth).
  • Due upgrading to Vert.x 3.2 (incl. 3.1), several things changed internally. Be aware of https://github.com/vert-x3/wiki/wiki/3.2.0-Breaking-changes
  • Since Vert.x 3.1, the dependency has changed vertx3bus => vertx-eventbus. Also the file name itself has changed.
  • Since Vert.x 3.1, the EventBus is a global now. No vertx. anymore.
  • Since Vert.x 3.1, the message payload of a receiving message has changed being closer to NodeJS apis. The vertxEventBusService will handle this correct without a change, but vertxEventBus has changed the signature being compliant: register('address', callback({address, message})) => register(callback(err, {address, message}))