From be6faa7b422cd31854c89006e9d1fe502972d112 Mon Sep 17 00:00:00 2001 From: Patrick Niebeling Date: Thu, 13 Aug 2026 23:15:43 +0200 Subject: [PATCH] Allow PHP 8.5 occ upgrade refused to install the app on a PHP 8.5 instance: Exception: App "Array" cannot be installed because the following dependencies are not fulfilled: PHP wird in einer frueheren Version als 8.4 benoetigt. That is the max-version="8.4" in appinfo/info.xml, not a real incompatibility -- nothing in this app is bounded above by 8.4. Raise it to 8.5 and add 8.5 to the php-lint matrix, so CI covers the version the server actually runs instead of stopping one below it. --- .gitea/workflows/build-main.yml | 2 +- appinfo/info.xml | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build-main.yml b/.gitea/workflows/build-main.yml index 898a6bf..be4bf28 100644 --- a/.gitea/workflows/build-main.yml +++ b/.gitea/workflows/build-main.yml @@ -15,7 +15,7 @@ jobs: runs-on: gitea-runner-server03 strategy: matrix: - php-version: ['8.2', '8.3', '8.4'] + php-version: ['8.2', '8.3', '8.4', '8.5'] steps: - uses: actions/checkout@v7 diff --git a/appinfo/info.xml b/appinfo/info.xml index edd380d..b2ff1d1 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -28,7 +28,7 @@ This app lets every user configure their own Deck automation workflows from Pers A background job periodically evaluates all enabled workflows and moves cards whose due date has passed, using Deck's own internal PHP classes only (no HTTP/OCS calls). ]]> - 0.2.0 + 0.2.1 agpl Patrick Niebeling WorkflowDeckAutomation @@ -36,7 +36,7 @@ A background job periodically evaluates all enabled workflows and moves cards wh tools https://github.com/pniebeling/workflow_deck_automation/issues - + pgsql sqlite mysql diff --git a/package.json b/package.json index d6b05fc..cf9aa05 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "workflow_deck_automation", - "version": "0.2.0", + "version": "0.2.1", "private": true, "type": "module", "description": "Automates moving overdue Deck cards between stacks, configurable per user.",