github.com/databricks/cli@v0.203.0/.codegen/changelog.md.tmpl (about)

     1  # Version changelog
     2  
     3  ## {{.Version}}
     4  
     5  CLI:
     6  {{- range .Changes}}
     7   * {{.}}.
     8  {{- end}}
     9  
    10  Bundles:
    11   * **FILL THIS IN MANUALLY BY MOVING RELEVANT ITEMS FROM ABOVE LIST**
    12  
    13  Internal:
    14   * **FILL THIS IN MANUALLY BY MOVING RELEVANT ITEMS FROM ABOVE LIST**
    15  
    16  {{ if .ApiChanges -}}
    17  API Changes:
    18  {{- range .ApiChanges}}{{if or (eq .X "method") (eq .X "service")}}
    19   * {{.Action}} {{template "what" .}}{{if .Extra}} {{.Extra}}{{with .Other}} {{template "what" .}}{{end}}{{end}}.
    20  {{- end}}{{- end}}
    21  
    22  OpenAPI commit {{.Sha}} ({{.Changed}})
    23  {{- end }}
    24  
    25  {{- if .DependencyUpdates }}
    26  Dependency updates:
    27  {{- range .DependencyUpdates}}
    28   * {{.}}.
    29  {{- end -}}
    30  {{end}}
    31  
    32  ## {{.PrevVersion}}
    33  
    34  {{- define "what" -}}
    35      {{if eq .X "service" -}}
    36          `databricks {{if .Service.IsAccounts}}account {{end -}}{{(.Service.TrimPrefix "account").KebabName}}` command group
    37      {{- else if eq .X "method" -}}
    38          `databricks {{if .Method.Service.IsAccounts}}account {{end -}}{{(.Method.Service.TrimPrefix "account").KebabName}} {{.Method.KebabName}}` command
    39      {{- end}}
    40  {{- end -}}