diff --git a/CHANGELOG.md b/CHANGELOG.md index 364715fd..6ebdd991 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# [0.161.0](https://github.com/gotson/komga/compare/v0.160.0...v0.161.0) (2023-01-27) + + +### Bug Fixes + +* **api:** multiple tag or author filters could generate duplicate book results ([88aa7ad](https://github.com/gotson/komga/commit/88aa7adaad97cbf7637012f65b6faa9c25133fe8)), closes [#1052](https://github.com/gotson/komga/issues/1052) +* NPE when email_verified claim is missing in OIDC request ([72e5fd9](https://github.com/gotson/komga/commit/72e5fd9c9adde5cfeda7e2dee8d2edf4f57e2599)), closes [#1054](https://github.com/gotson/komga/issues/1054) +* translated using Weblate ([faf95f2](https://github.com/gotson/komga/commit/faf95f2c69913236529fbd81e463155b8b813c45)) +* **webui:** multi-select bar delete button doesn't work on some views ([94fc5fa](https://github.com/gotson/komga/commit/94fc5fa4d5816b0c9c09783392a873d4a0676947)), closes [#1056](https://github.com/gotson/komga/issues/1056) + + +### Features + +* add configuration option to skip email verification in OIDC login flow ([273b7d2](https://github.com/gotson/komga/commit/273b7d266cd1667f6a3c44b7d1ca479e0edb874a)), closes [#1054](https://github.com/gotson/komga/issues/1054) + # [0.160.0](https://github.com/gotson/komga/compare/v0.159.1...v0.160.0) (2023-01-19) diff --git a/gradle.properties b/gradle.properties index 007448d7..42bbe7e6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=0.160.0 +version=0.161.0 org.gradle.jvmargs=-Xmx2G diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index f98431e0..b4cb554a 100644 --- a/komga/docs/openapi.json +++ b/komga/docs/openapi.json @@ -9528,11 +9528,22 @@ "UserUpdateDto": { "type": "object", "properties": { + "roles": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string" + } + }, "ageRestriction": { "$ref": "#/components/schemas/AgeRestrictionUpdateDto" }, - "sharedLibraries": { - "$ref": "#/components/schemas/SharedLibrariesUpdateDto" + "labelsAllow": { + "uniqueItems": true, + "type": "array", + "items": { + "type": "string" + } }, "labelsExclude": { "uniqueItems": true, @@ -9541,19 +9552,8 @@ "type": "string" } }, - "roles": { - "uniqueItems": true, - "type": "array", - "items": { - "type": "string" - } - }, - "labelsAllow": { - "uniqueItems": true, - "type": "array", - "items": { - "type": "string" - } + "sharedLibraries": { + "$ref": "#/components/schemas/SharedLibrariesUpdateDto" } } }, @@ -9703,18 +9703,18 @@ "WEBTOON" ] }, + "alternateTitles": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AlternateTitleUpdateDto" + } + }, "sharingLabels": { "uniqueItems": true, "type": "array", "items": { "type": "string" } - }, - "alternateTitles": { - "type": "array", - "items": { - "$ref": "#/components/schemas/AlternateTitleUpdateDto" - } } }, "description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update."