This repository was archived by the owner on Jun 14, 2019. It is now read-only.
Releases: knalli/angular-vertxbus
Releases · knalli/angular-vertxbus
3.2.0
3.1.0
3.0.2
3.0.1
3.0.0
Bug Fixes
- package: fix license attribute in package.json (72dc32c)
Features
- compatiblity: replace the dependencies sockjs/vertxbus to latest (f56b4a6), closes #42 #61
- dependencies: update internal (dev) dependency AJS 1.2 -> 1.4 (57d07f5)
- e2e test: fix installing/configuration of e2e vertx3 server (c3413fe)
- provider: add support for custom auth/login interceptor (bc5f814)
- wrapper: add support for
eventbus.send()argfailureHandler(2f418bd) - wrapper: recognize missing vertx.EventBus.login(), improve usage (7c3bd49)
BREAKING CHANGES
- Since Vert.x 3 there is a dedicated bower dependency called
vertx3-eventbus-clientavailable. This one will replace the old legacy one.
Additionally, this commit replaces the dependency for sockjs-client@0.3.4 in favor of the latest sockjs-client@1.0.3
2.0.4
2.0.3
2.0.2
- no source changes
- added additional
dist/angular-vertxbus.withpolyfill.jswith bundled BabelJS polyfill
2.0.0
This release includes everything from the 1.1.x line.
The release 2.0.0 comes with a new documentation site.
Breaking Changes
- The internal language has been changed: this project uses internally ES6+ level using BabelJS.
- The build artifact has been changed: instead of an UMD output, a CommonJS module output is now being available.
- The optional RequireJS variant has been dropped. Use the standard file.
Features
- service: change signature of .send() #51 (7534034d)
- Official support for AngularJS 1.4 (older versions are already compatible, but you had to enforce it)
Breaking Changes
- The arguments of vertxEventBusService.send() have
been restructured.
Instead of send(address, message, timeout, expectReply) it is now
send(address, message, {timeout, expectReply}).
Reasons for this improvement of api:
- Both
addressandmessageare required, but the other ones are only
optional. - Long arguments are not a good api design
- Using default timeout does not require an
undefinedargument or
even a missplacednullor0.
(7534034d)
2.0.0-beta.6
- Docs