chore: v0.5.9

This commit is contained in:
Aarnav Tale 2025-04-03 22:58:40 -04:00
parent f2747ada94
commit 66c7d9a327
No known key found for this signature in database
5 changed files with 10 additions and 5 deletions

View File

@ -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.

View File

@ -122,7 +122,7 @@ export default function Shell() {
<>
<Header {...data} />
{/* Always show the outlet if we are onboarding */}
{(data.onboarding ? true : !data.uiAccess) ? (
{(data.onboarding ? true : data.uiAccess) ? (
<Outlet />
) : (
<Card className="mx-auto w-fit mt-24">

View File

@ -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

View File

@ -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:

View File

@ -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",