2023-07-18 15:48:35 +00:00
|
|
|
# Version changelog
|
|
|
|
|
|
|
|
## {{.Version}}
|
|
|
|
|
2023-07-27 10:47:38 +00:00
|
|
|
CLI:
|
|
|
|
{{- range .Changes}}
|
2023-07-18 15:48:35 +00:00
|
|
|
* {{.}}.
|
2023-07-27 10:47:38 +00:00
|
|
|
{{- end}}
|
|
|
|
|
|
|
|
Bundles:
|
|
|
|
* **FILL THIS IN MANUALLY BY MOVING RELEVANT ITEMS FROM ABOVE LIST**
|
|
|
|
|
|
|
|
Internal:
|
|
|
|
* **FILL THIS IN MANUALLY BY MOVING RELEVANT ITEMS FROM ABOVE LIST**
|
|
|
|
|
|
|
|
{{ if .ApiChanges -}}
|
2023-07-18 15:48:35 +00:00
|
|
|
API Changes:
|
2023-07-27 10:47:38 +00:00
|
|
|
{{- range .ApiChanges}}{{if or (eq .X "method") (eq .X "service")}}
|
2023-07-18 15:48:35 +00:00
|
|
|
* {{.Action}} {{template "what" .}}{{if .Extra}} {{.Extra}}{{with .Other}} {{template "what" .}}{{end}}{{end}}.
|
|
|
|
{{- end}}{{- end}}
|
|
|
|
|
2023-07-27 10:47:38 +00:00
|
|
|
OpenAPI commit {{.Sha}} ({{.Changed}})
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- if .DependencyUpdates }}
|
2023-07-18 15:48:35 +00:00
|
|
|
Dependency updates:
|
2023-07-27 10:47:38 +00:00
|
|
|
{{- range .DependencyUpdates}}
|
2023-07-18 15:48:35 +00:00
|
|
|
* {{.}}.
|
|
|
|
{{- end -}}
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
## {{.PrevVersion}}
|
|
|
|
|
|
|
|
{{- define "what" -}}
|
|
|
|
{{if eq .X "service" -}}
|
|
|
|
`databricks {{if .Service.IsAccounts}}account {{end -}}{{(.Service.TrimPrefix "account").KebabName}}` command group
|
|
|
|
{{- else if eq .X "method" -}}
|
|
|
|
`databricks {{if .Method.Service.IsAccounts}}account {{end -}}{{(.Method.Service.TrimPrefix "account").KebabName}} {{.Method.KebabName}}` command
|
|
|
|
{{- end}}
|
|
|
|
{{- end -}}
|