From 1935df02e79036b1318cde4ed7f0f2edafd5544e Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Mon, 29 Jun 2026 00:48:20 +0000 Subject: [PATCH 01/10] chore: upgrade collabora to 25.04.10.3.1, onlyoffice to 9.4.1.1 --- compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yml b/compose.yml index 420fc0a..e7bf2ca 100644 --- a/compose.yml +++ b/compose.yml @@ -273,7 +273,7 @@ services: - "backupbot.backup=${ENABLE_BACKUPS:-true}" collabora: - image: collabora/code:25.04.9.4.1 + image: collabora/code:25.04.10.3.1 entrypoint: > sh -c " export password=\"$$(cat /run/secrets/collabora_p)\" && @@ -311,7 +311,7 @@ services: - "traefik.http.routers.${STACK_NAME}_collabora.middlewares=${STACK_NAME}_collabora-cors" onlyoffice: - image: onlyoffice/documentserver-de:9.3.1.2 + image: onlyoffice/documentserver-de:9.4.1.1 healthcheck: test: [ "CMD", "curl", "-f", "http://localhost/hosting/discovery" ] interval: 30s From 119bbae3357e1939006216cd2171037fca010c33 Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Fri, 3 Jul 2026 05:04:46 +0000 Subject: [PATCH 02/10] chore: upgrade collabora to 26.04.2.1.1, onlyoffice to 9.4.1.2 --- compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yml b/compose.yml index e7bf2ca..7e3ee07 100644 --- a/compose.yml +++ b/compose.yml @@ -273,7 +273,7 @@ services: - "backupbot.backup=${ENABLE_BACKUPS:-true}" collabora: - image: collabora/code:25.04.10.3.1 + image: collabora/code:26.04.2.1.1 entrypoint: > sh -c " export password=\"$$(cat /run/secrets/collabora_p)\" && @@ -311,7 +311,7 @@ services: - "traefik.http.routers.${STACK_NAME}_collabora.middlewares=${STACK_NAME}_collabora-cors" onlyoffice: - image: onlyoffice/documentserver-de:9.4.1.1 + image: onlyoffice/documentserver-de:9.4.1.2 healthcheck: test: [ "CMD", "curl", "-f", "http://localhost/hosting/discovery" ] interval: 30s From 1e578b071255aa434bf50a9e7e72c5b699e7d0de Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Fri, 24 Jul 2026 04:50:01 +0000 Subject: [PATCH 03/10] chore: upgrade drive to v0.20.0, web (nginx) to 1.31.3 --- compose.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compose.yml b/compose.yml index 7e3ee07..8bd00ef 100644 --- a/compose.yml +++ b/compose.yml @@ -95,7 +95,7 @@ services: app: user: "${DOCKER_USER:-1000}" - image: lasuite/drive-frontend:v0.19.0 + image: lasuite/drive-frontend:v0.20.0 networks: - backend deploy: @@ -116,7 +116,7 @@ services: backend: user: ${DOCKER_USER:-1000} - image: lasuite/drive-backend:v0.19.0 + image: lasuite/drive-backend:v0.20.0 command: [ "gunicorn", "-c", "/usr/local/etc/gunicorn/drive.py", "drive.wsgi:application" ] entrypoint: > sh -c "if [ \"$$AUTO_MIGRATIONS\" = \"true\" ]; then /migrate.sh; fi && exec /abra-entrypoint.sh /usr/local/bin/entrypoint \"$$@\"" -- @@ -145,7 +145,7 @@ services: celery: user: ${DOCKER_USER:-1000} - image: lasuite/drive-backend:v0.19.0 + image: lasuite/drive-backend:v0.20.0 networks: - backend command: [ "celery", "-A", "drive.celery_app", "worker", "-l", "INFO" ] @@ -167,7 +167,7 @@ services: celery-beat: user: ${DOCKER_USER:-1000} - image: lasuite/drive-backend:v0.19.0 + image: lasuite/drive-backend:v0.20.0 networks: - backend command: [ "celery", "-A", "drive.celery_app", "beat", "-l", "INFO", "--schedule", "/tmp/celerybeat-schedule" ] @@ -350,7 +350,7 @@ services: web: - image: nginx:1.31.2 + image: nginx:1.31.3 configs: - source: nginx_conf target: /etc/nginx/conf.d/default.conf From 9beb089d107a559bb32b0925f8cd91eda085944f Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Fri, 24 Jul 2026 08:35:16 +0000 Subject: [PATCH 04/10] chore: revert collabora to 25.04.9.4.1 (26.04.2.x crashes in-deploy: sh not found in $PATH) --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index 8bd00ef..cba00c0 100644 --- a/compose.yml +++ b/compose.yml @@ -273,7 +273,7 @@ services: - "backupbot.backup=${ENABLE_BACKUPS:-true}" collabora: - image: collabora/code:26.04.2.1.1 + image: collabora/code:25.04.9.4.1 entrypoint: > sh -c " export password=\"$$(cat /run/secrets/collabora_p)\" && From ed2617026b037f313d5b5e236c7fa4324d65c94a Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Tue, 4 Aug 2026 00:59:32 +0000 Subject: [PATCH 05/10] chore: upgrade redis to 8.8.1 --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index cba00c0..e9429db 100644 --- a/compose.yml +++ b/compose.yml @@ -214,7 +214,7 @@ services: - postgres_p redis: - image: redis:8.8.0 + image: redis:8.8.1 healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 10s From 077ea217e11ac9eea6ade38c7dd1b5b218aea1a7 Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Tue, 4 Aug 2026 01:13:16 +0000 Subject: [PATCH 06/10] chore: upgrade redis to 8.10.0 --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index e9429db..4208b6c 100644 --- a/compose.yml +++ b/compose.yml @@ -214,7 +214,7 @@ services: - postgres_p redis: - image: redis:8.8.1 + image: redis:8.10.0 healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 10s From 543a017fdd90be3e879ed619bc2bbaf3a975af73 Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Tue, 4 Aug 2026 01:22:47 +0000 Subject: [PATCH 07/10] chore: pin redis to 8.8.1 (security patch; prefer over 8.10.0 minor for sidecar cache) --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index 4208b6c..e9429db 100644 --- a/compose.yml +++ b/compose.yml @@ -214,7 +214,7 @@ services: - postgres_p redis: - image: redis:8.10.0 + image: redis:8.8.1 healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 10s From c3b6b722327e45b0fbae04b223dc2857c5979540 Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Fri, 7 Aug 2026 04:24:16 +0000 Subject: [PATCH 08/10] chore: upgrade lasuite-drive redis to 8.10.0, collabora to 25.04.10.3.1 --- compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yml b/compose.yml index e9429db..7018e18 100644 --- a/compose.yml +++ b/compose.yml @@ -214,7 +214,7 @@ services: - postgres_p redis: - image: redis:8.8.1 + image: redis:8.10.0 healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 10s @@ -273,7 +273,7 @@ services: - "backupbot.backup=${ENABLE_BACKUPS:-true}" collabora: - image: collabora/code:25.04.9.4.1 + image: collabora/code:25.04.10.3.1 entrypoint: > sh -c " export password=\"$$(cat /run/secrets/collabora_p)\" && From a5e67e55dee94eff07b5b0d4d4cdf9f3f7b19b47 Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Sat, 15 Aug 2026 19:11:06 +0000 Subject: [PATCH 09/10] chore: upgrade lasuite/drive to v0.21.0 --- compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compose.yml b/compose.yml index 7018e18..b48a3fc 100644 --- a/compose.yml +++ b/compose.yml @@ -95,7 +95,7 @@ services: app: user: "${DOCKER_USER:-1000}" - image: lasuite/drive-frontend:v0.20.0 + image: lasuite/drive-frontend:v0.21.0 networks: - backend deploy: @@ -116,7 +116,7 @@ services: backend: user: ${DOCKER_USER:-1000} - image: lasuite/drive-backend:v0.20.0 + image: lasuite/drive-backend:v0.21.0 command: [ "gunicorn", "-c", "/usr/local/etc/gunicorn/drive.py", "drive.wsgi:application" ] entrypoint: > sh -c "if [ \"$$AUTO_MIGRATIONS\" = \"true\" ]; then /migrate.sh; fi && exec /abra-entrypoint.sh /usr/local/bin/entrypoint \"$$@\"" -- @@ -145,7 +145,7 @@ services: celery: user: ${DOCKER_USER:-1000} - image: lasuite/drive-backend:v0.20.0 + image: lasuite/drive-backend:v0.21.0 networks: - backend command: [ "celery", "-A", "drive.celery_app", "worker", "-l", "INFO" ] @@ -167,7 +167,7 @@ services: celery-beat: user: ${DOCKER_USER:-1000} - image: lasuite/drive-backend:v0.20.0 + image: lasuite/drive-backend:v0.21.0 networks: - backend command: [ "celery", "-A", "drive.celery_app", "beat", "-l", "INFO", "--schedule", "/tmp/celerybeat-schedule" ] From 8ac8c5a293173ae1b129cb674990ec4dd4252006 Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Fri, 21 Aug 2026 02:57:20 +0000 Subject: [PATCH 10/10] chore: upgrade lasuite-drive redis to 8.10.1, web (nginx) to 1.31.4 --- compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yml b/compose.yml index b48a3fc..45ce7c1 100644 --- a/compose.yml +++ b/compose.yml @@ -214,7 +214,7 @@ services: - postgres_p redis: - image: redis:8.10.0 + image: redis:8.10.1 healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 10s @@ -350,7 +350,7 @@ services: web: - image: nginx:1.31.3 + image: nginx:1.31.4 configs: - source: nginx_conf target: /etc/nginx/conf.d/default.conf