Skip to content

v8.0.0

Compare
Choose a tag to compare
@svenwltr svenwltr released this 20 Mar 13:08
· 28 commits to main since this release
b05ceae

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