chore: v0.5.9
This commit is contained in:
parent
f2747ada94
commit
66c7d9a327
@ -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)
|
### 0.5.8 (April 3, 2025)
|
||||||
- You can now skip the onboarding page if desired.
|
- You can now skip the onboarding page if desired.
|
||||||
- Added the UI to change user roles in the dashboard.
|
- Added the UI to change user roles in the dashboard.
|
||||||
|
|||||||
@ -122,7 +122,7 @@ export default function Shell() {
|
|||||||
<>
|
<>
|
||||||
<Header {...data} />
|
<Header {...data} />
|
||||||
{/* Always show the outlet if we are onboarding */}
|
{/* Always show the outlet if we are onboarding */}
|
||||||
{(data.onboarding ? true : !data.uiAccess) ? (
|
{(data.onboarding ? true : data.uiAccess) ? (
|
||||||
<Outlet />
|
<Outlet />
|
||||||
) : (
|
) : (
|
||||||
<Card className="mx-auto w-fit mt-24">
|
<Card className="mx-auto w-fit mt-24">
|
||||||
|
|||||||
@ -34,7 +34,7 @@ Here is what a sample Docker Compose deployment would look like:
|
|||||||
services:
|
services:
|
||||||
headplane:
|
headplane:
|
||||||
# I recommend you pin the version to a specific release
|
# 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
|
container_name: headplane
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
@ -151,7 +151,7 @@ spec:
|
|||||||
serviceAccountName: default
|
serviceAccountName: default
|
||||||
containers:
|
containers:
|
||||||
- name: headplane
|
- name: headplane
|
||||||
image: ghcr.io/tale/headplane:0.5.8
|
image: ghcr.io/tale/headplane:0.5.9
|
||||||
env:
|
env:
|
||||||
# Set these if the pod name for Headscale is not static
|
# Set these if the pod name for Headscale is not static
|
||||||
# We will use the downward API to get the pod name instead
|
# We will use the downward API to get the pod name instead
|
||||||
|
|||||||
@ -19,7 +19,7 @@ Here is what a sample Docker Compose deployment would look like:
|
|||||||
services:
|
services:
|
||||||
headplane:
|
headplane:
|
||||||
# I recommend you pin the version to a specific release
|
# 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
|
container_name: headplane
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
"name": "headplane",
|
"name": "headplane",
|
||||||
"private": true,
|
"private": true,
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"version": "0.5.8",
|
"version": "0.5.9",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "react-router build",
|
"build": "react-router build",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user