diff --git a/.env.example b/.env.example index 362b864..4d95858 100644 --- a/.env.example +++ b/.env.example @@ -5,5 +5,5 @@ TRAEFIK_NETWORK=internal TRAEFIK_CERT_RESOLVER=netcup # Keep these two values paired when deploying a newer published toolbox release. -TOOLBOX_RELEASE_VERSION=0.20.0 -TOOLBOX_RELEASE_SHA256=450618902a1ee87405da463881e6f51f685691c2081259aff9c25a4aa6fe22ed +TOOLBOX_RELEASE_VERSION=0.20.2 +TOOLBOX_RELEASE_SHA256=66f02f95092ef80b9e49cda91c8401400e2ee1d2c640ab20a3a7810bf265c2c7 diff --git a/Containerfile.release b/Containerfile.release index f42caa2..1c78ab7 100644 --- a/Containerfile.release +++ b/Containerfile.release @@ -2,8 +2,8 @@ ARG NGINX_IMAGE=nginxinc/nginx-unprivileged:1.31.3-alpine@sha256:18d67281256ded3 FROM ${NGINX_IMAGE} AS release -ARG TOOLBOX_RELEASE_VERSION=0.20.1 -ARG TOOLBOX_RELEASE_SHA256=19d5c7f78d5b781abae0fbe05095899c21ba24adb43f9b4a2272c95a2e0a933c +ARG TOOLBOX_RELEASE_VERSION=0.20.2 +ARG TOOLBOX_RELEASE_SHA256=66f02f95092ef80b9e49cda91c8401400e2ee1d2c640ab20a3a7810bf265c2c7 ARG TOOLBOX_RELEASE_BASE_URL=https://git.add-ideas.de/lotobo/toolbox-portal/releases/download RUN set -eu; \ @@ -43,6 +43,7 @@ RUN set -eu; \ test -f /tmp/toolbox/apps/diff/toolbox-app.json; \ test -f /tmp/toolbox/apps/time/toolbox-app.json; \ test -f /tmp/toolbox/apps/text/toolbox-app.json; \ + test -f /tmp/toolbox/apps/translator/toolbox-app.json; \ test -f /tmp/toolbox/apps/unicode/toolbox-app.json; \ test -f /tmp/toolbox/apps/flow/toolbox-app.json; \ test -f /tmp/toolbox/apps/subtitle/toolbox-app.json; \ diff --git a/compose.example.yaml b/compose.example.yaml index 1d5a919..8ba39ee 100644 --- a/compose.example.yaml +++ b/compose.example.yaml @@ -3,7 +3,7 @@ services: build: context: . dockerfile: Containerfile - image: git.add-ideas.de/lotobo/toolbox:0.20.0 + image: git.add-ideas.de/lotobo/toolbox:0.20.2 restart: unless-stopped read_only: true ports: diff --git a/compose.yaml b/compose.yaml index 6156413..589207a 100644 --- a/compose.yaml +++ b/compose.yaml @@ -6,9 +6,9 @@ services: context: . dockerfile: Containerfile.release args: - TOOLBOX_RELEASE_VERSION: "${TOOLBOX_RELEASE_VERSION:-0.20.1}" - TOOLBOX_RELEASE_SHA256: "${TOOLBOX_RELEASE_SHA256:-19d5c7f78d5b781abae0fbe05095899c21ba24adb43f9b4a2272c95a2e0a933c}" - image: "git.add-ideas.de/lotobo/toolbox:${TOOLBOX_RELEASE_VERSION:-0.20.1}" + TOOLBOX_RELEASE_VERSION: "${TOOLBOX_RELEASE_VERSION:-0.20.2}" + TOOLBOX_RELEASE_SHA256: "${TOOLBOX_RELEASE_SHA256:-66f02f95092ef80b9e49cda91c8401400e2ee1d2c640ab20a3a7810bf265c2c7}" + image: "git.add-ideas.de/lotobo/toolbox:${TOOLBOX_RELEASE_VERSION:-0.20.2}" restart: unless-stopped read_only: true tmpfs: diff --git a/release/toolbox.lock.json b/release/toolbox.lock.json index ded4c70..7261e95 100644 --- a/release/toolbox.lock.json +++ b/release/toolbox.lock.json @@ -1,7 +1,7 @@ { "$schema": "./toolbox-release-lock.schema.json", "schemaVersion": 1, - "releaseVersion": "0.20.1", + "releaseVersion": "0.20.2", "portalVersion": "0.2.23", "catalogue": { "id": "de.add-ideas.toolbox", diff --git a/scripts/deployment.test.ts b/scripts/deployment.test.ts index f5cd3bf..b53d7ef 100644 --- a/scripts/deployment.test.ts +++ b/scripts/deployment.test.ts @@ -53,6 +53,7 @@ const expectedAppTargets = [ 'diff', 'time', 'text', + 'translator', 'unicode', 'flow', 'subtitle',