From 858440baeecbe706f4545d66e8f2bec3ab242f38 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 1/2] 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 ec5e66e1c79b8..569c2f2e51374 100644 --- a/version.php +++ b/version.php @@ -42,6 +42,9 @@ ], 'owncloud' => [ '10.13' => true, + '10.14' => true, + '10.15' => true, + '10.16' => true, ], ]; From 6c8241de77008908112c612afa98ea0bbdd92e17 Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Tue, 2 Dec 2025 14:40:12 +0100 Subject: [PATCH 2/2] Fix indentation in version.php for Nextcloud version Signed-off-by: Andy Scherzinger --- version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.php b/version.php index 569c2f2e51374..659ac53cdeda0 100644 --- a/version.php +++ b/version.php @@ -44,7 +44,7 @@ '10.13' => true, '10.14' => true, '10.15' => true, - '10.16' => true, + '10.16' => true, ], ];