mirror of
https://github.com/gotson/komga.git
synced 2025-12-21 16:03:03 +01:00
chore(release): 0.130.0 [skip ci]
# [0.130.0](https://github.com/gotson/komga/compare/v0.129.0...v0.130.0) (2021-09-27) ### Features * **webui:** oauth2 login ([73d8dab](73d8dab60c)) * oauth2 login ([7438bf4](7438bf4c95)), closes [#143](https://github.com/gotson/komga/issues/143)
This commit is contained in:
parent
bb0063fb8d
commit
6b995e3e37
3 changed files with 246 additions and 1 deletions
|
|
@ -1,3 +1,11 @@
|
|||
# [0.130.0](https://github.com/gotson/komga/compare/v0.129.0...v0.130.0) (2021-09-27)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **webui:** oauth2 login ([73d8dab](https://github.com/gotson/komga/commit/73d8dab60c92e508a12c037b2bc54c1b19d69770))
|
||||
* oauth2 login ([7438bf4](https://github.com/gotson/komga/commit/7438bf4c95ec44ef473ee1e8cc9336bb43f26811)), closes [#143](https://github.com/gotson/komga/issues/143)
|
||||
|
||||
# [0.129.0](https://github.com/gotson/komga/compare/v0.128.4...v0.129.0) (2021-09-24)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
version=0.129.0
|
||||
version=0.130.0
|
||||
org.gradle.jvmargs=-Xmx2G -XX:MaxPermSize=2G
|
||||
|
|
|
|||
|
|
@ -1044,6 +1044,21 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"OAuth2ClientDto": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"registrationId"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"registrationId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"PageSeriesDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
@ -1992,6 +2007,9 @@
|
|||
"userAgent": {
|
||||
"type": "string"
|
||||
},
|
||||
"source": {
|
||||
"type": "string"
|
||||
},
|
||||
"error": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
@ -7684,6 +7702,225 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/oauth2/providers": {
|
||||
"head": {
|
||||
"operationId": "getProviders_2",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/OAuth2ClientDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
]
|
||||
},
|
||||
"patch": {
|
||||
"operationId": "getProviders_1",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/OAuth2ClientDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
]
|
||||
},
|
||||
"post": {
|
||||
"operationId": "getProviders_3",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/OAuth2ClientDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
]
|
||||
},
|
||||
"get": {
|
||||
"operationId": "getProviders_6",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/OAuth2ClientDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
]
|
||||
},
|
||||
"options": {
|
||||
"operationId": "getProviders_5",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/OAuth2ClientDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
]
|
||||
},
|
||||
"delete": {
|
||||
"operationId": "getProviders",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/OAuth2ClientDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
]
|
||||
},
|
||||
"put": {
|
||||
"operationId": "getProviders_4",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/OAuth2ClientDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/readlists/{id}/books/{bookId}/next": {
|
||||
"get": {
|
||||
"operationId": "getBookSiblingNext",
|
||||
|
|
|
|||
Loading…
Reference in a new issue