internal/changelog/kind.go (14 lines of code) (raw):
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License 2.0;
// you may not use this file except in compliance with the Elastic License 2.0.
package changelog
type Kind string
const (
// NOTE: Kind values should be aligned with supported type from doc.elastic.co
BreakingChange Kind = "breaking-change"
Deprecation Kind = "deprecation"
BugFix Kind = "bug-fix"
Enhancement Kind = "enhancement"
Feature Kind = "feature"
KnownIssue Kind = "known-issue"
Security Kind = "security"
Upgrade Kind = "upgrade"
Other Kind = "other"
// Unknown kind is used if no matching kind is found
Unknown Kind = "unknown"
)