chore(release): 0.43.0 [skip ci]

# [0.43.0](https://github.com/gotson/komga/compare/v0.42.0...v0.43.0) (2020-06-29)

### Bug Fixes

* **webui:** lazy load collections on browse series ([d89533d](d89533ded6))

### Features

* **webui:** sort/filter settings are persisted per library ([bf737de](bf737de910)), closes [#190](https://github.com/gotson/komga/issues/190)
This commit is contained in:
semantic-release-bot 2020-06-29 12:30:54 +00:00
parent bf737de910
commit 472ff1e20c
3 changed files with 69 additions and 57 deletions

View file

@ -1,3 +1,15 @@
# [0.43.0](https://github.com/gotson/komga/compare/v0.42.0...v0.43.0) (2020-06-29)
### Bug Fixes
* **webui:** lazy load collections on browse series ([d89533d](https://github.com/gotson/komga/commit/d89533ded69f58a96a2c1062067858b589857b00))
### Features
* **webui:** sort/filter settings are persisted per library ([bf737de](https://github.com/gotson/komga/commit/bf737de91065e56fe1fe11b9ef27cfa913f0ab77)), closes [#190](https://github.com/gotson/komga/issues/190)
# [0.42.0](https://github.com/gotson/komga/compare/v0.41.1...v0.42.0) (2020-06-29)

View file

@ -1 +1 @@
version=0.42.0
version=0.43.0

View file

@ -996,36 +996,6 @@
]
}
},
"/opds/v1.2/series/latest": {
"get": {
"operationId": "getLatestSeries_1",
"responses": {
"200": {
"description": "default response",
"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",
@ -1056,6 +1026,36 @@
]
}
},
"/opds/v1.2/series/latest": {
"get": {
"operationId": "getLatestSeries_1",
"responses": {
"200": {
"description": "default response",
"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",
@ -3162,19 +3162,23 @@
]
}
},
"/api/v1/books/{bookId}": {
"get": {
"operationId": "getOneBook",
"responses": {
"200": {
"description": "default response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
"/api/v1/books/{bookId}/metadata": {
"patch": {
"requestBody": {
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookMetadataUpdateDto"
}
}
},
"required": true
},
"operationId": "updateMetadata",
"responses": {
"204": {
"description": "default response"
}
},
"parameters": [
@ -3193,23 +3197,19 @@
]
}
},
"/api/v1/books/{bookId}/metadata": {
"patch": {
"requestBody": {
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookMetadataUpdateDto"
"/api/v1/books/{bookId}": {
"get": {
"operationId": "getOneBook",
"responses": {
"200": {
"description": "default response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
}
}
},
"required": true
},
"operationId": "updateMetadata",
"responses": {
"204": {
"description": "default response"
}
},
"parameters": [