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.16
site_name: Kora Framework 1.2.17
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.16
site_name: Kora фреймворк 1.2.17
site_url: https://kora-projects.github.io/kora-docs/ru/
nav:
- Руководства:
Expand Down
17 changes: 16 additions & 1 deletion mkdocs/docs/en/changelog/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,22 @@ hide:
- navigation
---

## 1.2.16
## 1.2.17

Added:

- Added `RedisCache#putExpireAfterWrite` contracts for manual regulation
- Updated patch and safe minor dependencies

Fixed:

- Fixed AOP generated proxies should be registered with supertype in graph
- Fixed render OpenAPI `additionalContractAnnotations` verbatim without HTML-escaping
- Fixed missed complete signals in `QueuePublisher` which was used in `AsyncHttpClient`
- Fixed propagate meta-annotation tags (`@Json`) through `@KoraSubmodule`, HTTP routes and `@KoraAppTest`
- Fixed track HOCON `#include` files when application config is loaded as a resource

### 1.2.16

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.16")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
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.16"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
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.16")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
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.16"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
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.16")
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
}
}
```
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.16")
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
}
}
```
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.16")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
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.16"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
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.16")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")

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.16"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))

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

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

## 1.2.16
## 1.2.17

Добавлено:

- Добавлены контракты `RedisCache#putExpireAfterWrite` для ручного управления
- Обновлены зависимости до безопасных минорных версий и патчей

Исправлено:

- Исправлена регистрация прокси, сгенерированных AOP, с указанием супертипа в графе
- Исправлен рендеринг `additionalContractAnnotations` в OpenAPI без HTML-экранирования
- Исправлена потеря сигналов завершения в `QueuePublisher` актуальная для `AsyncHttpClient`
- Исправлена передача мета-аннотаций тегов (`@Json`) через `@KoraSubmodule`, HTTP-маршруты и `@KoraAppTest`
- Исправлен механизм отслеживания файлов, подключаемых через `#include` в HOCON файле конфигурации

### 1.2.16

Добавлено:

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

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

dependencies {
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.16"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
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.16")
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
}
}
```
Expand All @@ -37,7 +37,7 @@ agent:
```groovy
buildscript {
dependencies {
classpath("ru.tinkoff.kora:openapi-generator:1.2.16")
classpath("ru.tinkoff.kora:openapi-generator:1.2.17")
}
}
```
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.16")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")
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.16"))
koraBom(platform("ru.tinkoff.kora:kora-parent:1.2.17"))
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.16")
koraBom platform("ru.tinkoff.kora:kora-parent:1.2.17")

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

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

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

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

Expand Down
Loading