mirror of
https://github.com/goauthentik/authentik
synced 2026-04-27 09:57:31 +02:00
* website/integrations: rename "Create with Provider" to "New Application" The application list page now uses a split-button labeled "New Application" instead of the old "Create with Provider" dropdown. Update all 113 integration guides to match. * website/docs: update flow, stage, and policy button labels - "Create" → "New Flow", "New Stage", "New Policy" for trigger buttons - "Finish" → "Create Flow", "Create Stage", "Create Policy" for submit - "Create and bind stage" → "New Stage" / "Bind Existing Stage" - "Create" (binding submit) → "Create Stage Binding" * website/docs: update provider button labels - "Create" → "New Provider" for trigger buttons - "Create with Provider" → "New Application" in RAC docs - "Create" → "New Property Mapping", "New RAC Endpoint", "New Prompt" for related entity creation * website/docs: update directory button labels - "Create" → "New Source" for federation/social login pages - "Create" → "New Role", submit → "Create Role" - "Create" → "New Invitation" - Policy binding submit → "Create Policy Binding" * website/docs: update endpoint device and system management button labels - "Create" → "New Endpoint Connector", "New Enrollment Token", "New Device Access Group", "New Flow" - Submit → "Create Device Access Group" - "Create" → "New Notification Rule", "New Notification Transport" - Binding submit → "Create Policy Binding" * Reorganize policy documentation * website/docs: address policy docs review feedback * post-rebase * website/docs: Reorganize policy documentation -- Revisions (#21601) * apply suggestions * Fix escaped. * Fix whitespace. * Update button label. * Fix phrasing. * Fix phrasing. * Clean up stragglers. * Format. --------- Co-authored-by: Dominic R <dominic@sdko.org>
58 lines
2.3 KiB
Markdown
58 lines
2.3 KiB
Markdown
---
|
|
title: Release 0.14
|
|
slug: "/releases/0.14"
|
|
---
|
|
|
|
## Headline features
|
|
|
|
- Flows are now graphically shown as diagrams, to visualise which stages and policies are bound.
|
|
|
|
This diagram makes it significantly easier to understand how a flow works, as well as helping you design a flow that does exactly what you need.
|
|
|
|
- Events now have a more general purpose, rather than just logging audit actions.
|
|
|
|
The following new events are now logged:
|
|
- Policy Execution (Has to be enabled on a per-policy basis)
|
|
- Policy Exceptions
|
|
- Property Mapping Exceptions
|
|
- Configuration Errors (currently these events are created by incorrectly configured providers, but will be used further in the future.)
|
|
- Update availability
|
|
|
|
- The OAuth2 Provider has been updated to closer match the OpenID Connect Specifications
|
|
|
|
Response type no longer has to be configured manually. The issuer field can be configured now (the default behaviour is the same as pre-0.14)
|
|
|
|
Authorization Codes are now generated as a JWT Token, which is not specified as spec, but seems to be a quasi-standard.
|
|
|
|
- SAML Providers can now be created from SAML Metadata
|
|
- The authentik proxy is now using the currently latest version of oauth2_proxy (6.1.1)
|
|
- The license has been changed to GNU/GPL 3.0
|
|
|
|
## Fixes
|
|
|
|
- admin: fix policy test button in dark theme
|
|
- core: fix anonymous user being included in User API
|
|
- core: fix token update/delete not working
|
|
- core: fix User's token creation not working
|
|
- core: make application's provider not required
|
|
- core: show multi-select notice for SelectMultiple Widgets
|
|
- outposts: allow blank kubeconfig
|
|
- outposts: validate kubeconfig before saving
|
|
- proxy: update to latest stable oauth2_proxy version
|
|
- root: update license
|
|
- web: fix sidebar being overlaid over modal backdrop
|
|
- web: fix table styling on mobile
|
|
- web: use displyname in sidebar for user
|
|
|
|
## Upgrading
|
|
|
|
This release does not introduce any new requirements.
|
|
|
|
### docker-compose
|
|
|
|
Download the docker-compose file for 0.14 from [here](https://goauthentik.io/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
|
|
|
|
Run `helm repo update` and then upgrade your release with `helm upgrade authentik authentik/authentik --devel -f values.yaml`.
|