From 4f933d350529b7df7a3f5a3e1c71f8286b3f7cbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=B6bus?= Date: Tue, 2 Dec 2025 09:57:35 +0100 Subject: [PATCH] patch the version file to allow upgrading from owncloud > v10.13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- version.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/version.php b/version.php index 8ee42146790..89dca88e582 100644 --- a/version.php +++ b/version.php @@ -21,6 +21,9 @@ $OC_VersionCanBeUpgradedFrom = [ ], 'owncloud' => [ '10.13' => true, + '10.14' => true, + '10.15' => true, + '10.16' => true, ], ];