Releases: wowselim/eventbus-service
Releases · wowselim/eventbus-service
4.0.0-RC1
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
With the 3.0.0 release, this library now uses ksp instead of kapt.
2.1.1
Bump:
Kotlin to 1.7.20
Kotlin Coroutines to 1.6.4
Vertx to 4.3.4
2.1.0
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
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
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
- Bump Vert.x version to 4.1.0
- Bump Kotlin version to 1.5.10
2.0.0
- 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
- Migrate from verbose annotations to interface-based code generation.
- Support all kotlin types
1.2.0
- add source jars
- add support for destructuring operators:
vertx.capitalizationRequests
.onEach { (request, reply) ->
reply(request.name.capitalize())
}