-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
762529c
commit a5d52c7
Showing
5 changed files
with
148 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
[ { | ||
"number" : 24652, | ||
"repository" : "keycloak", | ||
"title" : "SAML decryption fails if keycloak.saml.deprecated.encryption flag is set", | ||
"kind" : "bug", | ||
"area" : "saml", | ||
"url" : "https://github.com/keycloak/keycloak/issues/24652" | ||
}, { | ||
"number" : 24986, | ||
"repository" : "keycloak", | ||
"title" : "`getMultiPartFormParameters()` always returns `EmptyMultivaluedMap` after upgrade to Resteasy Reactive", | ||
"kind" : "bug", | ||
"area" : "core", | ||
"url" : "https://github.com/keycloak/keycloak/issues/24986" | ||
}, { | ||
"number" : 25001, | ||
"repository" : "keycloak", | ||
"title" : "Client redirect_uri check must be compared using exact string matching", | ||
"kind" : "bug", | ||
"area" : "oidc", | ||
"url" : "https://github.com/keycloak/keycloak/issues/25001" | ||
}, { | ||
"number" : 25010, | ||
"repository" : "keycloak", | ||
"title" : "Bug: KC_DB_USERNAME environment variable is causing a crash in latest version", | ||
"kind" : "bug", | ||
"area" : "dist/quarkus", | ||
"url" : "https://github.com/keycloak/keycloak/issues/25010" | ||
}, { | ||
"number" : 25051, | ||
"repository" : "keycloak", | ||
"title" : "Unexpected Application Error when clicking \"Cancel\" on user creation page", | ||
"kind" : "bug", | ||
"area" : "admin/ui", | ||
"url" : "https://github.com/keycloak/keycloak/issues/25051" | ||
}, { | ||
"number" : 25077, | ||
"repository" : "keycloak", | ||
"title" : "Publish information about Infinispan availability in lb-check if MULTI_SITE is enabled", | ||
"kind" : "task", | ||
"area" : null, | ||
"url" : "https://github.com/keycloak/keycloak/issues/25077" | ||
}, { | ||
"number" : 25090, | ||
"repository" : "keycloak", | ||
"title" : "Minor corrections to the HA guides", | ||
"kind" : "task", | ||
"area" : null, | ||
"url" : "https://github.com/keycloak/keycloak/issues/25090" | ||
}, { | ||
"number" : 25108, | ||
"repository" : "keycloak", | ||
"title" : "Documentation Inconsistency about Open Banking(Finance) Brasil FAPI security profile", | ||
"kind" : "bug", | ||
"area" : "docs", | ||
"url" : "https://github.com/keycloak/keycloak/issues/25108" | ||
}, { | ||
"number" : 25113, | ||
"repository" : "keycloak", | ||
"title" : "Add a test for the LoadBalancerCheck", | ||
"kind" : "enhancement", | ||
"area" : null, | ||
"url" : "https://github.com/keycloak/keycloak/issues/25113" | ||
}, { | ||
"number" : 25124, | ||
"repository" : "keycloak", | ||
"title" : "If a client does not have a URL the applications page in the account console links to about:blank", | ||
"kind" : "bug", | ||
"area" : "account/ui", | ||
"url" : "https://github.com/keycloak/keycloak/issues/25124" | ||
}, { | ||
"number" : 25173, | ||
"repository" : "keycloak", | ||
"title" : "Make sure username is lowercase when normalizing attributes", | ||
"kind" : "bug", | ||
"area" : "user-profile", | ||
"url" : "https://github.com/keycloak/keycloak/issues/25173" | ||
}, { | ||
"number" : 25183, | ||
"repository" : "keycloak", | ||
"title" : "NullPointerException thrown for UPConfig.getGroups()", | ||
"kind" : "bug", | ||
"area" : "user-profile", | ||
"url" : "https://github.com/keycloak/keycloak/issues/25183" | ||
}, { | ||
"number" : 25270, | ||
"repository" : "keycloak", | ||
"title" : "Link to GitHub discussion to ask for feedback about Multi-Site", | ||
"kind" : "task", | ||
"area" : null, | ||
"url" : "https://github.com/keycloak/keycloak/issues/25270" | ||
}, { | ||
"number" : 25287, | ||
"repository" : "keycloak", | ||
"title" : "Upgrade Infinispan to 14.0.21.Final", | ||
"kind" : "enhancement", | ||
"area" : null, | ||
"url" : "https://github.com/keycloak/keycloak/issues/25287" | ||
}, { | ||
"number" : 25307, | ||
"repository" : "keycloak", | ||
"title" : "Keycloak instance `HasErrors` true after update: `More than 1 secondary resource related to primary`", | ||
"kind" : "bug", | ||
"area" : "operator", | ||
"url" : "https://github.com/keycloak/keycloak/issues/25307" | ||
} ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<div> | ||
<h2>Highlights</h2> | ||
<div class="sect2"> | ||
<h3 id="_non_blocking_health_check_for_load_balancers">Non-blocking health check for load balancers</h3> | ||
<div class="paragraph"> | ||
<p>A new health check endpoint available at <code>/lb-check</code> was added. | ||
The execution is running in the event loop which means this check is responsive also in overloaded situations when Keycloak needs to handle many requests waiting in request queue. | ||
This behavior is useful, for example, in multi-site deployment where we do not want to fail over to the other site under heavy load. | ||
The endpoint is currently checking availability of the embedded and external Infinispan caches. Other checks may be added later.</p> | ||
</div> | ||
<div class="paragraph"> | ||
<p>This endpoint is not available by default. | ||
To enable it, run Keycloak with feature <code>multi-site</code>. | ||
Proceed to <a href="https://www.keycloak.org/server/features">Enabling and disabling features</a> guide for more details.</p> | ||
</div> | ||
</div> | ||
<h2>Upgrading</h2> | ||
<p>Before upgrading refer to <a href="file:/home/runner/work/keycloak-rel/keycloak-rel/target/web/docs/latest/upgrading/index.html#migration-changes">the migration guide</a> for a complete list of changes.</p> | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<div class="sect2"> | ||
<h3 id="_non_blocking_health_check_for_load_balancers">Non-blocking health check for load balancers</h3> | ||
<div class="paragraph"> | ||
<p>A new health check endpoint available at <code>/lb-check</code> was added. | ||
The execution is running in the event loop which means this check is responsive also in overloaded situations when Keycloak needs to handle many requests waiting in request queue. | ||
This behavior is useful, for example, in multi-site deployment where we do not want to fail over to the other site under heavy load. | ||
The endpoint is currently checking availability of the embedded and external Infinispan caches. Other checks may be added later.</p> | ||
</div> | ||
<div class="paragraph"> | ||
<p>This endpoint is not available by default. | ||
To enable it, run Keycloak with feature <code>multi-site</code>. | ||
Proceed to <a href="https://www.keycloak.org/server/features">Enabling and disabling features</a> guide for more details.</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"date": "2023-12-14", | ||
"version": "23.0.2", | ||
"blogTemplate": 3, | ||
"documentationTemplate": 11, | ||
"downloadTemplate": 22 | ||
} |