v8.0.0
Breaking Changes
Buildutil now executes staticcheck and requires it being a dependency. This is an example of a tools.go
file:
//go:build tools
// +build tools
package main
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
import (
_ "github.com/rebuy-de/rebuy-go-sdk/v8/cmd/buildutil"
_ "github.com/rebuy-de/rebuy-go-sdk/v8/cmd/cdnmirror"
_ "honnef.co/go/tools/cmd/staticcheck"
)
This also means we have to fix any staticcheck violation.
What's Changed
Full Changelog: v7.1.0...v8.0.0