Skip to content

Commit

Permalink
chore(release): 0.102.0 [skip ci]
Browse files Browse the repository at this point in the history
# [0.102.0](v0.101.2...v0.102.0) (2021-06-25)

### Features

* **api:** store authentication activity ([de96e0d](de96e0d)), closes [#160](#160)
* **webui:** display authentication activity ([9d33602](9d33602)), closes [#160](#160)
  • Loading branch information
semantic-release-bot committed Jun 25, 2021
1 parent 9d33602 commit 6b67484
Show file tree
Hide file tree
Showing 3 changed files with 224 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [0.102.0](https://github.com/gotson/komga/compare/v0.101.2...v0.102.0) (2021-06-25)


### Features

* **api:** store authentication activity ([de96e0d](https://github.com/gotson/komga/commit/de96e0dcef1312aaed0d253574734a9e027722ca)), closes [#160](https://github.com/gotson/komga/issues/160)
* **webui:** display authentication activity ([9d33602](https://github.com/gotson/komga/commit/9d33602873b15668fe978dd66148287d4f9744dd)), closes [#160](https://github.com/gotson/komga/issues/160)

## [0.101.2](https://github.com/gotson/komga/compare/v0.101.1...v0.101.2) (2021-06-24)


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=0.101.2
version=0.102.0
org.gradle.jvmargs=-Xmx2G -XX:MaxPermSize=2G
215 changes: 215 additions & 0 deletions komga/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -823,6 +823,52 @@
}
}
},
"PageAuthenticationActivityDto": {
"type": "object",
"properties": {
"number": {
"format": "int32",
"type": "integer"
},
"numberOfElements": {
"format": "int32",
"type": "integer"
},
"last": {
"type": "boolean"
},
"size": {
"format": "int32",
"type": "integer"
},
"totalPages": {
"format": "int32",
"type": "integer"
},
"pageable": {
"$ref": "#/components/schemas/Pageable"
},
"sort": {
"$ref": "#/components/schemas/Sort"
},
"first": {
"type": "boolean"
},
"content": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AuthenticationActivityDto"
}
},
"totalElements": {
"format": "int64",
"type": "integer"
},
"empty": {
"type": "boolean"
}
}
},
"ReadListRequestBookDto": {
"type": "object",
"required": [
Expand Down Expand Up @@ -1741,6 +1787,37 @@
}
}
},
"AuthenticationActivityDto": {
"type": "object",
"required": [
"dateTime",
"success"
],
"properties": {
"dateTime": {
"format": "date-time",
"type": "string"
},
"success": {
"type": "boolean"
},
"ip": {
"type": "string"
},
"userAgent": {
"type": "string"
},
"error": {
"type": "string"
},
"userId": {
"type": "string"
},
"email": {
"type": "string"
}
}
},
"ClaimStatus": {
"type": "object",
"required": [
Expand Down Expand Up @@ -2282,6 +2359,75 @@
]
}
},
"/api/v1/users/authentication-activity": {
"get": {
"operationId": "getAuthenticationActivity",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PageAuthenticationActivityDto"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorResponse"
}
}
}
}
},
"parameters": [
{
"schema": {
"type": "boolean"
},
"in": "query",
"name": "unpaged",
"required": false
},
{
"schema": {
"default": 0,
"type": "integer"
},
"in": "query",
"name": "page",
"description": "Zero-based page index (0..N)"
},
{
"schema": {
"default": 20,
"type": "integer"
},
"in": "query",
"name": "size",
"description": "The size of the page to be returned"
},
{
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"in": "query",
"name": "sort",
"description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported."
}
],
"tags": [
"user-controller"
]
}
},
"/opds/v1.2/readlists": {
"get": {
"operationId": "getReadLists",
Expand Down Expand Up @@ -2595,6 +2741,75 @@
]
}
},
"/api/v1/users/me/authentication-activity": {
"get": {
"operationId": "getMyAuthenticationActivity",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PageAuthenticationActivityDto"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorResponse"
}
}
}
}
},
"parameters": [
{
"schema": {
"type": "boolean"
},
"in": "query",
"name": "unpaged",
"required": false
},
{
"schema": {
"default": 0,
"type": "integer"
},
"in": "query",
"name": "page",
"description": "Zero-based page index (0..N)"
},
{
"schema": {
"default": 20,
"type": "integer"
},
"in": "query",
"name": "size",
"description": "The size of the page to be returned"
},
{
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"in": "query",
"name": "sort",
"description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported."
}
],
"tags": [
"user-controller"
]
}
},
"/opds/v1.2/books/{bookId}/file/*": {
"get": {
"description": "Download the book file.",
Expand Down

0 comments on commit 6b67484

Please sign in to comment.