Bump github.com/spf13/cobra from 1.3.0 to 1.6.1
Bumps github.com/spf13/cobra from 1.3.0 to 1.6.1.
Release notes
Sourced from github.com/spf13/cobra's releases.
v1.6.1
Bug fixes
🐛
- Fixes a panic when
AddGroup
isn't called beforeAddCommand(my-sub-command)
is executed. This can happen within more complex cobra file structures that have many differentinit
s to be executed. Now, the check for groups has been moved toExecuteC
and provides more flexibility when working with grouped commands -@marckhouzam
(and shout out to@aawsome
,@andig
and@KINGSABRI
for a deep investigation into this!👏🏼 )v1.6.0
Summer 2022 Release
Some exciting changes make their way to Cobra! Command completions continue to get better and better (including adding
--help
and--version
automatic flags to the completions list). Grouping is now possible in your help output as well! And you can now use theOnFinalize
method to cleanup things when all "work" is done. Checkout the full changelog below:
Features
🌠
- Add groups for commands in help:
@aawsome
@marckhouzam
#1003- Support for case-insensitive command names:
@YuviGold
#1802- Expose
ValidateRequiredFlags
andValidateFlagGroups
:@skeetwu
#1760- Add
--version
flag to help output:@fnickels
#1707- Add
--help
and--version
flag in completions:@marckhouzam
#1813- Add
OnFinalize
method:@yann-soubeyrand
#1788- Allow user to add completion for powershell alias:
@marckhouzam
#1621- Make
InitDefaultcompletionCmd
public:@gssbzn
#1467Deprecation
👎🏼
ExactValidArgs
is deprecated (but not being removed entirely). This is abit nuanced, so checkout #1643 for further information and the updateduser_guide.md
on how this may affect you (and how you can take advantage of the correct behavior in the validators):@umarcor
#1643Bug fixes
🐛
- Fix (bash-v2)
activeHelp
length check syntax:@scop
#1762- Fix correct command path in
see_also
for yaml documentation:@zregvart
#1771- Fix showing flags that shadow parent persistent flag in child help messaging:
@brianpursley
#1776Dependencies
🗳 ️
- Upgrade to use
gopkg.in/yaml.v3
:@tklauser
#1766Testing
🤔
- Test on Golang 1.19:
@umarcor
&@jpmcb
#1782- Renamed powershell completion tests:
@marckhouzam
#1803- Use
action/setup-go
cache:@umarcor
#1783- Add
workflow_dispatch
to CI actions:@umarcor
#1387- Add minimum GitHub token permissions for workflows:
@varunsh-coder
#1792Docs
✏ ️
- Fixup spelling for GitHub CLI:
@eltociear
#1744- Clarify
SetContext
documentation:@katexochen
#1748- Instruct user to
go install
for binary:@marckhouzam
#1726- User guide cleanup:
@marckhouzam
#1656- Document option to hide the default completion command:
@marckhouzam
#1779Misc
💭
- Add KubeVirt, CloudQuery, Cilium, Okteto, Zitadel, Allero to projects using cobra:
@maiqueb
#1741,@yevgenypats
#1742,@tklauser
#1745,@jLopezbarb
#1759,@fforootd
#1772,@dimabru
#1819- Use correct stale action
exempt
yaml keys:@jpmcb
#1800
... (truncated)
Commits
-
b43be99
Check for group presence after full initialization (#1839) (#1841) -
8607918
feat: make InitDefaultCompletionCmd public (#1467) -
2169adb
Add groups for commands in help (#1003) -
212ea40
Include --help and --version flag in completion (#1813) -
d4040ad
Allow user to add completion for powershell alias (#1621) -
23fc5e0
ci: add minimum GitHub token permissions for workflows (#1792) -
93d1913
Add OnFinalize method (#1788) -
07034fe
build(deps): bump actions/stale from 5 to 6 (#1815) -
3dc9761
Add allero to list of projects using cobra (#1819) -
7039e1f
Add '--version' flag to Help output (#1707) - Additional commits viewable in compare view