Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/tuannvm/haproxy-mcp-server
go 1.24.2

require (
github.com/mark3labs/mcp-go v0.25.0
github.com/mark3labs/mcp-go v0.34.0
github.com/spf13/viper v1.20.1
Comment on lines 5 to 7
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Pipeline is red – go.mod / go.sum are out of sync

CI fails with “go.mod or go.sum is not tidy”.
go get github.com/mark3labs/[email protected] updates both files, but only go.mod was committed. Please run go mod tidy (or go get -u ./...) and commit the resulting go.sum/go.mod diff so the module graph is in a consistent state.

You can reproduce exactly what CI checks with:


🏁 Script executed:

#!/usr/bin/env bash
set -euo pipefail
go mod tidy          # updates go.mod / go.sum
git --no-pager diff  # expect no diff for a clean state

Length of output: 2538


Sync go.sum with updated dependencies

CI is failing because go.mod and go.sum are out of sync. Running:

go mod tidy
git --no-pager diff

produces the following diff in go.sum—upgrading github.com/mark3labs/mcp-go from v0.25.0 to v0.34.0:

--- a/go.sum
+++ b/go.sum
@@ -14,8 +14,8 @@
 github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
-github.com/mark3labs/mcp-go v0.25.0 h1:UUpcMT3L5hIhuDy7aifj4Bphw4Pfx1Rf8mzMXDe8RQw=
-github.com/mark3labs/mcp-go v0.25.0/go.mod h1:rXqOudj/djTORU/ThxYx8fqEVj/5pvTuuebQ2RC7uk4=
+github.com/mark3labs/mcp-go v0.34.0 h1:eWy7WBGvhk6EyAAyVzivTCprE52iXJwNtvHV6Cv3bR0=
+github.com/mark3labs/mcp-go v0.34.0/go.mod h1:rXqOudj/djTORU/ThxYx8fqEVj/5pvTuuebQ2RC7uk4=

Please commit these changes to go.sum so that the module graph is consistent, then verify no further diffs with:

go mod tidy
git --no-pager diff --exit-code
🤖 Prompt for AI Agents
In go.mod around lines 5 to 7, the go.sum file is out of sync with the updated
dependencies, causing CI failures. Run 'go mod tidy' locally to update go.sum
with the new dependency versions, then commit the updated go.sum file. Finally,
verify no further changes by running 'go mod tidy' again followed by 'git
--no-pager diff --exit-code' to ensure consistency.

)

Expand Down
Loading