From 3bdd90db1f3f6cdec6c9685d73bad7426bb87930 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 6 Jan 2021 08:16:45 +0000 Subject: [PATCH] chore(release): 0.66.0 [skip ci] # [0.66.0](https://github.com/gotson/komga/compare/v0.65.0...v0.66.0) (2021-01-06) ### Bug Fixes * **api:** endpoint for books in readlist is not filtered properly ([cdca78b](https://github.com/gotson/komga/commit/cdca78b38f1071e592d458cf9bc29c057d44197d)) ### Features * **api:** find previous/next book in readlist ([bcfb203](https://github.com/gotson/komga/commit/bcfb203f74e16fcc9df53e69720680a7cb328eb0)) * **webreader:** navigate between books of a readlist ([3a3d85c](https://github.com/gotson/komga/commit/3a3d85c3fc83f1a0c74adc091a843870b59bcc12)), closes [#310](https://github.com/gotson/komga/issues/310) * **webui:** navigate between books of a readlist ([88d4342](https://github.com/gotson/komga/commit/88d4342ef5a17bb65f966b77620cd8dfbd7e42b9)) --- CHANGELOG.md | 14 ++++++++ gradle.properties | 2 +- komga/docs/openapi.json | 80 +++++++++++++++++++++++++++++++++++++++-- 3 files changed, 93 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d5d93c6..a0c7cc51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [0.66.0](https://github.com/gotson/komga/compare/v0.65.0...v0.66.0) (2021-01-06) + + +### Bug Fixes + +* **api:** endpoint for books in readlist is not filtered properly ([cdca78b](https://github.com/gotson/komga/commit/cdca78b38f1071e592d458cf9bc29c057d44197d)) + + +### Features + +* **api:** find previous/next book in readlist ([bcfb203](https://github.com/gotson/komga/commit/bcfb203f74e16fcc9df53e69720680a7cb328eb0)) +* **webreader:** navigate between books of a readlist ([3a3d85c](https://github.com/gotson/komga/commit/3a3d85c3fc83f1a0c74adc091a843870b59bcc12)), closes [#310](https://github.com/gotson/komga/issues/310) +* **webui:** navigate between books of a readlist ([88d4342](https://github.com/gotson/komga/commit/88d4342ef5a17bb65f966b77620cd8dfbd7e42b9)) + # [0.65.0](https://github.com/gotson/komga/compare/v0.64.8...v0.65.0) (2021-01-05) diff --git a/gradle.properties b/gradle.properties index 6bc4a0ec..71765b94 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.65.0 +version=0.66.0 diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index 03115477..4860ef95 100644 --- a/komga/docs/openapi.json +++ b/komga/docs/openapi.json @@ -1517,7 +1517,7 @@ }, "/api/v1/books/{bookId}/next": { "get": { - "operationId": "getBookSiblingNext", + "operationId": "getBookSiblingNext_1", "responses": { "200": { "description": "OK", @@ -2638,6 +2638,44 @@ ] } }, + "/api/v1/readlists/{id}/books/{bookId}/previous": { + "get": { + "operationId": "getBookSiblingPrevious", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BookDto" + } + } + } + } + }, + "parameters": [ + { + "schema": { + "type": "string" + }, + "in": "path", + "name": "id", + "required": true + }, + { + "schema": { + "type": "string" + }, + "in": "path", + "name": "bookId", + "required": true + } + ], + "tags": [ + "read-list-controller" + ] + } + }, "/api/v1/series/{seriesId}/collections": { "get": { "operationId": "getAllCollectionsBySeries", @@ -3018,7 +3056,7 @@ }, "/api/v1/books/{bookId}/previous": { "get": { - "operationId": "getBookSiblingPrevious", + "operationId": "getBookSiblingPrevious_1", "responses": { "200": { "description": "OK", @@ -3939,6 +3977,44 @@ ] } }, + "/api/v1/readlists/{id}/books/{bookId}/next": { + "get": { + "operationId": "getBookSiblingNext", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BookDto" + } + } + } + } + }, + "parameters": [ + { + "schema": { + "type": "string" + }, + "in": "path", + "name": "id", + "required": true + }, + { + "schema": { + "type": "string" + }, + "in": "path", + "name": "bookId", + "required": true + } + ], + "tags": [ + "read-list-controller" + ] + } + }, "/api/v1/series/{seriesId}/metadata": { "patch": { "requestBody": {