Skip to content
Open
Show file tree
Hide file tree
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 generators/go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/fern-api/fern-go
go 1.23.0

require (
github.com/fern-api/generator-exec-go v0.0.877
github.com/fern-api/generator-exec-go v1.0.38

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🚩 Major version bump from v0 to v1 of generator-exec-go dependency

This upgrades generator-exec-go from v0.0.877 (pre-stable) to v1.0.38 (stable). In Go module semantics, v0→v1 does not require a module path change (that only happens at v2+), so all existing imports like generatorexec "github.com/fern-api/generator-exec-go" remain valid. However, a v0→v1 transition conventionally signals API stabilization and may include breaking changes from the v0 series. The code compiles (CI would catch type mismatches), but it's worth confirming that all API surfaces used in generators/go/internal/coordinator/coordinator.go, generators/go/internal/cmd/cmd.go, generators/go/internal/generator/generator.go, and generators/go/internal/generator/sdk.go are compatible with v1.0.38's exported API. The /go.mod hash in go.sum is identical between both versions, which is unusual but valid if the upstream go.mod content didn't change.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

github.com/google/uuid v1.6.0
github.com/hmdsefi/gograph v0.4.0
github.com/stretchr/testify v1.9.0
Expand Down
4 changes: 2 additions & 2 deletions generators/go/go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
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=
github.com/fern-api/generator-exec-go v0.0.877 h1:tVcx2R0NCmyNasm9vGSxXxyUhdPKCv6W+o/rM+PWZZs=
github.com/fern-api/generator-exec-go v0.0.877/go.mod h1:Z7V5lZnaD8PblJAynK087662md2wBNhQcAl+W6IIydw=
github.com/fern-api/generator-exec-go v1.0.38 h1:6g4iRGJnEbaaC7LEa+LMscgVD0ujhU7cVxWaIijxlEw=
github.com/fern-api/generator-exec-go v1.0.38/go.mod h1:Z7V5lZnaD8PblJAynK087662md2wBNhQcAl+W6IIydw=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/hmdsefi/gograph v0.4.0 h1:eiWprSQ+lSogrcay0yvgvJWEMsVT/VsZ+NR4uW2k+2k=
Expand Down
Loading