website/docs: update changelog
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
4467546464
commit
1efc0c1242
|
@ -7,12 +7,6 @@ slug: "xxxx.x"
|
||||||
|
|
||||||
## New features
|
## New features
|
||||||
|
|
||||||
## API Changes
|
|
||||||
|
|
||||||
_Insert output of `make gen-diff` here_
|
|
||||||
|
|
||||||
## Minor changes/fixes
|
|
||||||
|
|
||||||
## Upgrading
|
## Upgrading
|
||||||
|
|
||||||
This release does not introduce any new requirements.
|
This release does not introduce any new requirements.
|
||||||
|
@ -30,3 +24,9 @@ image:
|
||||||
repository: ghcr.io/goauthentik/server
|
repository: ghcr.io/goauthentik/server
|
||||||
tag: xxxx.x.0
|
tag: xxxx.x.0
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Minor changes/fixes
|
||||||
|
|
||||||
|
## API Changes
|
||||||
|
|
||||||
|
_Insert output of `make gen-diff` here_
|
||||||
|
|
|
@ -20,6 +20,48 @@ slug: "2022.11"
|
||||||
|
|
||||||
The "Have I been Pwned" policy has been merged into the password policy, and additionally passwords can be checked using [zxcvbn](https://github.com/dropbox/zxcvbn) to provider concise feedback.
|
The "Have I been Pwned" policy has been merged into the password policy, and additionally passwords can be checked using [zxcvbn](https://github.com/dropbox/zxcvbn) to provider concise feedback.
|
||||||
|
|
||||||
|
## Upgrading
|
||||||
|
|
||||||
|
This release does not introduce any new requirements.
|
||||||
|
|
||||||
|
### docker-compose
|
||||||
|
|
||||||
|
Download the docker-compose file for 2022.11 from [here](https://goauthentik.io/version/2022.11/docker-compose.yml). Afterwards, simply run `docker-compose up -d`.
|
||||||
|
|
||||||
|
### Kubernetes
|
||||||
|
|
||||||
|
Update your values to use the new images:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
image:
|
||||||
|
repository: ghcr.io/goauthentik/server
|
||||||
|
tag: 2022.11.1
|
||||||
|
```
|
||||||
|
|
||||||
|
## Minor changes/fixes
|
||||||
|
|
||||||
|
- api: fix missing scheme in securitySchemes
|
||||||
|
- blueprints: Fixed bug causing blueprint instance context be discarded (#3990)
|
||||||
|
- core: fix error when propertymappings return complex value
|
||||||
|
- core: simplify group serializer for user API endpoint (#3899)
|
||||||
|
- events: deepcopy event kwargs to prevent objects being removed, remove workaround
|
||||||
|
- events: sanitize generator for json safety
|
||||||
|
- lib: fix complex objects being included in event context for ak_create_event
|
||||||
|
- lifecycle: fix incorrect messages looped
|
||||||
|
- outposts/kubernetes: ingress class (#4002)
|
||||||
|
- policies: only cache policies for authenticated users
|
||||||
|
- policies/password: merge hibp add zxcvbn (#4001)
|
||||||
|
- providers/oauth2: fix inconsistent expiry encoded in JWT
|
||||||
|
- root: make sentry DSN configurable (#4016)
|
||||||
|
- root: relicense and launch blog post
|
||||||
|
- root: use single redis db (#4009)
|
||||||
|
- sources: add custom icon support (#4022)
|
||||||
|
- stages/authenticator\_\*: cleanup
|
||||||
|
- stages/authenticator_validate: add flag to configure user_verification for webauthn devices
|
||||||
|
- stages/invitation: directly delete invitation now that flow plan is saved in email token
|
||||||
|
- web: fix twitter icon
|
||||||
|
- web/flows: always hide static user info when its not set in the flow
|
||||||
|
|
||||||
## API Changes
|
## API Changes
|
||||||
|
|
||||||
#### What's Changed
|
#### What's Changed
|
||||||
|
@ -705,23 +747,3 @@ Changed response : **200 OK**
|
||||||
* Deleted property `users` (array)
|
* Deleted property `users` (array)
|
||||||
|
|
||||||
* Deleted property `users_obj` (array)
|
* Deleted property `users_obj` (array)
|
||||||
|
|
||||||
## Minor changes/fixes
|
|
||||||
|
|
||||||
## Upgrading
|
|
||||||
|
|
||||||
This release does not introduce any new requirements.
|
|
||||||
|
|
||||||
### docker-compose
|
|
||||||
|
|
||||||
Download the docker-compose file for 2022.11 from [here](https://goauthentik.io/version/2022.11/docker-compose.yml). Afterwards, simply run `docker-compose up -d`.
|
|
||||||
|
|
||||||
### Kubernetes
|
|
||||||
|
|
||||||
Update your values to use the new images:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
image:
|
|
||||||
repository: ghcr.io/goauthentik/server
|
|
||||||
tag: 2022.11.1
|
|
||||||
```
|
|
||||||
|
|
|
@ -217,13 +217,14 @@ module.exports = {
|
||||||
description: "Release notes for recent authentik versions",
|
description: "Release notes for recent authentik versions",
|
||||||
},
|
},
|
||||||
items: [
|
items: [
|
||||||
|
"releases/v2022.11",
|
||||||
"releases/v2022.10",
|
"releases/v2022.10",
|
||||||
"releases/v2022.9",
|
"releases/v2022.9",
|
||||||
"releases/v2022.8",
|
|
||||||
{
|
{
|
||||||
type: "category",
|
type: "category",
|
||||||
label: "Previous versions",
|
label: "Previous versions",
|
||||||
items: [
|
items: [
|
||||||
|
"releases/v2022.8",
|
||||||
"releases/v2022.7",
|
"releases/v2022.7",
|
||||||
"releases/v2022.6",
|
"releases/v2022.6",
|
||||||
"releases/v2022.5",
|
"releases/v2022.5",
|
||||||
|
|
Reference in New Issue