diff --git a/CHANGELOG.md b/CHANGELOG.md index 0309a06dd..eb3c8718d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# [0.132.0](https://github.com/gotson/komga/compare/v0.131.0...v0.132.0) (2021-10-06) + + +### Features + +* ignore accents and multiple whitespace when sorting books ([cebdef1](https://github.com/gotson/komga/commit/cebdef1e5823b18890741e95d97cb5d032715347)), closes [s#702](https://github.com/s/issues/702) +* remember-me validity can be configured using duration notation ([f592a9e](https://github.com/gotson/komga/commit/f592a9eda2e7209a8d776af6239cbe5dabdc5684)) +* **api:** more flexible session management ([a85b5f8](https://github.com/gotson/komga/commit/a85b5f8d2874660c04973a539039ddf7943bcc9f)) +* **webui:** accept xAuthToken as query param and convert to session cookie ([e088c76](https://github.com/gotson/komga/commit/e088c76c4e2e5f9e765c299e1e3d2aaa9ab116d4)) + # [0.131.0](https://github.com/gotson/komga/compare/v0.130.1...v0.131.0) (2021-10-05) diff --git a/gradle.properties b/gradle.properties index 558487e87..8f963c4f4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=0.131.0 +version=0.132.0 org.gradle.jvmargs=-Xmx2G -XX:MaxPermSize=2G diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index ea0505da7..f76b66e3e 100644 --- a/komga/docs/openapi.json +++ b/komga/docs/openapi.json @@ -3523,6 +3523,29 @@ ] } }, + "/api/v1/login/set-cookie": { + "get": { + "operationId": "headerToCookie", + "responses": { + "400": { + "description": "Bad Request", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ValidationErrorResponse" + } + } + } + }, + "204": { + "description": "No Content" + } + }, + "tags": [ + "login-controller" + ] + } + }, "/api/v1/libraries/{libraryId}/scan": { "post": { "operationId": "scan",