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](09fa5e95a5)), closes [#492](https://github.com/gotson/komga/issues/492)
This commit is contained in:
semantic-release-bot 2021-04-21 09:58:14 +00:00
parent 09fa5e95a5
commit 0a965b0cd2
3 changed files with 104 additions and 1 deletions

View File

@ -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)

View File

@ -1 +1 @@
version=0.87.3
version=0.87.4

View File

@ -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",