File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ const (
7070)
7171
7272// Version is the current kai CLI version
73- var Version = "0.11.3 "
73+ var Version = "0.11.4 "
7474
7575// verbose enables debug output when --verbose/-v flag or KAI_VERBOSE env var is set
7676var verbose bool
@@ -14132,6 +14132,7 @@ func runPush(cmd *cobra.Command, args []string) error {
1413214132 Old: oldTarget,
1413314133 New: r.TargetID,
1413414134 Force: pushForce,
14135+ Meta: r.Meta,
1413514136 })
1413614137 }
1413714138
Original file line number Diff line number Diff line change @@ -166,10 +166,11 @@ type RefUpdateResponse struct {
166166
167167// BatchRefUpdate represents a single ref update in a batch.
168168type BatchRefUpdate struct {
169- Name string `json:"name"`
170- Old []byte `json:"old,omitempty"`
171- New []byte `json:"new"`
172- Force bool `json:"force,omitempty"`
169+ Name string `json:"name"`
170+ Old []byte `json:"old,omitempty"`
171+ New []byte `json:"new"`
172+ Force bool `json:"force,omitempty"`
173+ Meta map [string ]string `json:"meta,omitempty"`
173174}
174175
175176// BatchRefUpdateRequest updates multiple refs atomically.
You can’t perform that action at this time.
0 commit comments