ᴀɴᴛᴏɴ

Results 27 issues of ᴀɴᴛᴏɴ

Publish separate repository with Kora Examples for all core components that can be used by newbie as simple guide for developing, trying, testing Kora features and a more interactive way...

documentation

Feature will allow users to create custom methods that are analogs to `@KafkaListener` ones but for producer This will allow for easier use of `@KafkaPubisher` with ability to specify configuration...

new feature
module: kafka

Features will allow to receive Kafka Headers for custom methods in `@KafkaListener` ```java public class KafkaListenerClass { @KafkaListener("test.config.path") public void process(String key, String value, Headers headers) { } } ```

new feature
module: kafka

Features: - HttpClientRequest & HttpClientResponse & HttpServerRequest & HttpServerResponse API refactoring and standardization - API Breaking changes

major change
module: http-server
breaking change

Features: - Kotlin Sync Client and Sync Server added - Existing modes API parameter breaking change Closes (#170) Mode parameter change: Before ``` java_client - non-reactive Java client java_server -...

lang: kotlin
module: openapi
breaking change

Camunda 8 Zeebe Worker module added ```java @Component public final class Step2JobWorker { private final Logger logger = LoggerFactory.getLogger(getClass()); @JobWorker("bar") public Map handle(JobContext context) { logJob(logger, context); return Map.of("someResult", "42");...

new module
experimental

Javadoc added for some modules and classes

javadoc

FlywayConfig added

improvement

Features: - S3 Client declarative client module added - AWS S3 Client support added - Minio S3 Client support added ```java @S3.Client("my") public interface SyncS3Client { @S3.Get("pre-{key}") S3Object getObject(String key);...

new module
experimental

gRPC interceptor execution order fixed

bug
module: grpc