kora icon indicating copy to clipboard operation
kora copied to clipboard

Results 20 kora issues
Sort by recently updated
recently updated
newest added

Move Kora documentation to new engine like [docusaurus](https://docusaurus.io/) with more feature set Need to investigate first for best engine possible for desired feature set: - Separate documentation for different Kora...

documentation

Rewrite most of existing Kora documentation with up-to-date examples, features to Russian

documentation

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

Assume I have the following type hierarchy: ```kt interface Foo { val empty val notEmpty get() = !empty } data class Bar(override val empty) : Foo ``` If I try...

lang: kotlin
module: json

When I use the following Koltin extension for AsyncHttpClient: ```kt client.execute(request) { resp -> // ... } ``` sometimes requests are failed with this error: ``` ru.tinkoff.kora.http.client.common.HttpClientConnectionException: io.netty.channel.StacklessClosedChannelException at ru.tinkoff.kora.http.client.async.AsyncHttpClient.lambda$execute$1(AsyncHttpClient.java:39)...

bug
lang: kotlin
module: http-client

I generated POST method from openapi and if I try to send a request with body "null" I get the following response: ``` HTTP/1.1 400 Bad Request Connection: keep-alive Server:...

bug
lang: java
module: http-server

At the moment Kora OpenAPI Generator supports the following modes: - java_client - non-reactive Java client - java_server - non-reactive Java server - reactive_client - reactive Java client (Project Reactor)...

new feature
lang: kotlin
module: openapi

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

major change
module: http-server
breaking change