From 9741d46f33aea0bf2cf53de71633f3c0f1cc41ca Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Fri, 10 Jan 2025 14:38:46 +0100 Subject: [PATCH 1/5] push to 0.11.2 --- Containerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index 4c9ae29..b0d3928 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,6 @@ -FROM docker.io/golang:1.22-alpine3.20 as builder +FROM docker.io/golang:1.22-alpine3.21 as builder -ENV VERSION=v0.11.0 +ENV VERSION=v0.11.2 RUN apk --no-cache add \ git \ @@ -18,7 +18,7 @@ RUN git checkout $VERSION RUN go build -o /build/bin/mautrix-whatsapp /build/mautrix-whatsapp/cmd/mautrix-whatsapp/ -FROM docker.io/thallian/confd-env:3.20-3.1.6.2 +FROM docker.io/thallian/confd-env:3.21-3.2.0.2 RUN addgroup -g 2222 matrix-bridge RUN adduser -h /var/lib/matrix-bridge -u 2222 -D -G matrix-bridge matrix-bridge From efefea607779e27e400f5e683c0469eda1ca6b62 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Wed, 5 Mar 2025 10:07:46 +0100 Subject: [PATCH 2/5] allow relaying --- Containerfile | 4 ++-- rootfs/etc/confd/templates/config.yaml.tmpl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Containerfile b/Containerfile index b0d3928..9ea938a 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,6 @@ -FROM docker.io/golang:1.22-alpine3.21 as builder +FROM docker.io/golang:1.23-alpine3.21 as builder -ENV VERSION=v0.11.2 +ENV VERSION=v0.11.3 RUN apk --no-cache add \ git \ diff --git a/rootfs/etc/confd/templates/config.yaml.tmpl b/rootfs/etc/confd/templates/config.yaml.tmpl index 163b24c..cde3080 100644 --- a/rootfs/etc/confd/templates/config.yaml.tmpl +++ b/rootfs/etc/confd/templates/config.yaml.tmpl @@ -168,10 +168,10 @@ bridge: relay: # Whether relay mode should be allowed. If allowed, the set-relay command can be used to turn any # authenticated user into a relaybot for that chat. - enabled: false + enabled: true # Should only admins be allowed to set themselves as relay users? # If true, non-admins can only set users listed in default_relays as relays in a room. - admin_only: true + admin_only: false # List of user login IDs which anyone can set as a relay, as long as the relay user is in the room. default_relays: [] # The formats to use when sending messages via the relaybot. From 95182e8f60459a649ca548ff4d86cda47ff71d72 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Wed, 23 Apr 2025 16:52:07 +0200 Subject: [PATCH 3/5] push to 0.12.0 --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 9ea938a..5d56d3a 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,6 @@ FROM docker.io/golang:1.23-alpine3.21 as builder -ENV VERSION=v0.11.3 +ENV VERSION=v0.12.0 RUN apk --no-cache add \ git \ From e4e3c3269b5fe563effe6e8e36b0ede5291c59e5 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Thu, 22 May 2025 11:36:39 +0200 Subject: [PATCH 4/5] push to 0.12.1 --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 5d56d3a..09203c7 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,6 @@ -FROM docker.io/golang:1.23-alpine3.21 as builder +FROM docker.io/golang:1.24-alpine3.21 as builder -ENV VERSION=v0.12.0 +ENV VERSION=v0.12.1 RUN apk --no-cache add \ git \ From 5905500460cc06b3fce97be2f4d526c7b3816abf Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Fri, 20 Jun 2025 08:55:25 +0200 Subject: [PATCH 5/5] push to 0.12.2 --- .gitea/workflows/container.yaml | 12 ------------ Containerfile | 2 +- Jenkinsfile | 1 + 3 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 .gitea/workflows/container.yaml create mode 100644 Jenkinsfile diff --git a/.gitea/workflows/container.yaml b/.gitea/workflows/container.yaml deleted file mode 100644 index e48b3fd..0000000 --- a/.gitea/workflows/container.yaml +++ /dev/null @@ -1,12 +0,0 @@ -name: Build Multiarch Container Image -on: [push] -jobs: - call-reusable-workflow: - uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main - with: - repository: ${{ gitea.repository }} - ref_name: ${{ gitea.ref_name }} - sha: ${{ gitea.sha }} - registry_url: ${{ secrets.REGISTRY_URL }} - registry_user: ${{ secrets.REGISTRY_USER }} - registry_pw: ${{ secrets.REGISTRY_PW }} diff --git a/Containerfile b/Containerfile index 09203c7..adaf6ee 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,6 @@ FROM docker.io/golang:1.24-alpine3.21 as builder -ENV VERSION=v0.12.1 +ENV VERSION=v0.12.2 RUN apk --no-cache add \ git \ diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..a8bfde8 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1 @@ +multiarch_container()