72 lines
1.1 KiB
Cheetah
72 lines
1.1 KiB
Cheetah
{{- if index .NotesByType "breaking-change" -}}
|
|
BREAKING CHANGES:
|
|
|
|
{{range index .NotesByType "breaking-change" -}}
|
|
* {{ template "note" . }}
|
|
{{ end -}}
|
|
{{- end -}}
|
|
|
|
{{- if .NotesByType.security }}
|
|
SECURITY:
|
|
|
|
{{range .NotesByType.security -}}
|
|
* {{ template "note" . }}
|
|
{{ end -}}
|
|
{{- end -}}
|
|
|
|
{{- if .NotesByType.feature }}
|
|
FEATURES:
|
|
|
|
{{range .NotesByType.feature -}}
|
|
* {{ template "note" . }}
|
|
{{ end -}}
|
|
{{- end -}}
|
|
|
|
{{- if .NotesByType.enhancement }}
|
|
ENHANCEMENT:
|
|
|
|
{{range .NotesByType.enhancement -}}
|
|
* {{ template "note" . }}
|
|
{{ end -}}
|
|
{{- end -}}
|
|
|
|
{{- if .NotesByType.deprecation }}
|
|
DEPRECATIONS:
|
|
|
|
{{range .NotesByType.deprecation -}}
|
|
* {{ template "note" . }}
|
|
{{ end -}}
|
|
{{- end -}}
|
|
|
|
{{- if .NotesByType.bug }}
|
|
BUG FIXES:
|
|
|
|
{{range .NotesByType.bug -}}
|
|
* {{ template "note" . }}
|
|
{{ end -}}
|
|
{{- end -}}
|
|
|
|
{{- if .NotesByType.doc }}
|
|
DOCS:
|
|
|
|
{{range .NotesByType.doc -}}
|
|
* {{ template "note" . }}
|
|
{{ end -}}
|
|
{{- end -}}
|
|
|
|
{{- if .NotesByType.dependency }}
|
|
DEPENDENCIES:
|
|
|
|
{{range .NotesByType.dependency -}}
|
|
* {{ template "note" . }}
|
|
{{ end -}}
|
|
{{- end -}}
|
|
|
|
{{- if .NotesByType.note }}
|
|
NOTES:
|
|
|
|
{{range .NotesByType.note -}}
|
|
* {{ template "note" . }}
|
|
{{ end -}}
|
|
{{- end -}}
|