Angular Vertxbus Versions Save

AngularJS 1.x service wrapper for the Vert.x Event Bus

3.2.0

8 years ago

Bug Fixes

  • docs: Fix invalid params descriptions (1f85e52)
  • test: fix incorrect redelcaration of a block scope variable (6aa9572)
  • test: fix internal babel-node scriptlets (2acde13)

Features

  • adapter: overload signature of EB.connect() returning promise (df7cf0d), closes #90
  • build: add .babelrc (ce49603)

3.1.0

8 years ago

Bug Fixes

  • build: fix invalid license header in artifacts' headers (f0597fb)

Features

  • wrapper: introduce .disableAutoConnect() #71 (ce3a0af)

3.0.2

8 years ago

Improvements in internals, source code, update internal dependencies incl. BabelJS.

No changes afterall.

3.0.1

8 years ago

No functional changes

  • This update changes only internals, structures and internal dependencies (patch only).

3.0.0

8 years ago

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() arg failureHandler (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-client available. This one will replace the old legacy one. Additionally, this commit replaces the dependency for [email protected] in favor of the latest [email protected]

2.0.4

8 years ago

Actually like 2.0.3 which has introduced a console.trace() :scream:

2.0.3

8 years ago

Bug Fixes

  • demo: Replace CoffeeScript w/ BabelJS runner (4dc71a07)
  • service: fix doubled handler registration in special circumstances (f3311ca5)

2.0.2

8 years ago
  • no source changes
  • added additional dist/angular-vertxbus.withpolyfill.js with bundled BabelJS polyfill

See https://github.com/knalli/angular-vertxbus/blob/98afd11f462ba1d2c762276dc05c14493a777f10/README.md#javascript-polyfill

2.0.0

8 years ago

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:

  1. Both address and message are required, but the other ones are only optional.
  2. Long arguments are not a good api design
  3. Using default timeout does not require an undefined argument or even a missplaced null or 0. (7534034d)

2.0.0-beta.6

9 years ago
  • Docs