2020-08-06 21:15:29 +00:00
|
|
|
{{- if index .NotesByType "breaking-change" -}}
|
|
|
|
BREAKING CHANGES:
|
|
|
|
|
|
|
|
{{range index .NotesByType "breaking-change" -}}
|
2020-11-24 22:33:00 +00:00
|
|
|
* {{ template "note" . }}
|
2020-08-06 21:15:29 +00:00
|
|
|
{{ end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- if .NotesByType.security }}
|
|
|
|
SECURITY:
|
|
|
|
|
|
|
|
{{range .NotesByType.security -}}
|
|
|
|
* {{ template "note" . }}
|
|
|
|
{{ end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
2020-11-24 22:33:00 +00:00
|
|
|
{{- if .NotesByType.feature }}
|
2020-08-06 21:15:29 +00:00
|
|
|
FEATURES:
|
|
|
|
|
|
|
|
{{range .NotesByType.feature -}}
|
|
|
|
* {{ template "note" . }}
|
|
|
|
{{ end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
2022-02-18 03:21:47 +00:00
|
|
|
{{- $improvements := combineTypes .NotesByType.improvement .NotesByType.enhancement -}}
|
|
|
|
{{- if $improvements }}
|
2020-08-06 21:15:29 +00:00
|
|
|
IMPROVEMENTS:
|
|
|
|
|
2022-02-18 03:21:47 +00:00
|
|
|
{{range $improvements | sort -}}
|
2020-08-06 21:15:29 +00:00
|
|
|
* {{ template "note" . }}
|
|
|
|
{{ end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
2020-10-09 19:40:41 +00:00
|
|
|
{{- if .NotesByType.deprecation }}
|
|
|
|
DEPRECATIONS:
|
|
|
|
|
|
|
|
{{range .NotesByType.deprecation -}}
|
|
|
|
* {{ template "note" . }}
|
|
|
|
{{ end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
2020-08-06 21:15:29 +00:00
|
|
|
{{- if .NotesByType.bug }}
|
|
|
|
BUG FIXES:
|
|
|
|
|
|
|
|
{{range .NotesByType.bug -}}
|
|
|
|
* {{ template "note" . }}
|
|
|
|
{{ end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
2021-06-16 20:33:47 +00:00
|
|
|
{{- if .NotesByType.note }}
|
|
|
|
NOTES:
|
|
|
|
|
|
|
|
{{range .NotesByType.note -}}
|
|
|
|
* {{ template "note" . }}
|
|
|
|
{{ end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|