diff --git a/website/docs/releases/_template.md b/website/docs/releases/_template.md new file mode 100644 index 000000000..f84a34c1f --- /dev/null +++ b/website/docs/releases/_template.md @@ -0,0 +1,29 @@ +--- +title: Release xxxx.x +slug: "xxxx.x" +--- + +## Breaking changes + + +## New features + +## Minor changes/fixes + +## Upgrading + +This release does not introduce any new requirements. + +### docker-compose + +Download the docker-compose file for xxxx.x from [here](https://goauthentik.io/version/xxxx.x/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: xxxx.x.1 +``` diff --git a/website/docs/releases/v2022.3.md b/website/docs/releases/v2022.3.md new file mode 100644 index 000000000..c1f53d918 --- /dev/null +++ b/website/docs/releases/v2022.3.md @@ -0,0 +1,48 @@ +--- +title: Release 2022.3 +slug: "2022.3" +--- + +## New features + +### Customizable user settings + +User settings are now configured using flows and stages, allowing administrators to configure fields, add additional fields and run custom validation for user settings. + +### `client_credentials` support + +authentik now supports the OAuth `client_credentials` grant for machine-to-machine authentication. See [OAuth2 Provider](../providers/oauth2) + +## Minor changes/fixes + +- core: add initial app launch url (#2367) +- core: customisable user settings (#2397) +- core/api: allow filtering users by uid, add uid to search +- internal/ldap: fix panic when parsing lists with mixed types +- lib: fix default geoip path +- providers/oauth2: fix invalid launch URL being generated +- providers/oauth2: initial client_credentials grant support (#2437) +- providers/proxy: always set rd param in addition to session to prevent wrong url in session +- web: cleanup default footer links +- web: prioritise ?locale parameter over saved locale +- web/admin: improve user and group management by showing related objects +- web/admin: use searchable select field for users and groups in policy binding form +- web/flows: fix rendering of help text on prompt stages + +## Upgrading + +This release does not introduce any new requirements. + +### docker-compose + +Download the docker-compose file for 2022.3 from [here](https://goauthentik.io/version/2022.3/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.3.1 +```