diff --git a/CHANGELOG.md b/CHANGELOG.md
index b15c054..9a13fb8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+### 0.5.9 (April 3, 2025)
+- Filter out empty users from the pre-auth keys page which could possibly cause a crash with unmigrated users.
+- OIDC users cannot be renamed, so that functionality has been disabled in the menu options.
+- Suppress hydration errors for any fields with a date in it.
+
### 0.5.8 (April 3, 2025)
- You can now skip the onboarding page if desired.
- Added the UI to change user roles in the dashboard.
diff --git a/app/layouts/shell.tsx b/app/layouts/shell.tsx
index 1a49cdb..584f8d4 100644
--- a/app/layouts/shell.tsx
+++ b/app/layouts/shell.tsx
@@ -122,7 +122,7 @@ export default function Shell() {
<>
{/* Always show the outlet if we are onboarding */}
- {(data.onboarding ? true : !data.uiAccess) ? (
+ {(data.onboarding ? true : data.uiAccess) ? (
) : (
diff --git a/docs/Integrated-Mode.md b/docs/Integrated-Mode.md
index 20acc10..7f5e6ad 100644
--- a/docs/Integrated-Mode.md
+++ b/docs/Integrated-Mode.md
@@ -34,7 +34,7 @@ Here is what a sample Docker Compose deployment would look like:
services:
headplane:
# I recommend you pin the version to a specific release
- image: ghcr.io/tale/headplane:0.5.8
+ image: ghcr.io/tale/headplane:0.5.9
container_name: headplane
restart: unless-stopped
ports:
@@ -151,7 +151,7 @@ spec:
serviceAccountName: default
containers:
- name: headplane
- image: ghcr.io/tale/headplane:0.5.8
+ image: ghcr.io/tale/headplane:0.5.9
env:
# Set these if the pod name for Headscale is not static
# We will use the downward API to get the pod name instead
diff --git a/docs/Simple-Mode.md b/docs/Simple-Mode.md
index 24349cc..4583eac 100644
--- a/docs/Simple-Mode.md
+++ b/docs/Simple-Mode.md
@@ -19,7 +19,7 @@ Here is what a sample Docker Compose deployment would look like:
services:
headplane:
# I recommend you pin the version to a specific release
- image: ghcr.io/tale/headplane:0.5.8
+ image: ghcr.io/tale/headplane:0.5.9
container_name: headplane
restart: unless-stopped
ports:
diff --git a/package.json b/package.json
index cdb6504..2314163 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "headplane",
"private": true,
"sideEffects": false,
- "version": "0.5.8",
+ "version": "0.5.9",
"type": "module",
"scripts": {
"build": "react-router build",