Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v26.0.700 #146

Merged
merged 1 commit into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "keycloak"
version = "26.0.200"
version = "26.0.700"
authors = ["Alexander Korolev <alexander.korolev.germany@gmail.com>"]
edition = "2021"
categories = ["api-bindings", "asynchronous"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Dual-licensed under `MIT` or the [UNLICENSE](http://unlicense.org/).

## Features

Implements [Keycloak Admin REST API version 26.0.2](https://www.keycloak.org/docs-api/26.0.2/rest-api/index.html).
Implements [Keycloak Admin REST API version 26.0.7](https://www.keycloak.org/docs-api/26.0.7/rest-api/index.html).

### Feature flags

Expand Down
28 changes: 28 additions & 0 deletions api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9953,6 +9953,14 @@
"tags" : [ "Organizations" ],
"summary" : "Returns a paginated list of organizations filtered according to the specified parameters",
"parameters" : [ {
"name" : "briefRepresentation",
"in" : "query",
"description" : "if true, return the full representation. Otherwise, only the basic fields are returned.",
"schema" : {
"default" : false,
"type" : "boolean"
}
}, {
"name" : "exact",
"in" : "query",
"description" : "Boolean which defines whether the param 'search' must match exactly or not",
Expand Down Expand Up @@ -10281,6 +10289,13 @@
"default" : "10",
"type" : "integer"
}
}, {
"name" : "membershipType",
"in" : "query",
"description" : "The membership type",
"schema" : {
"type" : "string"
}
}, {
"name" : "search",
"in" : "query",
Expand Down Expand Up @@ -13676,6 +13691,12 @@
},
"error" : {
"type" : "string"
},
"details" : {
"type" : "object",
"additionalProperties" : {
"type" : "string"
}
}
}
},
Expand Down Expand Up @@ -14075,6 +14096,10 @@
}
}
},
"BruteForceStrategy" : {
"enum" : [ "LINEAR", "MULTIPLE" ],
"type" : "string"
},
"CertificateRepresentation" : {
"type" : "object",
"properties" : {
Expand Down Expand Up @@ -16357,6 +16382,9 @@
"format" : "int32",
"type" : "integer"
},
"bruteForceStrategy" : {
"$ref" : "#/components/schemas/BruteForceStrategy"
},
"maxFailureWaitSeconds" : {
"format" : "int32",
"type" : "integer"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Dual-licensed under `MIT` or the [UNLICENSE](http://unlicense.org/).
## Features
Implements [Keycloak Admin REST API version 26.0.2](https://www.keycloak.org/docs-api/26.0.2/rest-api/index.html).
Implements [Keycloak Admin REST API version 26.0.7](https://www.keycloak.org/docs-api/26.0.7/rest-api/index.html).
### Feature flags
Expand Down
Loading
Loading