patch the version file to allow upgrading from owncloud > v10.13

Some customers already migrated from 10.15.3 and needed to edit the version.php file before the migration. 10.16 was recently published and it seems migration from there also works fine.

Signed-off-by: Sebastian Möbus <sebastian@nextcloud.com>
This commit is contained in:
Sebastian Möbus 2025-12-02 09:57:35 +01:00 committed by Andy Scherzinger
parent 2348d99cb5
commit 5cb4ff9e63

View file

@ -21,6 +21,9 @@ $OC_VersionCanBeUpgradedFrom = [
],
'owncloud' => [
'10.13' => true,
'10.14' => true,
'10.15' => true,
'10.16' => true,
],
];