From d48ef8b507798e04d6a66a6ec0156fafa55b1da3 Mon Sep 17 00:00:00 2001 From: Stian Thorgersen Date: Tue, 5 Mar 2024 08:46:10 +0100 Subject: [PATCH] Added release notes for 24.0.1 (#27524) Signed-off-by: stianst --- docs/documentation/release_notes/index.adoc | 3 +++ .../release_notes/topics/24_0_1.adoc | 21 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 docs/documentation/release_notes/topics/24_0_1.adoc diff --git a/docs/documentation/release_notes/index.adoc b/docs/documentation/release_notes/index.adoc index 5195032a73..0480468bfa 100644 --- a/docs/documentation/release_notes/index.adoc +++ b/docs/documentation/release_notes/index.adoc @@ -13,6 +13,9 @@ include::topics/templates/document-attributes.adoc[] :release_header_latest_link: {releasenotes_link_latest} include::topics/templates/release-header.adoc[] +== {project_name_full} 24.0.1 +include::topics/24_0_1.adoc[leveloffset=2] + == {project_name_full} 24.0.0 include::topics/24_0_0.adoc[leveloffset=2] diff --git a/docs/documentation/release_notes/topics/24_0_1.adoc b/docs/documentation/release_notes/topics/24_0_1.adoc new file mode 100644 index 0000000000..dd648e7eaa --- /dev/null +++ b/docs/documentation/release_notes/topics/24_0_1.adoc @@ -0,0 +1,21 @@ += Operator deploys nightly build instead of 24.0.0 + +Due to an issue in the release process when deploying Keycloak using the Operator it installed the `nightly` container +instead of `24.0.0`. + +As a quick fix to the issue, the `24.0.0` container was tagged with `nightly`, and the `nightly` releases was temporarily +disabled. + +If you installed or upgraded to `24.0.0` using the Operator before 5pm CET yesterday the database may have been updated +with the wrong versions. To check if you are affected connect to your database and run the following SQL command: + +``` +SELECT * from migration_model WHERE version = '999.0.0'; +``` + +If the above returns a matching row you will need to take some actions, otherwise database migrations will not run for +future releases. To resolve this run the following SQL command: + +``` +UPDATE migration_model SET version = '24.0.0' WHERE version = '999.0.0'; +``` \ No newline at end of file