The core Cobra library no longer requires Viper and all of its indirect dependencies. This means that Cobra's dependency tree has been drastically thinned! The Viper dependency was included because of the cobra CLI generation tool. This tool has migrated to spf13/cobra-cli.
It's pretty unlikely you were importing and using the bootstrapping CLI tool as part of your application (after all, it's just a tool to get going with core cobra).
But if you were, replace occurrences of
"github.com/spf13/cobra/cobra"
with
"github.com/spf13/cobra-cli"
And in your go.mod, you'll want to also include this dependency:
github.com/spf13/cobra-cli v1.3.0
Again, the maintainers do not anticipate this being a breaking change to users of the core cobra library, so minimal work should be required for users to integrate with this new release. Moreover, this means the dependency tree for your application using Cobra should no longer require dependencies that were inherited from Viper. Huzzah! π₯³
In v1.2.0, we introduced a new model for completions. Thanks to everyone for trying it, giving feedback, and providing numerous fixes! Continue to work with the new model as the old one (as noted in code comments) will be deprecated in a coming release.
DisableFlagParsing now triggers custom completions for flag names #β1161
Fixed unbound variables in bash completions causing edge case errors #β1321
help completion formatting improvements & fixes #β1444
All completions now follow the help example: short desc are now capitalized and removes extra spacing from long description #β1455
Fixed mixed tab/spaces indentation in completion scripts. Now just 4 spaces #β1473
Support for different bash completion options. Bash completions v2 supports descriptions and requires descriptions to be removed for menu-complete, menu-complete-backward and insert-completions. These descriptions are now purposefully removed in support of this model. #β1509
Fix for invalid shell completions when using ~/.cobra.yaml. Log message Using config file: ~/.cobra.yaml now printed to stderr #β1510
Removes unnecessary trailing spaces from completion command descriptions #β1520
Option to hide default completion command #β1541
Remove __complete command for programs without subcommands #β1563
Generator changes βοΈ
Thanks to @βspf13 for providing a number of changes to the Cobra generator tool, streamlining it for new users!
The Cobra generator now won't automatically include Viper and cleans up a number of unused imports when not using Viper.
The Cobra generator's default license is now none
The Cobra generator now works with Go modules
Documentation to reflect these changes
New Features β
License can be specified by their SPDX identifiers #β1159
MatchAll allows combining several PositionalArgs to work in concert. This now allows for enabling composing PositionalArgs#β896
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | require | minor | `v1.2.1` -> `v1.4.0` |
---
### Release Notes
<details>
<summary>spf13/cobra</summary>
### [`v1.4.0`](https://github.com/spf13/cobra/releases/v1.4.0)
[Compare Source](https://github.com/spf13/cobra/compare/v1.3.0...v1.4.0)
### Winter 2022 Release βοΈ
Another season, another release!
#### Goodbye viper! π π
The core Cobra library no longer requires Viper and all of its indirect dependencies. This means that Cobra's dependency tree has been drastically thinned! The Viper dependency was included because of the `cobra` CLI generation tool. [This tool has migrated to `spf13/cobra-cli`](https://github.com/spf13/cobra-cli/releases/tag/v1.3.0).
It's *pretty unlikely* you were importing and using **the bootstrapping CLI tool** as part of your application (after all, it's just a tool to get going with core `cobra`).
But if you were, replace occurrences of
"github.com/spf13/cobra/cobra"
with
"github.com/spf13/cobra-cli"
And in your `go.mod`, you'll want to also include this dependency:
github.com/spf13/cobra-cli v1.3.0
Again, the maintainers *do not anticipate* this being a breaking change to users of the core `cobra` library, so minimal work should be required for users to integrate with this new release. Moreover, this means the dependency tree for your application using Cobra should no longer require dependencies that were inherited from Viper. Huzzah! π₯³
If you'd like to read more
- issue: https://github.com/spf13/cobra/issues/1597
- PR: https://github.com/spf13/cobra/pull/1604
#### Documentation π
- Update Go Doc link and badge in README: https://github.com/spf13/cobra/pull/1593
- Fix to install command, now targets `@latest`: https://github.com/spf13/cobra/pull/1576
- Added MAINTAINERS file: https://github.com/spf13/cobra/pull/1545
#### Other π
- Bumped license year to 2022 in golden files: https://github.com/spf13/cobra/pull/1575
- Added Pixie to projects: https://github.com/spf13/cobra/pull/1581
- Updated labeler for new labeling scheme: https://github.com/spf13/cobra/pull/1613 & syntax fix: https://github.com/spf13/cobra/pull/1624
Shoutout to our awesome contributors helping to make this cobra release possible!!
[@​spf13](https://github.com/spf13) [@​marckhouzam](https://github.com/marckhouzam) [@​johnSchnake](https://github.com/johnSchnake) [@​jpmcb](https://github.com/jpmcb) [@​liggitt](https://github.com/liggitt) [@​umarcor](https://github.com/umarcor) [@​hiljusti](https://github.com/hiljusti) [@​marians](https://github.com/marians) [@​shyim](https://github.com/shyim) [@​htroisi](https://github.com/htroisi)
### [`v1.3.0`](https://github.com/spf13/cobra/releases/v1.3.0)
[Compare Source](https://github.com/spf13/cobra/compare/v1.2.1...v1.3.0)
### v1.3.0 - The Fall 2021 release π
#### Completion fixes & enhancements ππΌ
In `v1.2.0`, we introduced a new model for completions. Thanks to everyone for trying it, giving feedback, and providing numerous fixes! Continue to work with the new model as the old one (as noted in code comments) will be deprecated in a coming release.
- `DisableFlagParsing` now triggers custom completions for flag names [#​1161](https://github.com/spf13/cobra/issues/1161)
- Fixed unbound variables in bash completions causing edge case errors [#​1321](https://github.com/spf13/cobra/issues/1321)
- `help` completion formatting improvements & fixes [#​1444](https://github.com/spf13/cobra/issues/1444)
- All completions now follow the `help` example: short desc are now capitalized and removes extra spacing from long description [#​1455](https://github.com/spf13/cobra/issues/1455)
- Typo fixes in bash & zsh completions [#​1459](https://github.com/spf13/cobra/issues/1459)
- Fixed mixed tab/spaces indentation in completion scripts. Now just 4 spaces [#​1473](https://github.com/spf13/cobra/issues/1473)
- Support for different bash completion options. Bash completions v2 supports descriptions and requires descriptions to be removed for `menu-complete`, `menu-complete-backward` and `insert-completions`. These descriptions are now purposefully removed in support of this model. [#​1509](https://github.com/spf13/cobra/issues/1509)
- Fix for invalid shell completions when using `~/.cobra.yaml`. Log message `Using config file: ~/.cobra.yaml` now printed to stderr [#​1510](https://github.com/spf13/cobra/issues/1510)
- Removes unnecessary trailing spaces from completion command descriptions [#​1520](https://github.com/spf13/cobra/issues/1520)
- Option to hide default `completion` command [#​1541](https://github.com/spf13/cobra/issues/1541)
- Remove `__complete` command for programs without subcommands [#​1563](https://github.com/spf13/cobra/issues/1563)
#### Generator changes βοΈ
Thanks to [@​spf13](https://github.com/spf13) for providing a number of changes to the Cobra generator tool, streamlining it for new users!
- The Cobra generator now *won't* automatically include Viper and cleans up a number of unused imports when not using Viper.
- The Cobra generator's default license is now `none`
- The Cobra generator now works with Go modules
- Documentation to reflect these changes
#### New Features β
- License can be specified by their SPDX identifiers [#​1159](https://github.com/spf13/cobra/issues/1159)
- `MatchAll` allows combining several PositionalArgs to work in concert. This now allows for enabling composing `PositionalArgs` [#​896](https://github.com/spf13/cobra/issues/896)
#### Bug Fixes π
- Fixed multiple error message from cobra `init` boilerplates [#​1463](https://github.com/spf13/cobra/issues/1463) [#​1552](https://github.com/spf13/cobra/issues/1552) [#​1557](https://github.com/spf13/cobra/issues/1557)
#### Testing π
- Now testing golang 1.16.x and 1.17.x in CI [#​1425](https://github.com/spf13/cobra/issues/1425)
- Fix for running diff test to ignore CR for windows [#​949](https://github.com/spf13/cobra/issues/949)
- Added helper functions and reduced code reproduction in `args_test` [#​1426](https://github.com/spf13/cobra/issues/1426)
- Now using official `golangci-lint` github action [#​1477](https://github.com/spf13/cobra/issues/1477)
#### Security π
- Added GitHub dependabot [#​1427](https://github.com/spf13/cobra/issues/1427)
- Now using Viper `v1.10.0`
- There is a known CVE in an *indirect* dependency from `viper`: https://github.com/spf13/cobra/issues/1538. This will be patched in a future release
#### Documentation π
- Multiple projects added to the `projects_using_cobra.md` file: [#​1377](https://github.com/spf13/cobra/issues/1377) [#​1501](https://github.com/spf13/cobra/issues/1501) [#​1454](https://github.com/spf13/cobra/issues/1454)
- Removed ToC from main readme file as it is now automagically displayed by GitHub [#​1429](https://github.com/spf13/cobra/issues/1429)
- Documentation correct for when the `--author` flag is specified [#​1009](https://github.com/spf13/cobra/issues/1009)
- `shell_completions.md` has an easier to use snippet for copying and pasting shell completions [#​1372](https://github.com/spf13/cobra/issues/1372)
#### Other π
- Bump version of `cpuguy83/go-md2man` to v2.0.1 [#​1460](https://github.com/spf13/cobra/issues/1460)
- Removed `lesser` typo from the GPL-2.0 license [#​880](https://github.com/spf13/cobra/issues/880)
- Fixed spelling errors [#​1514](https://github.com/spf13/cobra/issues/1514)
*Thank you to all our amazing contributors* βππ
</details>
---
### Configuration
π **Schedule**: At any time (no schedule defined).
π¦ **Automerge**: Enabled.
β» **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
π **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
CSRBot
changed title from chore(deps): update module github.com/spf13/cobra to v1.3.0 to chore(deps): update module github.com/spf13/cobra to v1.4.02022-03-12 23:43:22 +01:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
This PR contains the following updates:
v1.2.1->v1.4.0Release Notes
spf13/cobra
v1.4.0Compare Source
Winter 2022 Release βοΈ
Another season, another release!
Goodbye viper! π π
The core Cobra library no longer requires Viper and all of its indirect dependencies. This means that Cobra's dependency tree has been drastically thinned! The Viper dependency was included because of the
cobraCLI generation tool. This tool has migrated tospf13/cobra-cli.It's pretty unlikely you were importing and using the bootstrapping CLI tool as part of your application (after all, it's just a tool to get going with core
cobra).But if you were, replace occurrences of
with
And in your
go.mod, you'll want to also include this dependency:Again, the maintainers do not anticipate this being a breaking change to users of the core
cobralibrary, so minimal work should be required for users to integrate with this new release. Moreover, this means the dependency tree for your application using Cobra should no longer require dependencies that were inherited from Viper. Huzzah! π₯³If you'd like to read more
Documentation π
@latest: https://github.com/spf13/cobra/pull/1576Other π
Shoutout to our awesome contributors helping to make this cobra release possible!!
@βspf13 @βmarckhouzam @βjohnSchnake @βjpmcb @βliggitt @βumarcor @βhiljusti @βmarians @βshyim @βhtroisi
v1.3.0Compare Source
v1.3.0 - The Fall 2021 release π
Completion fixes & enhancements ππΌ
In
v1.2.0, we introduced a new model for completions. Thanks to everyone for trying it, giving feedback, and providing numerous fixes! Continue to work with the new model as the old one (as noted in code comments) will be deprecated in a coming release.DisableFlagParsingnow triggers custom completions for flag names #β1161helpcompletion formatting improvements & fixes #β1444helpexample: short desc are now capitalized and removes extra spacing from long description #β1455menu-complete,menu-complete-backwardandinsert-completions. These descriptions are now purposefully removed in support of this model. #β1509~/.cobra.yaml. Log messageUsing config file: ~/.cobra.yamlnow printed to stderr #β1510completioncommand #β1541__completecommand for programs without subcommands #β1563Generator changes βοΈ
Thanks to @βspf13 for providing a number of changes to the Cobra generator tool, streamlining it for new users!
noneNew Features β
MatchAllallows combining several PositionalArgs to work in concert. This now allows for enabling composingPositionalArgs#β896Bug Fixes π
initboilerplates #β1463 #β1552 #β1557Testing π
args_test#β1426golangci-lintgithub action #β1477Security π
v1.10.0viper: https://github.com/spf13/cobra/issues/1538. This will be patched in a future releaseDocumentation π
projects_using_cobra.mdfile: #β1377 #β1501 #β1454--authorflag is specified #β1009shell_completions.mdhas an easier to use snippet for copying and pasting shell completions #β1372Other π
cpuguy83/go-md2manto v2.0.1 #β1460lessertypo from the GPL-2.0 license #β880Thank you to all our amazing contributors βππ
Configuration
π Schedule: At any time (no schedule defined).
π¦ Automerge: Enabled.
β» Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
π Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.
b6dd2855fetoea1fa7355cea1fa7355ctod32bf60bcfd32bf60bcfto5c10ca73f65c10ca73f6to48462f383548462f3835to88bccaf639chore(deps): update module github.com/spf13/cobra to v1.3.0to chore(deps): update module github.com/spf13/cobra to v1.4.088bccaf639tof24d751a1ef24d751a1eto76de7ebabb76de7ebabbto9d9519d0089d9519d008tob7724091e6b7724091e6toeaa444f837