From 7a73696010cb7ea5a461f904860fb98194a376a7 Mon Sep 17 00:00:00 2001 From: bugclerk Date: Mon, 6 Apr 2026 12:18:43 +0000 Subject: [PATCH 1/3] Update updates-patch-minor --- ix-dev/community/openclaw/app.yaml | 4 ++-- ix-dev/community/openclaw/ix_values.yaml | 2 +- ix-dev/community/paperless-ngx/app.yaml | 2 +- ix-dev/community/paperless-ngx/ix_values.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ix-dev/community/openclaw/app.yaml b/ix-dev/community/openclaw/app.yaml index 146382646e7..2d80cd81eb7 100644 --- a/ix-dev/community/openclaw/app.yaml +++ b/ix-dev/community/openclaw/app.yaml @@ -1,4 +1,4 @@ -app_version: 2026.4.2 +app_version: 2026.4.5 capabilities: [] categories: - ai @@ -30,4 +30,4 @@ sources: - https://github.com/openclaw/openclaw title: OpenClaw train: community -version: 1.0.12 +version: 1.0.13 diff --git a/ix-dev/community/openclaw/ix_values.yaml b/ix-dev/community/openclaw/ix_values.yaml index a72caa76a40..9c5e016f641 100644 --- a/ix-dev/community/openclaw/ix_values.yaml +++ b/ix-dev/community/openclaw/ix_values.yaml @@ -1,7 +1,7 @@ images: image: repository: alpine/openclaw - tag: 2026.4.2 + tag: 2026.4.5 container_utils_image: repository: ixsystems/container-utils tag: 1.0.2 diff --git a/ix-dev/community/paperless-ngx/app.yaml b/ix-dev/community/paperless-ngx/app.yaml index 11306af6936..d391743d8c3 100644 --- a/ix-dev/community/paperless-ngx/app.yaml +++ b/ix-dev/community/paperless-ngx/app.yaml @@ -71,4 +71,4 @@ sources: - https://github.com/paperless-ngx/paperless-ngx title: Paperless-ngx train: community -version: 1.6.11 +version: 1.6.12 diff --git a/ix-dev/community/paperless-ngx/ix_values.yaml b/ix-dev/community/paperless-ngx/ix_values.yaml index ffe17b3858e..627e7c6b4b8 100644 --- a/ix-dev/community/paperless-ngx/ix_values.yaml +++ b/ix-dev/community/paperless-ngx/ix_values.yaml @@ -19,7 +19,7 @@ images: tag: "3.3.0.0-full" gotenberg_image: repository: gotenberg/gotenberg - tag: "8.29.1" + tag: "8.30.0" postgres_upgrade_image: repository: ixsystems/postgres-upgrade tag: 1.2.4 From 48c1d4273932b02618ad0157935a413fa138cb01 Mon Sep 17 00:00:00 2001 From: Stavros Kois Date: Mon, 6 Apr 2026 15:25:34 +0300 Subject: [PATCH 2/3] revert --- ix-dev/community/openclaw/app.yaml | 4 ++-- ix-dev/community/openclaw/ix_values.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ix-dev/community/openclaw/app.yaml b/ix-dev/community/openclaw/app.yaml index 2d80cd81eb7..146382646e7 100644 --- a/ix-dev/community/openclaw/app.yaml +++ b/ix-dev/community/openclaw/app.yaml @@ -1,4 +1,4 @@ -app_version: 2026.4.5 +app_version: 2026.4.2 capabilities: [] categories: - ai @@ -30,4 +30,4 @@ sources: - https://github.com/openclaw/openclaw title: OpenClaw train: community -version: 1.0.13 +version: 1.0.12 diff --git a/ix-dev/community/openclaw/ix_values.yaml b/ix-dev/community/openclaw/ix_values.yaml index 9c5e016f641..a72caa76a40 100644 --- a/ix-dev/community/openclaw/ix_values.yaml +++ b/ix-dev/community/openclaw/ix_values.yaml @@ -1,7 +1,7 @@ images: image: repository: alpine/openclaw - tag: 2026.4.5 + tag: 2026.4.2 container_utils_image: repository: ixsystems/container-utils tag: 1.0.2 From 3005669132dc11546f3983000fdfc3cd7ef853ec Mon Sep 17 00:00:00 2001 From: Stavros Kois Date: Mon, 6 Apr 2026 15:32:07 +0300 Subject: [PATCH 3/3] gotenberg fix healthcheck --- ix-dev/community/paperless-ngx/templates/docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ix-dev/community/paperless-ngx/templates/docker-compose.yaml b/ix-dev/community/paperless-ngx/templates/docker-compose.yaml index dccc74ffcf5..d9e2efe6a23 100644 --- a/ix-dev/community/paperless-ngx/templates/docker-compose.yaml +++ b/ix-dev/community/paperless-ngx/templates/docker-compose.yaml @@ -95,7 +95,7 @@ {% do gotenberg_container.environment.add_env("API_PORT", values.consts.gotenberg_port) %} {% do gotenberg_container.environment.add_env("CHROMIUM_DISABLE_JAVASCRIPT", values.paperless.gotenberg_chromium_disable_javascript|string|lower) %} {% do gotenberg_container.environment.add_env("CHROMIUM_ALLOW_LIST", values.paperless.gotenberg_chromium_allow_list_regex) %} - {% do gotenberg_container.healthcheck.set_test("curl", {"port": values.consts.gotenberg_port, "path":"/health"}) %} + {% do gotenberg_container.healthcheck.set_test("http", {"port": values.consts.gotenberg_port, "path":"/health"}) %} {% do paperless_container.environment.add_env("PAPERLESS_TIKA_ENABLED", 1) %} {% do paperless_container.environment.add_env("PAPERLESS_TIKA_ENDPOINT", tika_container.get_url()) %}