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
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ require (
go.yaml.in/yaml/v2 v2.4.4 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
go4.org v0.0.0-20260112195520-a5071408f32f // indirect
golang.org/x/net v0.54.0 // indirect
golang.org/x/net v0.56.0 // indirect

@cubic-dev-ai cubic-dev-ai Bot Aug 25, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1: go.mod was bumped to golang.org/x/net v0.56.0 and golang.org/x/text v0.39.0, but go.sum was not updated to match. No hashes (h1 or /go.mod) for these versions exist in go.sum; the old v0.54.0/v0.37.0 entries remain. Because Go verifies modules against go.sum by default (-mod=readonly), go build fails with 'missing go.sum entry' until go.sum is regenerated. Run go mod tidy (or go mod download) and commit the resulting go.sum changes in the same PR.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At go.mod, line 102:

<comment>go.mod was bumped to golang.org/x/net v0.56.0 and golang.org/x/text v0.39.0, but go.sum was not updated to match. No hashes (h1 or /go.mod) for these versions exist in go.sum; the old v0.54.0/v0.37.0 entries remain. Because Go verifies modules against go.sum by default (-mod=readonly), go build fails with 'missing go.sum entry' until go.sum is regenerated. Run `go mod tidy` (or `go mod download`) and commit the resulting go.sum changes in the same PR.</comment>

<file context>
@@ -99,9 +99,9 @@ require (
 	go.yaml.in/yaml/v3 v3.0.4 // indirect
 	go4.org v0.0.0-20260112195520-a5071408f32f // indirect
-	golang.org/x/net v0.54.0 // indirect
+	golang.org/x/net v0.56.0 // indirect
 	golang.org/x/oauth2 v0.36.0 // indirect
-	golang.org/x/text v0.37.0 // indirect
</file context>
Fix with cubic

@cubic-dev-ai cubic-dev-ai Bot Aug 25, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2: This upgrades both modules without their new checksums in go.sum; builds using -mod=readonly fail with missing go.sum entries. Regenerate and commit go.sum with these upgrades.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At go.mod, line 102:

<comment>This upgrades both modules without their new checksums in `go.sum`; builds using `-mod=readonly` fail with missing go.sum entries. Regenerate and commit `go.sum` with these upgrades.</comment>

<file context>
@@ -99,9 +99,9 @@ require (
 	go.yaml.in/yaml/v3 v3.0.4 // indirect
 	go4.org v0.0.0-20260112195520-a5071408f32f // indirect
-	golang.org/x/net v0.54.0 // indirect
+	golang.org/x/net v0.56.0 // indirect
 	golang.org/x/oauth2 v0.36.0 // indirect
-	golang.org/x/text v0.37.0 // indirect
</file context>
Fix with cubic

golang.org/x/oauth2 v0.36.0 // indirect
golang.org/x/text v0.37.0 // indirect
golang.org/x/text v0.39.0 // indirect
golang.org/x/time v0.15.0 // indirect
google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af // indirect
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
Expand Down