commit 8c454c4800c6b632054531931dbeb2e57c46ef73
Author: selfhoster1312 <selfhoster1312@kl.netlib.re>
Date: Fri Oct 10 15:20:51 2025 +0000
diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml
index 3408dea..910f35b 100644
--- a/.github/workflows/development.yml
+++ b/.github/workflows/development.yml
@@ -428 +428 @@ jobs:
- - name: go test ./... -mod=vendor (go version ${{ matrix.go-version }})
- run: go test ./... -mod=vendor
+ - name: go test ./... (go version ${{ matrix.go-version }})
+ run: go test ./...
build-upload:
diff --git a/Dockerfile b/Dockerfile
index 0874b30..de3d05e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -37 +37 @@ FROM alpine AS builder
COPY . /go/src/matterbridge
RUN apk --no-cache add go git \
- && CGO_ENABLED=0 go build -mod vendor -ldflags "-X github.com/42wim/matterbridge/version.GitHash=$(git log --pretty=format:'%h' -n 1)" -o /bin/matterbridge
+ && CGO_ENABLED=0 go build -ldflags "-X github.com/42wim/matterbridge/version.GitHash=$(git log --pretty=format:'%h' -n 1)" -o /bin/matterbridge
FROM alpine
RUN apk --no-cache add ca-certificates mailcap
diff --git a/changelog.md b/changelog.md
index 16bd884..ab593f4 100644
--- a/changelog.md
+++ b/changelog.md
@@ -13 +111 @@
+# unreleased
+
+## BREAKING
+
+- Main development repository is now https://github.com/matterbridge-org/matterbridge
+- History was rewritten to remove the vendor/ folder, easing PR reviews and making the
+ repository much lighter. [See issue #5](https://github.com/matterbridge-org/community/issues/5).
+
# v1.26.0
## New features