This repository was archived by the owner on Jun 14, 2019. It is now read-only.
4.0.0
Features
- upgrade baseline to Vert.x 3.2 (breaking changes) (e06515b)
- adapter: add support for
EventBus.onerror(5e93cde) - service: add support for
failureHandleron send (bbec54c) - service: add support for new
type=errmessages (54c4b2b)
BREAKING CHANGES
- Due insuffcient support and breaking things, the feature
loginhas 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
EventBusis a global now. Novertx.anymore. - Since Vert.x 3.1, the message payload of a receiving message has changed being closer to NodeJS apis. The
vertxEventBusServicewill handle this correct without a change, butvertxEventBushas changed the signature being compliant:register('address', callback({address, message}))=>register(callback(err, {address, message}))