Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mkdocs/config/en/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ site_dir: "../../generated/en"


# Project information
site_name: Kora Framework 1.2.17
site_name: Kora Framework 1.2.18
site_url: https://kora-projects.github.io/kora-docs/en/
nav:
- Guides:
Expand Down
2 changes: 1 addition & 1 deletion mkdocs/config/ru/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ site_dir: "../../generated/ru"


# Project information
site_name: Kora фреймворк 1.2.17
site_name: Kora фреймворк 1.2.18
site_url: https://kora-projects.github.io/kora-docs/ru/
nav:
- Руководства:
Expand Down
15 changes: 14 additions & 1 deletion mkdocs/docs/en/changelog/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,20 @@ hide:
- navigation
---

## 1.2.17
## 1.2.18

Added:

- Added Kotlin/KSP-native `Konvert` mapper integration
- Added custom JSON value serialization for `enum` and arbitrary types via `@JsonReader` factory / `@JsonWriter` method
- Added Kotlin `lambda` extensions for `JdbcConnectionFactory`

Fixed:

- Fixed handling of non-native `@Mdc` parameter types and `${}` value expressions
- Fixed and removed unnecessary `os.flush` call from `HttpBodyOutput.write`

### 1.2.17

Added:

Expand Down
8 changes: 4 additions & 4 deletions mkdocs/docs/en/documentation/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ dependency `ru.tinkoff.kora:kora-parent` which requires to specify the version o
}

dependencies {
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")
annotationProcessor "ru.tinkoff.kora:annotation-processors"
}
```
Expand Down Expand Up @@ -172,7 +172,7 @@ dependency `ru.tinkoff.kora:kora-parent` which requires to specify the version o
}

dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))
ksp("ru.tinkoff.kora:symbol-processors")
}
```
Expand All @@ -198,7 +198,7 @@ and the [BOM dependency](https://docs.gradle.org/current/userguide/platforms.htm
}

dependencies {
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")
annotationProcessor "ru.tinkoff.kora:annotation-processors"
}
```
Expand All @@ -217,7 +217,7 @@ and the [BOM dependency](https://docs.gradle.org/current/userguide/platforms.htm
}

dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))
ksp("ru.tinkoff.kora:symbol-processors")
}
```
Expand Down
4 changes: 2 additions & 2 deletions mkdocs/docs/en/documentation/openapi-codegen.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For a step-by-step walkthrough before the reference details, see [OpenAPI HTTP S
```groovy
buildscript {
dependencies {
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
classpath("ru.tinkoff.kora:openapi-generator:1.2.18")
}
}
```
Expand All @@ -37,7 +37,7 @@ For a step-by-step walkthrough before the reference details, see [OpenAPI HTTP S
```groovy
buildscript {
dependencies {
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
classpath("ru.tinkoff.kora:openapi-generator:1.2.18")
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions mkdocs/docs/en/examples/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Basic concepts and description of the framework can be read on the [main page](.
}

dependencies {
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")
annotationProcessor "ru.tinkoff.kora:annotation-processors"

implementation "ru.tinkoff.kora:http-server-undertow"
Expand Down Expand Up @@ -91,7 +91,7 @@ Basic concepts and description of the framework can be read on the [main page](.
}

dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))
ksp("ru.tinkoff.kora:symbol-processors")

implementation("ru.tinkoff.kora:http-server-undertow")
Expand Down
4 changes: 2 additions & 2 deletions mkdocs/docs/en/guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ Now add dependencies. First import the Kora BOM. After this line, Kora dependenc

```groovy
dependencies {
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")

annotationProcessor "ru.tinkoff.kora:annotation-processors"

Expand All @@ -506,7 +506,7 @@ Now add dependencies. First import the Kora BOM. After this line, Kora dependenc

```kotlin
dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))

ksp("ru.tinkoff.kora:symbol-processor")

Expand Down
15 changes: 14 additions & 1 deletion mkdocs/docs/ru/changelog/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,20 @@ hide:
- navigation
---

## 1.2.17
## 1.2.18

Добавлено:

- Добавлена интеграция преобразователей `Konvert` для Kotlin/KSP-native
- Добавлена пользовательская сериализация JSON для `enum` и произвольных типов через фабрику `@JsonReader` / метод `@JsonWriter`
- Добавлены `lambda`-расширения для `JdbcConnectionFactory` в Kotlin

Исправлено:

- Исправлена обработка не-родных типов параметров `@Mdc` и выражений значений `${}`
- Исправлено и удалено излишнее обращение `os.flush` из `HttpBodyOutput.write`

### 1.2.17

Добавлено:

Expand Down
8 changes: 4 additions & 4 deletions mkdocs/docs/ru/documentation/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Kafka продюсеров, репозиториев баз данных и та
}

dependencies {
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")
annotationProcessor "ru.tinkoff.kora:annotation-processors"
}
```
Expand Down Expand Up @@ -172,7 +172,7 @@ Kafka продюсеров, репозиториев баз данных и та
}

dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))
ksp("ru.tinkoff.kora:symbol-processors")
}
```
Expand All @@ -198,7 +198,7 @@ Kafka продюсеров, репозиториев баз данных и та
}

dependencies {
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")
annotationProcessor "ru.tinkoff.kora:annotation-processors"
}
```
Expand All @@ -217,7 +217,7 @@ Kafka продюсеров, репозиториев баз данных и та
}

dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))
ksp("ru.tinkoff.kora:symbol-processors")
}
```
Expand Down
4 changes: 2 additions & 2 deletions mkdocs/docs/ru/documentation/openapi-codegen.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ agent:
```groovy
buildscript {
dependencies {
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
classpath("ru.tinkoff.kora:openapi-generator:1.2.18")
}
}
```
Expand All @@ -37,7 +37,7 @@ agent:
```groovy
buildscript {
dependencies {
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
classpath("ru.tinkoff.kora:openapi-generator:1.2.18")
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions mkdocs/docs/ru/examples/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
}

dependencies {
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")
annotationProcessor "ru.tinkoff.kora:annotation-processors"

implementation "ru.tinkoff.kora:http-server-undertow"
Expand Down Expand Up @@ -91,7 +91,7 @@ distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
}

dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))
ksp("ru.tinkoff.kora:symbol-processors")

implementation("ru.tinkoff.kora:http-server-undertow")
Expand Down
4 changes: 2 additions & 2 deletions mkdocs/docs/ru/guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ Kora состоит из нескольких модулей. Чтобы не у

```groovy
dependencies {
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")

annotationProcessor "ru.tinkoff.kora:annotation-processors"

Expand All @@ -509,7 +509,7 @@ Kora состоит из нескольких модулей. Чтобы не у

```kotlin
dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))

ksp("ru.tinkoff.kora:symbol-processor")

Expand Down
Loading