chore(release): 0.161.0 [skip ci]

# [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](88aa7adaad)), closes [#1052](https://github.com/gotson/komga/issues/1052)
* NPE when email_verified claim is missing in OIDC request ([72e5fd9](72e5fd9c9a)), closes [#1054](https://github.com/gotson/komga/issues/1054)
* translated using Weblate ([faf95f2](faf95f2c69))
* **webui:** multi-select bar delete button doesn't work on some views ([94fc5fa](94fc5fa4d5)), closes [#1056](https://github.com/gotson/komga/issues/1056)

### Features

* add configuration option to skip email verification in OIDC login flow ([273b7d2](273b7d266c)), closes [#1054](https://github.com/gotson/komga/issues/1054)
This commit is contained in:
semantic-release-bot 2023-01-27 12:50:20 +00:00
parent faf95f2c69
commit 3d0934b185
3 changed files with 37 additions and 22 deletions

View File

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

View File

@ -1,2 +1,2 @@
version=0.160.0
version=0.161.0
org.gradle.jvmargs=-Xmx2G

View File

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