github.com/hashicorp/hcp-sdk-go@v0.94.0/.changelog/changelog.tmpl (about) 1 {{- if index .NotesByType "breaking-change" -}} 2 BREAKING CHANGES: 3 4 {{range index .NotesByType "breaking-change" -}} 5 * {{ template "note" . }} 6 {{ end -}} 7 {{- end -}} 8 9 {{- if .NotesByType.security }} 10 SECURITY: 11 12 {{range .NotesByType.security -}} 13 * {{ template "note" . }} 14 {{ end -}} 15 {{- end -}} 16 17 {{- if .NotesByType.feature }} 18 FEATURES: 19 20 {{range .NotesByType.feature -}} 21 * {{ template "note" . }} 22 {{ end -}} 23 {{- end -}} 24 25 {{- if .NotesByType.improvement }} 26 IMPROVEMENTS: 27 28 {{range .NotesByType.improvement -}} 29 * {{ template "note" . }} 30 {{ end -}} 31 {{- end -}} 32 33 {{- if .NotesByType.deprecation }} 34 DEPRECATIONS: 35 36 {{range .NotesByType.deprecation -}} 37 * {{ template "note" . }} 38 {{ end -}} 39 {{- end -}} 40 41 {{- if .NotesByType.bug }} 42 BUG FIXES: 43 44 {{range .NotesByType.bug -}} 45 * {{ template "note" . }} 46 {{ end -}} 47 {{- end -}}