Skip to content

Tags: azu/cli

Tags

v2.21.3-pre.0

Toggle v2.21.3-pre.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cli#6831 from cli/select-default-blank

avoid panic when bad default given to Select

v2.21.2

Toggle v2.21.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cli#6803 from cli/fix-6792

select base repo correctly when only one remote

v2.21.2-pre0

Toggle v2.21.2-pre0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cli#6803 from cli/fix-6792

select base repo correctly when only one remote

v2.21.1

Toggle v2.21.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cli#6779 from cli/fix-comments-author

Fix fetching issue/PR comments

v2.21.0

Toggle v2.21.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cli#6776 from cli/goreleaser-fix

Fix signing Windows exe on release

v2.21.0-pre.5

Toggle v2.21.0-pre.5's commit message

Verified

This commit was signed with the committer’s verified signature.
mislav Mislav Marohnić
downgrade ubuntu

v2.21.0-pre.4

Toggle v2.21.0-pre.4's commit message

Verified

This commit was signed with the committer’s verified signature.
mislav Mislav Marohnić
pin osslsigncode

v2.21.0-pre.3

Toggle v2.21.0-pre.3's commit message

Verified

This commit was signed with the committer’s verified signature.
mislav Mislav Marohnić
TMP disable exe signing hook

v2.21.0-pre.2

Toggle v2.21.0-pre.2's commit message

Verified

This commit was signed with the committer’s verified signature.
mislav Mislav Marohnić
enable hook output

v2.21.0-pre.1

Toggle v2.21.0-pre.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Supported passing nested JSON arrays/objects to api command via fields (

cli#6614)

Examples:

	-f labels[]=bug -f labels[]=p1
        #=> { "labels": ["bug", "p1"] }

	-f branch[name]=patch-1 -F branch[protected]=true
        #=> { "branch": { "name": "patch-1", "protected": true }

	-f labels[][name]=bug-1 -f labels[][color]=red
        #=> { "labels": [{ "name": "bug-1", "color": "red" }] }