Skip to content

Releases: wowselim/eventbus-service

4.0.0-RC1

31 Jan 13:22
Compare
Choose a tag to compare
4.0.0-RC1 Pre-release
Pre-release

This release adds support for running eventbus-service in clustered environments by allowing you to specify a custom codec to be used and lifting the limitation of local-only requests.

It also adds the extension functions to generated object declarations instead of Vertx.

3.0.0

06 Oct 15:53
Compare
Choose a tag to compare

With the 3.0.0 release, this library now uses ksp instead of kapt.

2.1.1

05 Oct 14:59
Compare
Choose a tag to compare

Bump:
Kotlin to 1.7.20
Kotlin Coroutines to 1.6.4
Vertx to 4.3.4

2.1.0

18 Jun 19:04
Compare
Choose a tag to compare

Switch to Apache license

Bumped:

  • vert.x to 4.3.1
  • kotlin to 1.7.0
  • kotlin-coroutines to 1.6.2
  • kotlinpoet to 1.12.0

Added:

  • Support for one-way calls #36

Improvements:

  • Logs are more useful now
  • Annotation processor logs errors instead of logging + throwing them

2.0.3

06 Sep 16:16
a0cec84
Compare
Choose a tag to compare

Bump:

  • vert.x to 4.1.3
  • kotlin to 1.5.30
  • kotlin coroutines to 1.5.2
  • version to 2.0.3

2.0.2

13 Jul 10:24
49ad2e3
Compare
Choose a tag to compare

Bump:

  • vert.x to 4.1.1
  • kotlinpoet to 1.9.0
  • kotlin to 1.5.20
  • kotlin coroutines to 1.5.1
  • version to 2.0.2

Fix:

  • deprecation warnings during compilation (lowercase & uppercase related)
  • use toReceiveChannel instead of toChannel for message consumers
  • annotation processing warning about lower supported source version

2.0.1

17 Jun 17:09
Compare
Choose a tag to compare
  • Bump Vert.x version to 4.1.0
  • Bump Kotlin version to 1.5.10

2.0.0

28 May 05:35
69cbea0
Compare
Choose a tag to compare
  • Migrate from verbose annotations to interface-based code generation.
  • Add support for all kotlin types
  • Make generated properties internal by default

2.0.0-RC

08 Apr 16:30
Compare
Choose a tag to compare
2.0.0-RC Pre-release
Pre-release
  • Migrate from verbose annotations to interface-based code generation.
  • Support all kotlin types

1.2.0

31 Jan 11:52
Compare
Choose a tag to compare
  • add source jars
  • add support for destructuring operators:
vertx.capitalizationRequests
  .onEach { (request, reply) ->
    reply(request.name.capitalize())
  }