Skip to content
Closed
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.37

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 jump from v0 to v1 — API compatibility not verifiable without CI

This bump crosses a major version boundary (v0.0.877 → v1.0.37). In Go's semantic versioning, v0 means "no stability guarantees" while v1 is the first stable release. The library's API surface may have changed (renamed types, removed fields, changed method signatures). The Go generator uses this library extensively across 5 source files (generators/go/internal/coordinator/coordinator.go, generators/go/internal/cmd/cmd.go, generators/go/internal/generator/generator.go, generators/go/internal/generator/v2/generator.go, generators/go/internal/generator/sdk.go) — any breaking changes would manifest as compile errors caught by CI. The import path itself does not need updating since Go modules only require a /v2 suffix starting at v2+. This should be safe as long as CI passes.

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.37 h1:zwAR/xdl42WbspHPxK3cu6J1x3VqQm5ChBw9xSqtXvE=
github.com/fern-api/generator-exec-go v1.0.37/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