Skip to content

Commit 41b4df0

Browse files
Keycloak 24.0.1 release
1 parent 92dffcb commit 41b4df0

File tree

5 files changed

+73
-1
lines changed

5 files changed

+73
-1
lines changed

cache/releases/24.0.1/changelog.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[ ]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<div>
2+
<h2>Highlights</h2>
3+
<div class="sect2">
4+
<h3 id="_operator_deploys_nightly_build_instead_of_24_0_0">Operator deploys nightly build instead of 24.0.0</h3>
5+
<div class="paragraph">
6+
<p>Due to an issue in the release process when deploying Keycloak using the Operator it installed the <code>nightly</code> container
7+
instead of <code>24.0.0</code>.</p>
8+
</div>
9+
<div class="paragraph">
10+
<p>As a quick fix to the issue, the <code>24.0.0</code> container was tagged with <code>nightly</code>, and the <code>nightly</code> releases was temporarily
11+
disabled.</p>
12+
</div>
13+
<div class="paragraph">
14+
<p>If you installed or upgraded to <code>24.0.0</code> using the Operator before 5pm CET yesterday the database may have been updated
15+
with the wrong versions. To check if you are affected connect to your database and run the following SQL command:</p>
16+
</div>
17+
<div class="listingblock">
18+
<div class="content">
19+
<pre class="highlight"><code>SELECT * from migration_model WHERE version = '999.0.0';</code></pre>
20+
</div>
21+
</div>
22+
<div class="paragraph">
23+
<p>If the above returns a matching row you will need to take some actions, otherwise database migrations will not run for
24+
future releases. To resolve this run the following SQL command:</p>
25+
</div>
26+
<div class="listingblock">
27+
<div class="content">
28+
<pre class="highlight"><code>UPDATE migration_model SET version = '24.0.0' WHERE version = '999.0.0';</code></pre>
29+
</div>
30+
</div>
31+
</div>
32+
<h2>Upgrading</h2>
33+
<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>
34+
35+
</div>
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<div class="sect2">
2+
<h3 id="_operator_deploys_nightly_build_instead_of_24_0_0">Operator deploys nightly build instead of 24.0.0</h3>
3+
<div class="paragraph">
4+
<p>Due to an issue in the release process when deploying Keycloak using the Operator it installed the <code>nightly</code> container
5+
instead of <code>24.0.0</code>.</p>
6+
</div>
7+
<div class="paragraph">
8+
<p>As a quick fix to the issue, the <code>24.0.0</code> container was tagged with <code>nightly</code>, and the <code>nightly</code> releases was temporarily
9+
disabled.</p>
10+
</div>
11+
<div class="paragraph">
12+
<p>If you installed or upgraded to <code>24.0.0</code> using the Operator before 5pm CET yesterday the database may have been updated
13+
with the wrong versions. To check if you are affected connect to your database and run the following SQL command:</p>
14+
</div>
15+
<div class="listingblock">
16+
<div class="content">
17+
<pre class="highlight"><code>SELECT * from migration_model WHERE version = '999.0.0';</code></pre>
18+
</div>
19+
</div>
20+
<div class="paragraph">
21+
<p>If the above returns a matching row you will need to take some actions, otherwise database migrations will not run for
22+
future releases. To resolve this run the following SQL command:</p>
23+
</div>
24+
<div class="listingblock">
25+
<div class="content">
26+
<pre class="highlight"><code>UPDATE migration_model SET version = '24.0.0' WHERE version = '999.0.0';</code></pre>
27+
</div>
28+
</div>
29+
</div>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<version.commons-io>2.11.0</version.commons-io>
2222
<version.commons-compress>1.26.0</version.commons-compress>
2323

24-
<version.keycloak>24.0.0</version.keycloak>
24+
<version.keycloak>24.0.1</version.keycloak>
2525

2626
<version.frontend-maven-plugin>1.12.1</version.frontend-maven-plugin>
2727
<version.node>v16.13.1</version.node>

versions/24.0.1.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"date": "2024-03-05",
3+
"version": "24.0.1",
4+
"blogTemplate": 3,
5+
"documentationTemplate": 11,
6+
"downloadTemplate": 23
7+
}

0 commit comments

Comments
 (0)