docs: prepare next release
This commit is contained in:
parent
aad3b43ac3
commit
b81f3e4a38
|
@ -2,13 +2,11 @@
|
||||||
|
|
||||||
## Supported Versions
|
## Supported Versions
|
||||||
|
|
||||||
As authentik is currently in a pre-stable, only the latest "stable" version is supported. After authentik 1.0, this will change.
|
|
||||||
|
|
||||||
| Version | Supported |
|
| Version | Supported |
|
||||||
| -------- | ------------------ |
|
| ---------- | ------------------ |
|
||||||
| 0.12.x | :white_check_mark: |
|
|
||||||
| 0.13.x | :white_check_mark: |
|
| 0.13.x | :white_check_mark: |
|
||||||
| 0.14.x | :white_check_mark: |
|
| 0.14.x | :white_check_mark: |
|
||||||
|
| 2021.1.x | :white_check_mark: |
|
||||||
|
|
||||||
## Reporting a Vulnerability
|
## Reporting a Vulnerability
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ This release does not introduce any new requirements.
|
||||||
|
|
||||||
### docker-compose
|
### docker-compose
|
||||||
|
|
||||||
Download the latest docker-compose file from [here](https://raw.githubusercontent.com/BeryJu/authentik/version-0.14/docker-compose.yml). Aftewards, simply run `docker-compose up -d` and then the normal upgrade command of `docker-compose run --rm server migrate`.
|
Download the latest docker-compose file from [here](https://raw.githubusercontent.com/BeryJu/authentik/version-0.14/docker-compose.yml). Afterwards, simply run `docker-compose up -d` and then the standard upgrade command of `docker-compose run --rm server migrate`.
|
||||||
|
|
||||||
### Kubernetes
|
### Kubernetes
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
---
|
||||||
|
title: Release 2021.1.1
|
||||||
|
---
|
||||||
|
|
||||||
|
## Headline Changes
|
||||||
|
|
||||||
|
- New versioning schema (year.month.release)
|
||||||
|
- Add global email settings
|
||||||
|
|
||||||
|
In previous versions, you had to configure email connection details per [Email Stage](../flow/stages/email/index.md). Now, you can (and should) configure global settings.
|
||||||
|
|
||||||
|
This is documented under the [docker-compose](../installation/docker-compose.md) and [Kubernetes](../installation/kubernetes.md) sections.
|
||||||
|
|
||||||
|
- New notification system
|
||||||
|
|
||||||
|
More info can be found under [Notifications](../events/notifications.md) and [Transports](../events/transports.md).
|
||||||
|
|
||||||
|
During the update, some default rules will be created. These rules notify you about policy exceptions, configuration errors and updates.
|
||||||
|
|
||||||
|
These notifications will be sent using a default transport, which uses the global email transport.
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
|
||||||
|
- sources/*: Add source to flow context, so source is logged during login
|
||||||
|
- outposts: Fix outpost not correctly updating on outpost modification
|
||||||
|
- outposts: Improve drift detection on kubernetes
|
||||||
|
- providers/saml: Fix metadata not being signed when signature is enabled
|
||||||
|
- policies: Improve error handling, ensure original stacktrace is preserved
|
||||||
|
|
||||||
|
## Upgrading
|
||||||
|
|
||||||
|
This release does not introduce any new requirements.
|
||||||
|
|
||||||
|
### docker-compose
|
||||||
|
|
||||||
|
Download the latest docker-compose file from [here](https://raw.githubusercontent.com/BeryJu/authentik/version-2021.1.1/docker-compose.yml). Afterwards, simply run `docker-compose up -d` and then the standard upgrade command of `docker-compose run --rm server migrate`.
|
||||||
|
|
||||||
|
### Kubernetes
|
||||||
|
|
||||||
|
Run `helm repo update` and then upgrade your release with `helm upgrade passbook authentik/authentik --devel -f values.yaml`.
|
|
@ -139,6 +139,7 @@ module.exports = {
|
||||||
"releases/0.12",
|
"releases/0.12",
|
||||||
"releases/0.13",
|
"releases/0.13",
|
||||||
"releases/0.14",
|
"releases/0.14",
|
||||||
|
"releases/2021.1.1",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Reference in New Issue