mirror of
https://github.com/gotson/komga.git
synced 2026-01-03 14:24:11 +01:00
chore(release): 0.56.1 [skip ci]
## [0.56.1](https://github.com/gotson/komga/compare/v0.56.0...v0.56.1) (2020-08-16) ### Bug Fixes * database migration could fail ([1c9f3d0](1c9f3d0e80))
This commit is contained in:
parent
1c9f3d0e80
commit
728d5f4c7d
3 changed files with 63 additions and 56 deletions
|
|
@ -1,3 +1,10 @@
|
|||
## [0.56.1](https://github.com/gotson/komga/compare/v0.56.0...v0.56.1) (2020-08-16)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* database migration could fail ([1c9f3d0](https://github.com/gotson/komga/commit/1c9f3d0e804631a8a3437473b181f389a7d73814))
|
||||
|
||||
# [0.56.0](https://github.com/gotson/komga/compare/v0.55.1...v0.56.0) (2020-08-14)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
version=0.56.0
|
||||
version=0.56.1
|
||||
|
|
|
|||
|
|
@ -1038,36 +1038,6 @@
|
|||
],
|
||||
"openapi": "3.0.1",
|
||||
"paths": {
|
||||
"/opds/v1.2/series/latest": {
|
||||
"get": {
|
||||
"operationId": "getLatestSeries_1",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpdsFeed"
|
||||
}
|
||||
},
|
||||
"application/atom+xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpdsFeed"
|
||||
}
|
||||
},
|
||||
"text/xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpdsFeed"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"opds-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/opds/v1.2/search": {
|
||||
"get": {
|
||||
"operationId": "getSearch",
|
||||
|
|
@ -1098,6 +1068,36 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"/opds/v1.2/series/latest": {
|
||||
"get": {
|
||||
"operationId": "getLatestSeries_1",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpdsFeed"
|
||||
}
|
||||
},
|
||||
"application/atom+xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpdsFeed"
|
||||
}
|
||||
},
|
||||
"text/xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpdsFeed"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"opds-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/books/{bookId}/next": {
|
||||
"get": {
|
||||
"operationId": "getBookSiblingNext",
|
||||
|
|
@ -3265,22 +3265,19 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/books/{bookId}/metadata": {
|
||||
"patch": {
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/BookMetadataUpdateDto"
|
||||
"/api/v1/books/{bookId}": {
|
||||
"get": {
|
||||
"operationId": "getOneBook",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/BookDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
"operationId": "updateMetadata",
|
||||
"responses": {
|
||||
"204": {
|
||||
"description": "No Content"
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
|
|
@ -3298,19 +3295,22 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/books/{bookId}": {
|
||||
"get": {
|
||||
"operationId": "getOneBook",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/BookDto"
|
||||
}
|
||||
"/api/v1/books/{bookId}/metadata": {
|
||||
"patch": {
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/BookMetadataUpdateDto"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
"operationId": "updateMetadata",
|
||||
"responses": {
|
||||
"204": {
|
||||
"description": "No Content"
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue