mirror of https://github.com/databricks/cli.git
30 lines
877 B
Cheetah
30 lines
877 B
Cheetah
# Version changelog
|
|
|
|
## {{.Version}}
|
|
|
|
{{range .Changes -}}
|
|
* {{.}}.
|
|
{{end}}{{- if .ApiChanges}}
|
|
API Changes:
|
|
{{range .ApiChanges}}{{if or (eq .X "method") (eq .X "service")}}
|
|
* {{.Action}} {{template "what" .}}{{if .Extra}} {{.Extra}}{{with .Other}} {{template "what" .}}{{end}}{{end}}.
|
|
{{- end}}{{- end}}
|
|
|
|
OpenAPI SHA: {{.Sha}}, Date: {{.Changed}}
|
|
{{- end}}{{if .DependencyUpdates}}
|
|
Dependency updates:
|
|
{{range .DependencyUpdates}}
|
|
* {{.}}.
|
|
{{- 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 -}}
|