1
0
Fork 0

bump minimal version of Nextcloud to 28

This commit is contained in:
ibizaman 2024-05-29 14:46:41 -07:00 committed by Pierre Penninckx
parent c34a2f4c58
commit faaa0e2263
2 changed files with 3 additions and 2 deletions

View file

@ -4,6 +4,7 @@
- Rename `shb.nginx.autheliaProtect` to `shb.nginx.vhosts`. Indeed, the option allows to define a vhost with _optional_ Authelia protection but the former name made it look like Authelia protection was enforced. - Rename `shb.nginx.autheliaProtect` to `shb.nginx.vhosts`. Indeed, the option allows to define a vhost with _optional_ Authelia protection but the former name made it look like Authelia protection was enforced.
- Remove `shb.vaultwarden.ldapEndpoint` option because it was not used in the implementation anyway. - Remove `shb.vaultwarden.ldapEndpoint` option because it was not used in the implementation anyway.
- Bump Nextcloud default version from 27 to 28. Add support for version 29.
## User Facing Backwards Compatible Changes ## User Facing Backwards Compatible Changes

View file

@ -72,8 +72,8 @@ in
version = lib.mkOption { version = lib.mkOption {
description = "Nextcloud version to choose from."; description = "Nextcloud version to choose from.";
type = lib.types.enum [ 27 28 ]; type = lib.types.enum [ 28 29 ];
default = 27; default = 28;
}; };
dataDir = lib.mkOption { dataDir = lib.mkOption {