From 22126e1c7d17c9edab23acf79e00c5bafa1d279e Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 16 Sep 2021 06:19:56 +0000 Subject: [PATCH] chore(release): 0.127.0 [skip ci] # [0.127.0](https://github.com/gotson/komga/compare/v0.126.0...v0.127.0) (2021-09-16) ### Bug Fixes * **api:** add maxNumberSort to TachiyomiReadProgressV2Dto.kt ([5e9cb43](https://github.com/gotson/komga/commit/5e9cb43710a1263aead9fe3479a7a3c4c532535e)) ### Features * **api:** cancel all tasks ([aff4418](https://github.com/gotson/komga/commit/aff4418256bd437d1da40e0bcc612ecfa9312d0a)) * **webui:** cancel all tasks from Server Settings ([3bbb521](https://github.com/gotson/komga/commit/3bbb521bd6284e44cb396cf5a58b189813207744)), closes [#658](https://github.com/gotson/komga/issues/658) --- CHANGELOG.md | 13 +++++++++++++ gradle.properties | 2 +- komga/docs/openapi.json | 38 +++++++++++++++++++++++++++++++++++++- 3 files changed, 51 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa4e72cbc..31e26a149 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# [0.127.0](https://github.com/gotson/komga/compare/v0.126.0...v0.127.0) (2021-09-16) + + +### Bug Fixes + +* **api:** add maxNumberSort to TachiyomiReadProgressV2Dto.kt ([5e9cb43](https://github.com/gotson/komga/commit/5e9cb43710a1263aead9fe3479a7a3c4c532535e)) + + +### Features + +* **api:** cancel all tasks ([aff4418](https://github.com/gotson/komga/commit/aff4418256bd437d1da40e0bcc612ecfa9312d0a)) +* **webui:** cancel all tasks from Server Settings ([3bbb521](https://github.com/gotson/komga/commit/3bbb521bd6284e44cb396cf5a58b189813207744)), closes [#658](https://github.com/gotson/komga/issues/658) + # [0.126.0](https://github.com/gotson/komga/compare/v0.125.4...v0.126.0) (2021-09-15) diff --git a/gradle.properties b/gradle.properties index 70588f637..4792e324f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=0.126.0 +version=0.127.0 org.gradle.jvmargs=-Xmx2G -XX:MaxPermSize=2G diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index 9b98167e0..2a7cc9720 100644 --- a/komga/docs/openapi.json +++ b/komga/docs/openapi.json @@ -602,13 +602,18 @@ "booksInProgressCount", "booksReadCount", "booksUnreadCount", - "lastReadContinuousNumberSort" + "lastReadContinuousNumberSort", + "maxNumberSort" ], "properties": { "lastReadContinuousNumberSort": { "format": "float", "type": "number" }, + "maxNumberSort": { + "format": "float", + "type": "number" + }, "booksReadCount": { "format": "int32", "type": "integer" @@ -3525,6 +3530,37 @@ ] } }, + "/api/v1/tasks": { + "delete": { + "operationId": "emptyTaskQueue", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "format": "int32", + "type": "integer" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ValidationErrorResponse" + } + } + } + } + }, + "tags": [ + "task-controller" + ] + } + }, "/api/v1/books/{bookId}/previous": { "get": { "operationId": "getBookSiblingPrevious_1",