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 -}}
|
|
|
|
|
|
|
|
{{- if .NotesByType.improvement }}
|
|
|
|
IMPROVEMENTS:
|
|
|
|
|
|
|
|
{{range .NotesByType.improvement -}}
|
|
|
|
* {{ 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 -}}
|
|
|
|
|