2020-11-16 19:05:28 +00:00
|
|
|
{{- 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 -}}
|
|
|
|
|
2021-01-20 20:52:48 +00:00
|
|
|
{{- if .NotesByType.change }}
|
|
|
|
CHANGES:
|
|
|
|
|
|
|
|
{{range .NotesByType.change -}}
|
|
|
|
* {{ template "note" . }}
|
|
|
|
{{ end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
2023-01-06 14:32:22 +00:00
|
|
|
{{- if .NotesByType.feature }}
|
2020-11-16 19:05:28 +00:00
|
|
|
FEATURES:
|
|
|
|
|
|
|
|
{{range .NotesByType.feature -}}
|
|
|
|
* {{ template "note" . }}
|
|
|
|
{{ end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- if .NotesByType.improvement }}
|
|
|
|
IMPROVEMENTS:
|
|
|
|
|
|
|
|
{{range .NotesByType.improvement -}}
|
|
|
|
* {{ 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 -}}
|
|
|
|
|