Skip to content

Commit

Permalink
Keycloak 24.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 5, 2024
1 parent 92dffcb commit 41b4df0
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 1 deletion.
1 change: 1 addition & 0 deletions cache/releases/24.0.1/changelog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[ ]
35 changes: 35 additions & 0 deletions cache/releases/24.0.1/gh-release-notes.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<div>
<h2>Highlights</h2>
<div class="sect2">
<h3 id="_operator_deploys_nightly_build_instead_of_24_0_0">Operator deploys nightly build instead of 24.0.0</h3>
<div class="paragraph">
<p>Due to an issue in the release process when deploying Keycloak using the Operator it installed the <code>nightly</code> container
instead of <code>24.0.0</code>.</p>
</div>
<div class="paragraph">
<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
disabled.</p>
</div>
<div class="paragraph">
<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
with the wrong versions. To check if you are affected connect to your database and run the following SQL command:</p>
</div>
<div class="listingblock">
<div class="content">
<pre class="highlight"><code>SELECT * from migration_model WHERE version = '999.0.0';</code></pre>
</div>
</div>
<div class="paragraph">
<p>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:</p>
</div>
<div class="listingblock">
<div class="content">
<pre class="highlight"><code>UPDATE migration_model SET version = '24.0.0' WHERE version = '999.0.0';</code></pre>
</div>
</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>
29 changes: 29 additions & 0 deletions cache/releases/24.0.1/release-notes.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<div class="sect2">
<h3 id="_operator_deploys_nightly_build_instead_of_24_0_0">Operator deploys nightly build instead of 24.0.0</h3>
<div class="paragraph">
<p>Due to an issue in the release process when deploying Keycloak using the Operator it installed the <code>nightly</code> container
instead of <code>24.0.0</code>.</p>
</div>
<div class="paragraph">
<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
disabled.</p>
</div>
<div class="paragraph">
<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
with the wrong versions. To check if you are affected connect to your database and run the following SQL command:</p>
</div>
<div class="listingblock">
<div class="content">
<pre class="highlight"><code>SELECT * from migration_model WHERE version = '999.0.0';</code></pre>
</div>
</div>
<div class="paragraph">
<p>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:</p>
</div>
<div class="listingblock">
<div class="content">
<pre class="highlight"><code>UPDATE migration_model SET version = '24.0.0' WHERE version = '999.0.0';</code></pre>
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<version.commons-io>2.11.0</version.commons-io>
<version.commons-compress>1.26.0</version.commons-compress>

<version.keycloak>24.0.0</version.keycloak>
<version.keycloak>24.0.1</version.keycloak>

<version.frontend-maven-plugin>1.12.1</version.frontend-maven-plugin>
<version.node>v16.13.1</version.node>
Expand Down
7 changes: 7 additions & 0 deletions versions/24.0.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"date": "2024-03-05",
"version": "24.0.1",
"blogTemplate": 3,
"documentationTemplate": 11,
"downloadTemplate": 23
}

0 comments on commit 41b4df0

Please sign in to comment.