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
A new Go build tag syntax in the form `//go:build` was added in Go 1.17.
In Go 1.18, this new syntax replaced the old syntax, which used the form
`// +build`. The fabric-gateway code retained both build tags for
backwards compatibility. Since the minimum supported Go version is now
1.24, the old format is obsolete and now flags a linting error. This
change removes the old style build tags.
Signed-off-by: Mark S. Lewis <[email protected]>
0 commit comments