Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
]]></description>
<version>1.32.0-dev</version>
<version>1.33.0-dev</version>
<licence>agpl</licence>
<author mail="ro.windey@gmail.com" homepage="https://github.com/R0Wi">Robin Windey</author>
<namespace>Workflow OCR Backend</namespace>
Expand All @@ -25,7 +25,7 @@ For more information, see https://github.com/R0Wi-DEV/workflow_ocr_backend.
<bugs>https://github.com/R0Wi-DEV/workflow_ocr_backend/issues</bugs>
<repository type="git">https://github.com/R0Wi-DEV/workflow_ocr_backend.git</repository>
<dependencies>
<nextcloud min-version="32" max-version="32"/>
<nextcloud min-version="33" max-version="33"/>
</dependencies>
<external-app>
<docker-install>
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions test/test_harp_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down