From 96614f37e3335f03930d7cb7110384d4ca9146d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <323649642+oc-tmueller@users.noreply.github.com> Date: Wed, 9 Sep 2026 17:18:53 +0200 Subject: [PATCH] fix: allow ownCloud 11 patch releases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit max-version was pinned to the exact patch release 11.0.0, so `occ app:enable testing` refuses to enable the app on any 11.0.x above it: App "QA testing" cannot be installed because the following dependencies are not fulfilled: ownCloud 11.0.0 or lower is required. Core CI clones this app and enables it in the Install Server step of every acceptance job, so bumping core's version.php to 11.0.1 turned every API and CLI acceptance suite red before a single test ran. The app is also shipped in the -qa release bundles, so the same failure would hit a QA tarball install. Pin the major version instead, which is what all 43 apps bundled in the ownCloud 11 release specs already do (`max-version="11"`). min-version stays at 10.0 — the app still supports the oc10 line. Refs: owncloud/core#41825 Co-Authored-By: Claude Opus 5 (1M context) Signed-off-by: Thomas Müller <323649642+oc-tmueller@users.noreply.github.com> --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index 3c7677d..e6bfb62 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -7,7 +7,7 @@ Joas Schilling 0.1.0 - + OCA\Testing\Command\CreateMultiUser