From 448b341640deb93e1fe7fb8c7f439086c19035cb Mon Sep 17 00:00:00 2001 From: Robin Windey Date: Mon, 24 Nov 2025 20:25:01 +0000 Subject: [PATCH] Prepare Nextcloud 33 * Master will be NC33 * Update deps * Update info.xml --- appinfo/info.xml | 4 ++-- requirements.txt | 4 ++-- test/test_harp_integration.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index 6ac8ec8..96c2aad 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -13,7 +13,7 @@ It contains a small REST API that encapsulates the OCRmyPDF functionality. For more information, see https://github.com/R0Wi-DEV/workflow_ocr_backend. ]]> - 1.32.0-dev + 1.33.0-dev agpl Robin Windey Workflow OCR Backend @@ -25,7 +25,7 @@ For more information, see https://github.com/R0Wi-DEV/workflow_ocr_backend. https://github.com/R0Wi-DEV/workflow_ocr_backend/issues https://github.com/R0Wi-DEV/workflow_ocr_backend.git - + diff --git a/requirements.txt b/requirements.txt index 1b85973..efa7274 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -nc-py-api[app]==0.21.1 -ocrmypdf==16.11.0 +nc-py-api[app]==0.22.0 +ocrmypdf==16.12.0 python-multipart==0.0.20 \ No newline at end of file diff --git a/test/test_harp_integration.py b/test/test_harp_integration.py index e107679..1efd18d 100644 --- a/test/test_harp_integration.py +++ b/test/test_harp_integration.py @@ -102,7 +102,7 @@ def test_harp_deploys_and_configures_frp(tmp_path): "harp-shared-key": shared_key, "EX-APP-ID": exapp_name, "AUTHORIZATION-APP-API": "test-token", - "AA-VERSION": env_vars.get("AA_VERSION", "32"), + "AA-VERSION": env_vars.get("AA_VERSION", "33"), } # Wait for HaRP agent to be ready via ExApps app_api @@ -262,7 +262,7 @@ def _wait_for_agent_ready_via_exapps(http_client: httpx.Client, exapps_base: str # Ask HaRP to use the local (built-in) Docker Engine remote port. probe_headers.setdefault("docker-engine-port", str(LOCAL_DOCKER_ENGINE_PORT)) # AA-VERSION isn't relevant for app_api ping but keep a sane default - probe_headers.setdefault("AA-VERSION", "32") + probe_headers.setdefault("AA-VERSION", "33") ping_path = "/exapps/app_api/v1.41/_ping" deadline = time.time() + AGENT_TIMEOUT