From 3329ff3088647e925edcc34f74973ffb3ca2a36c Mon Sep 17 00:00:00 2001 From: Mathias Date: Wed, 1 Jul 2026 23:06:35 +0200 Subject: [PATCH] =?UTF-8?q?fix(deps):=20migrate=20mcp-chassis=20to=20git.d?= =?UTF-8?q?-ma.be=20path=20=E2=80=94=20unblock=20CD=20build=20(#74)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The image build's `go mod download` failed on the stale gitea.d-ma.be/mathias/mcp-chassis import (the gitea→git rename; the server no longer serves a matching go-import meta tag). This is the latent #74 breakage flagged for gitea-mcp, triggered by the first clean rebuild since the rename (the #42 push). Point at git.d-ma.be/mathias/mcp-chassis v0.2.0 + go mod tidy. Unblocks deploying the #42 create_project_from_template fix. gitea-mcp's own module path stays gitea.d-ma.be (main module, not fetched — separate cleanup). Refs #74, #42. Co-Authored-By: Claude Opus 4.8 (1M context) --- cmd/gitea-mcp/main.go | 2 +- go.mod | 4 ++-- go.sum | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/gitea-mcp/main.go b/cmd/gitea-mcp/main.go index 38586b0..d73981f 100644 --- a/cmd/gitea-mcp/main.go +++ b/cmd/gitea-mcp/main.go @@ -7,7 +7,7 @@ import ( "os" "strings" - chassisauth "gitea.d-ma.be/mathias/mcp-chassis/auth" + chassisauth "git.d-ma.be/mathias/mcp-chassis/auth" "gitea.d-ma.be/mathias/gitea-mcp/internal/allowlist" "gitea.d-ma.be/mathias/gitea-mcp/internal/auth" diff --git a/go.mod b/go.mod index eb7cd6d..8156b72 100644 --- a/go.mod +++ b/go.mod @@ -3,13 +3,12 @@ module gitea.d-ma.be/mathias/gitea-mcp go 1.26.2 require ( + git.d-ma.be/mathias/mcp-chassis v0.2.0 github.com/hashicorp/golang-lru/v2 v2.0.7 - github.com/lestrrat-go/jwx/v2 v2.1.6 github.com/stretchr/testify v1.11.1 ) require ( - gitea.d-ma.be/mathias/mcp-chassis v0.1.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect github.com/goccy/go-json v0.10.3 // indirect @@ -17,6 +16,7 @@ require ( github.com/lestrrat-go/httpcc v1.0.1 // indirect github.com/lestrrat-go/httprc v1.0.6 // indirect github.com/lestrrat-go/iter v1.0.2 // indirect + github.com/lestrrat-go/jwx/v2 v2.1.6 // indirect github.com/lestrrat-go/option v1.0.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/segmentio/asm v1.2.0 // indirect diff --git a/go.sum b/go.sum index 1b55aba..3dd8130 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -gitea.d-ma.be/mathias/mcp-chassis v0.1.0 h1:8RXO34+n7Vu8HnUMagars6fc4oemqRpMu7MVtjaj4qY= -gitea.d-ma.be/mathias/mcp-chassis v0.1.0/go.mod h1:ajbLlwr2L7FAN3TBU39KucZkKJM02wTbKbDKDEW2YvE= +git.d-ma.be/mathias/mcp-chassis v0.2.0 h1:6fLmb7xqRa2nNVWsHaUbbfbArgDXJw/gDhb09clBIjo= +git.d-ma.be/mathias/mcp-chassis v0.2.0/go.mod h1:Ks7EK2UnGAN0H3rJjKUxUagX8/ZBdtLrOlcUbv0RwH8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=