Skip to content

Commit 3f43403

Browse files
authored
1.2.18 (#66)
* 1.2.18
1 parent 08d26e4 commit 3f43403

12 files changed

Lines changed: 50 additions & 24 deletions

File tree

mkdocs/config/en/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ site_dir: "../../generated/en"
33

44

55
# Project information
6-
site_name: Kora Framework 1.2.17
6+
site_name: Kora Framework 1.2.18
77
site_url: https://kora-projects.github.io/kora-docs/en/
88
nav:
99
- Guides:

mkdocs/config/ru/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ site_dir: "../../generated/ru"
33

44

55
# Project information
6-
site_name: Kora фреймворк 1.2.17
6+
site_name: Kora фреймворк 1.2.18
77
site_url: https://kora-projects.github.io/kora-docs/ru/
88
nav:
99
- Руководства:

mkdocs/docs/en/changelog/changelog.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,20 @@ hide:
55
- navigation
66
---
77

8-
## 1.2.17
8+
## 1.2.18
9+
10+
Added:
11+
12+
- Added Kotlin/KSP-native `Konvert` mapper integration
13+
- Added custom JSON value serialization for `enum` and arbitrary types via `@JsonReader` factory / `@JsonWriter` method
14+
- Added Kotlin `lambda` extensions for `JdbcConnectionFactory`
15+
16+
Fixed:
17+
18+
- Fixed handling of non-native `@Mdc` parameter types and `${}` value expressions
19+
- Fixed and removed unnecessary `os.flush` call from `HttpBodyOutput.write`
20+
21+
### 1.2.17
922

1023
Added:
1124

mkdocs/docs/en/documentation/general.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ dependency `ru.tinkoff.kora:kora-parent` which requires to specify the version o
133133
}
134134

135135
dependencies {
136-
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
136+
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")
137137
annotationProcessor "ru.tinkoff.kora:annotation-processors"
138138
}
139139
```
@@ -172,7 +172,7 @@ dependency `ru.tinkoff.kora:kora-parent` which requires to specify the version o
172172
}
173173

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

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

219219
dependencies {
220-
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
220+
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))
221221
ksp("ru.tinkoff.kora:symbol-processors")
222222
}
223223
```

mkdocs/docs/en/documentation/openapi-codegen.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For a step-by-step walkthrough before the reference details, see [OpenAPI HTTP S
1717
```groovy
1818
buildscript {
1919
dependencies {
20-
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
20+
classpath("ru.tinkoff.kora:openapi-generator:1.2.18")
2121
}
2222
}
2323
```
@@ -37,7 +37,7 @@ For a step-by-step walkthrough before the reference details, see [OpenAPI HTTP S
3737
```groovy
3838
buildscript {
3939
dependencies {
40-
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
40+
classpath("ru.tinkoff.kora:openapi-generator:1.2.18")
4141
}
4242
}
4343
```

mkdocs/docs/en/examples/hello-world.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Basic concepts and description of the framework can be read on the [main page](.
5454
}
5555

5656
dependencies {
57-
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
57+
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")
5858
annotationProcessor "ru.tinkoff.kora:annotation-processors"
5959

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

9393
dependencies {
94-
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
94+
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))
9595
ksp("ru.tinkoff.kora:symbol-processors")
9696

9797
implementation("ru.tinkoff.kora:http-server-undertow")

mkdocs/docs/en/guides/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ Now add dependencies. First import the Kora BOM. After this line, Kora dependenc
491491

492492
```groovy
493493
dependencies {
494-
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
494+
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.18")
495495

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

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

507507
```kotlin
508508
dependencies {
509-
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
509+
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))
510510

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

mkdocs/docs/ru/changelog/changelog.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,20 @@ hide:
55
- navigation
66
---
77

8-
## 1.2.17
8+
## 1.2.18
9+
10+
Добавлено:
11+
12+
- Добавлена интеграция преобразователей `Konvert` для Kotlin/KSP-native
13+
- Добавлена пользовательская сериализация JSON для `enum` и произвольных типов через фабрику `@JsonReader` / метод `@JsonWriter`
14+
- Добавлены `lambda`-расширения для `JdbcConnectionFactory` в Kotlin
15+
16+
Исправлено:
17+
18+
- Исправлена обработка не-родных типов параметров `@Mdc` и выражений значений `${}`
19+
- Исправлено и удалено излишнее обращение `os.flush` из `HttpBodyOutput.write`
20+
21+
### 1.2.17
922

1023
Добавлено:
1124

mkdocs/docs/ru/documentation/general.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Kafka продюсеров, репозиториев баз данных и та
133133
}
134134

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

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

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

219219
dependencies {
220-
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
220+
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.18"))
221221
ksp("ru.tinkoff.kora:symbol-processors")
222222
}
223223
```

mkdocs/docs/ru/documentation/openapi-codegen.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ agent:
1717
```groovy
1818
buildscript {
1919
dependencies {
20-
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
20+
classpath("ru.tinkoff.kora:openapi-generator:1.2.18")
2121
}
2222
}
2323
```
@@ -37,7 +37,7 @@ agent:
3737
```groovy
3838
buildscript {
3939
dependencies {
40-
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
40+
classpath("ru.tinkoff.kora:openapi-generator:1.2.18")
4141
}
4242
}
4343
```

0 commit comments

Comments
 (0)