update: 2025.6.4 -> 2025.8.1
See https://next.goauthentik.io/releases/2025.8/ ChangeLog: https://next.goauthentik.io/releases/2025.8/#fixed-in-202581 The following things changed: * We're blocked on going to NodeJS 24.x (which is the version upstream uses) because it breaks with napalm[1]. * The worker has been switched from celery to dramatiq. An automatic migration of the tasks doesn't exist, the operator must make sure to stop the server and let the queue drain[2]. While this eliminates the need of Redis for Celery, the tests fails without Redis. After inspecting the code, it looks like it's still needed for e.g. session management. [1] https://github.com/npm/cli/issues/8541 [2] https://next.goauthentik.io/releases/2025.8/#fixed-in-202581
This commit is contained in:
parent
1361d269fe
commit
6dc84faaec
6 changed files with 39 additions and 32 deletions
|
|
@ -42,7 +42,7 @@
|
|||
};
|
||||
authentik-src = {
|
||||
# change version string in outputs as well when updating
|
||||
url = "github:goauthentik/authentik/version/2025.6.4";
|
||||
url = "github:goauthentik/authentik/version/2025.8.1";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
authentik-version = "2025.6.4"; # to pass to the drvs of some components
|
||||
authentik-version = "2025.8.1"; # to pass to the drvs of some components
|
||||
in
|
||||
{
|
||||
systems = import inputs.systems;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue