Documentation ¶
Overview ¶
Package bufbreaking contains the breaking change detection functionality.
The primary entry point to this package is the Handler.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetAllRulesAndCategoriesV1 ¶
func GetAllRulesAndCategoriesV1() []string
GetAllRulesAndCategoriesV1 returns all rules and categories for v1 as a string slice.
This is used for validation purposes only.
func GetAllRulesAndCategoriesV1Beta1 ¶
func GetAllRulesAndCategoriesV1Beta1() []string
GetAllRulesAndCategoriesV1Beta1 returns all rules and categories for v1beta1 as a string slice.
This is used for validation purposes only.
func GetAllRulesV1Beta1 ¶
GetAllRulesV1Beta1 gets all known rules.
Should only be used for printing.
func RulesForConfig ¶
func RulesForConfig(config *bufbreakingconfig.Config) ([]bufcheck.Rule, error)
RulesForConfig returns the rules for a given config.
Should only be used for printing.
Types ¶
type Handler ¶
type Handler interface { // Check runs the breaking checks. // // The image should have source code info for this to work properly. The previousImage // does not need to have source code info. // // Images should be filtered with regards to imports before passing to this function. Check( ctx context.Context, config *bufbreakingconfig.Config, previousImage bufimage.Image, image bufimage.Image, ) ([]bufanalysis.FileAnnotation, error) }
Handler handles the main breaking functionality.
Directories ¶
Path | Synopsis |
---|---|
internal
|
|
bufbreakingbuild
Package bufbreakingbuild contains the RuleBuilders used by bufbreakingv*.
|
Package bufbreakingbuild contains the RuleBuilders used by bufbreakingv*. |
bufbreakingcheck
Package bufbreakingcheck impelements the check functions.
|
Package bufbreakingcheck impelements the check functions. |
bufbreakingv1
Package bufbreakingv1 contains the VersionSpec for v1.
|
Package bufbreakingv1 contains the VersionSpec for v1. |
bufbreakingv1beta1
Package bufbreakingv1beta1 contains the VersionSpec for v1beta1.
|
Package bufbreakingv1beta1 contains the VersionSpec for v1beta1. |
Click to show internal directories.
Click to hide internal directories.