fill changelog and update ktor

This commit is contained in:
InsanusMokrassar 2024-10-30 15:06:19 +06:00
parent fcac6f9fa8
commit f03d1d788c
2 changed files with 17 additions and 1 deletions

View File

@ -2,6 +2,22 @@
## 0.23.0 ## 0.23.0
**THIS UPDATE MAY CONTAINS SOME BREAKING CHANGES (INCLUDING BREAKING CHANGES IN BYTECODE LAYER) RELATED TO UPDATE OF
KTOR DEPENDENCY**
**THIS UPDATE CONTAINS CHANGES ACCORDING TO MIGRATION [GUIDE FROM KTOR](https://ktor.io/docs/migrating-3.html)**
* `Versions`:
* `Ktor`: `2.3.12` -> `3.0.1`
* `Ktor`:
* `Common`:
* Extension `Input.downloadToTempFile` has changed its receiver to `Source`. Its API can be broken
* `Client`:
* Extension `HttpClient.tempUpload` has changed type of `onUpload` argument from `OnUploadCallback` to `ProgressListener`
* All extensions `HttpClient.uniUpload` have changed type of `onUpload` argument from `OnUploadCallback` to `ProgressListener`
* `Server`:
* Remove redundant `ApplicationCall.respond` extension due to its presence in the ktor library
## 0.22.9 ## 0.22.9
* `Repos`: * `Repos`:

View File

@ -15,7 +15,7 @@ sqlite = "3.46.1.3"
korlibs = "5.4.0" korlibs = "5.4.0"
uuid = "0.8.4" uuid = "0.8.4"
ktor = "3.0.0" ktor = "3.0.1"
gh-release = "2.5.2" gh-release = "2.5.2"