chore: v0.3.2
This commit is contained in:
parent
9e21823163
commit
447a31f91e
@ -1,3 +1,10 @@
|
|||||||
|
### 0.3.2 (October 11, 2024)
|
||||||
|
- Implement the ability to create and expire pre-auth keys (fixes [#22](https://github.com/tale/headplane/issues/22))
|
||||||
|
- Fix machine registration not working as expected (fixes [#27](https://github.com/tale/headplane/issues/27))
|
||||||
|
- Removed more references to usernames in MagicDNS hostnames (fixes [#35](https://github.com/tale/headplane/issues/35))
|
||||||
|
- Handle `null` values on machine expiry when using a database like PostgreSQL.
|
||||||
|
- Use `X-Forwarded-Proto` and `Host` headers for building the OIDC callback URL.
|
||||||
|
|
||||||
### 0.3.1 (October 3, 2024)
|
### 0.3.1 (October 3, 2024)
|
||||||
- Fixed the Docker integration to properly support custom socket paths. This regressed at some point previously.
|
- Fixed the Docker integration to properly support custom socket paths. This regressed at some point previously.
|
||||||
- Allow you to register a machine using machine keys (`nodekey:...`) on the machines page.
|
- Allow you to register a machine using machine keys (`nodekey:...`) on the machines page.
|
||||||
|
|||||||
@ -29,7 +29,7 @@ Here is a simple Docker Compose deployment:
|
|||||||
services:
|
services:
|
||||||
headplane:
|
headplane:
|
||||||
container_name: headplane
|
container_name: headplane
|
||||||
image: ghcr.io/tale/headplane:0.3.1
|
image: ghcr.io/tale/headplane:0.3.2
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- '3000:3000'
|
- '3000:3000'
|
||||||
|
|||||||
@ -50,7 +50,7 @@ services:
|
|||||||
TZ: 'America/New_York'
|
TZ: 'America/New_York'
|
||||||
headplane:
|
headplane:
|
||||||
container_name: headplane
|
container_name: headplane
|
||||||
image: ghcr.io/tale/headplane:0.3.1
|
image: ghcr.io/tale/headplane:0.3.2
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- './data:/var/lib/headscale'
|
- './data:/var/lib/headscale'
|
||||||
|
|||||||
@ -88,7 +88,7 @@ spec:
|
|||||||
serviceAccountName: default
|
serviceAccountName: default
|
||||||
containers:
|
containers:
|
||||||
- name: headplane
|
- name: headplane
|
||||||
image: ghcr.io/tale/headplane:0.3.1
|
image: ghcr.io/tale/headplane:0.3.2
|
||||||
env:
|
env:
|
||||||
- name: COOKIE_SECRET
|
- name: COOKIE_SECRET
|
||||||
value: 'abcdefghijklmnopqrstuvwxyz'
|
value: 'abcdefghijklmnopqrstuvwxyz'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user