You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build(cmd/forge): require a forge that has the symbols it calls
cmd/forge carries no replace directives on purpose, so it builds against
the published root module rather than the working tree. It was pinned to
v1.8.2, which predates four things plugins/client.go and client_diff.go
already call: SpecParser.ParseFileUnresolved, FilterResult, PathFilter and
ChangeKind. ParseFileUnresolved first shipped in v1.9.5.
The result was a cmd/forge that could not build for anyone, including
go install github.com/xraph/forge/cmd/forge@latest, while the workspace
hid it locally by resolving the root from disk.
Pinned to v1.9.13, the current release. No replace added.
0 commit comments