v0.9.0
What's Changed
APIs
The CRD function in bootstrap has been deprecated (but not removed) and replaced with CRDs.
The only difference in signature is the initial context.Context argument:
Before:
func CRD(restConfig *rest.Config, crdFS fs.ReadDirFS, dir string) error {After:
func CRDs(ctx context.Context, restConfig *rest.Config, crdFS fs.ReadDirFS, dir string) errorWe recommend updating to the new function, but the old one continues to work.
Full Changelog: v0.8.0...v0.9.0