changelog.yml
该集成的更新日志。
required
引自 package-spec 仓库。当规范更新时,此内容会自动更新。
##
## Describes the specification for the package's CHANGELOG file
##
spec:
# Everything under here follows JSON schema (https://schema.json.js.cn/), written as YAML for readability
type: array
items:
type: object
additionalProperties: false
properties:
version:
description: Package version.
$ref: "./manifest.spec.yml#/definitions/version"
changes:
description: List of changes in package version.
type: array
items:
type: object
additionalProperties: false
properties:
description:
description: Description of change.
type: string
examples:
- "Fix broken template"
type:
description: Type of change.
type: string
enum:
- "breaking-change"
- "bugfix"
- "enhancement"
link:
description: Link to issue or PR describing change in detail.
type: string
examples:
- "https://github.com/elastic/integrations/pull/550"
required:
- description
- type
- link
required:
- version
- changes