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.13
site_name: Kora Framework 1.2.14
site_url: https://kora-projects.github.io/kora-docs/en/
nav:
- Examples:
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.13
site_name: Kora фреймворк 1.2.14
site_url: https://kora-projects.github.io/kora-docs/ru/
nav:
- Примеры:
Expand Down
11 changes: 10 additions & 1 deletion mkdocs/docs/en/changelog/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@ hide:
- navigation
---

## 1.2.13
## 1.2.14

Fixed:

- Fixed HTTP client and Database repository parent interfaces search for AOP methods
- Fixed correct Redis cache `mappingFunction` and `null` restricted key handling
- Fixed Cache super interfaces search for implementation
- Fixed JUnit test extension graph cleanup in `afterAll` for `@Nested` test classes with `PER_METHOD` initialization

### 1.2.13

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 @@ -125,7 +125,7 @@ dependency `ru.tinkoff.kora:kora-parent` which requires to specify the version o
}

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

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

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

dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.13"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.14"))
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 @@ -9,7 +9,7 @@ or create declarative [HTTP clients](http-client.md) from OpenAPI contracts usin
```groovy
buildscript {
dependencies {
classpath("ru.tinkoff.kora:openapi-generator:1.2.13")
classpath("ru.tinkoff.kora:openapi-generator:1.2.14")
}
}
```
Expand All @@ -29,7 +29,7 @@ or create declarative [HTTP clients](http-client.md) from OpenAPI contracts usin
```groovy
buildscript {
dependencies {
classpath("ru.tinkoff.kora:openapi-generator:1.2.13")
classpath("ru.tinkoff.kora:openapi-generator:1.2.14")
}
}
```
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 @@ -51,7 +51,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.13")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.14")
annotationProcessor "ru.tinkoff.kora:annotation-processors"

implementation "ru.tinkoff.kora:http-server-undertow"
Expand Down Expand Up @@ -88,7 +88,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.13"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.14"))
ksp("ru.tinkoff.kora:symbol-processors")

implementation("ru.tinkoff.kora:http-server-undertow")
Expand Down
12 changes: 11 additions & 1 deletion mkdocs/docs/ru/changelog/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ hide:
- navigation
---

## 1.2.13
## 1.2.14

Исправлено:

- Исправлен поиск AOP методов в родительских интерфейсах для HTTP-клиента и репозитория базы данных
- Исправлена корректная обработка `mappingFunction` кэша Redis и ключей с ограничением на `null`
- Исправлен поиск родительских интерфейсов реализации для кэшей
- Исправлена очистка графа в расширении JUnit тестов в методе `afterAll` для вложенных тестовых классов (`@Nested`) с инициализацией `PER_METHOD`

### 1.2.13

Добавлено:

- Добавлена поддержка кастомной настройки HTTP-обработчиков в Undertow через `HttpHandlerConfigurer`
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 @@ -125,7 +125,7 @@ Kafka продюсеров, репозиториев баз данных и та
}

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

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

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

dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.13"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.14"))
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 @@ -9,7 +9,7 @@
```groovy
buildscript {
dependencies {
classpath("ru.tinkoff.kora:openapi-generator:1.2.13")
classpath("ru.tinkoff.kora:openapi-generator:1.2.14")
}
}
```
Expand All @@ -29,7 +29,7 @@
```groovy
buildscript {
dependencies {
classpath("ru.tinkoff.kora:openapi-generator:1.2.13")
classpath("ru.tinkoff.kora:openapi-generator:1.2.14")
}
}
```
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 @@ -51,7 +51,7 @@ distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
}

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

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

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

implementation("ru.tinkoff.kora:http-server-undertow")
Expand Down
Loading