From 0a965b0cd2167fd2fb92a0a26bade0f92f6e10a7 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 21 Apr 2021 09:58:14 +0000 Subject: [PATCH] chore(release): 0.87.4 [skip ci] ## [0.87.4](https://github.com/gotson/komga/compare/v0.87.3...v0.87.4) (2021-04-21) ### Bug Fixes * **api:** filter referential data by access rights ([09fa5e9](https://github.com/gotson/komga/commit/09fa5e95a5a59f2136a7992468ca77a257a267a5)), closes [#492](https://github.com/gotson/komga/issues/492) --- CHANGELOG.md | 7 +++ gradle.properties | 2 +- komga/docs/openapi.json | 96 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 104 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98ca2be0..f9b4dd2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.87.4](https://github.com/gotson/komga/compare/v0.87.3...v0.87.4) (2021-04-21) + + +### Bug Fixes + +* **api:** filter referential data by access rights ([09fa5e9](https://github.com/gotson/komga/commit/09fa5e95a5a59f2136a7992468ca77a257a267a5)), closes [#492](https://github.com/gotson/komga/issues/492) + ## [0.87.3](https://github.com/gotson/komga/compare/v0.87.2...v0.87.3) (2021-04-21) diff --git a/gradle.properties b/gradle.properties index 96bef18d..bcb6dc38 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.87.3 +version=0.87.4 diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index cccb11c4..bd85a7e2 100644 --- a/komga/docs/openapi.json +++ b/komga/docs/openapi.json @@ -2522,6 +2522,50 @@ ] } }, + "/api/v1/tags/book": { + "get": { + "operationId": "getBookTags", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ValidationErrorResponse" + } + } + } + } + }, + "parameters": [ + { + "schema": { + "type": "string" + }, + "in": "query", + "name": "series_id", + "required": false + } + ], + "tags": [ + "referential-controller" + ] + } + }, "/opds/v1.2/books/latest": { "get": { "operationId": "getLatestBooks", @@ -4213,6 +4257,58 @@ ] } }, + "/api/v1/tags/series": { + "get": { + "operationId": "getSeriesTags", + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string" + } + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ValidationErrorResponse" + } + } + } + } + }, + "parameters": [ + { + "schema": { + "type": "string" + }, + "in": "query", + "name": "library_id", + "required": false + }, + { + "schema": { + "type": "string" + }, + "in": "query", + "name": "collection_id", + "required": false + } + ], + "tags": [ + "referential-controller" + ] + } + }, "/api/v1/age-ratings": { "get": { "operationId": "getAgeRatings",