vendor/github.com/spf13/cobra/CHANGELOG.md
changeset 260 445e01aede7e
parent 259 db4911b0c721
child 261 270cc4dda0c5
equal deleted inserted replaced
259:db4911b0c721 260:445e01aede7e
     1 # Cobra Changelog
       
     2 
       
     3 ## v1.1.3
       
     4 
       
     5 * **Fix:** release-branch.cobra1.1 only: Revert "Deprecate Go < 1.14" to maintain backward compatibility
       
     6 
       
     7 ## v1.1.2
       
     8 
       
     9 ### Notable Changes
       
    10 
       
    11 * Bump license year to 2021 in golden files (#1309) @Bowbaq
       
    12 * Enhance PowerShell completion with custom comp (#1208) @Luap99
       
    13 * Update gopkg.in/yaml.v2 to v2.4.0: The previous breaking change in yaml.v2 v2.3.0 has been reverted, see go-yaml/yaml#670
       
    14 * Documentation readability improvements (#1228 etc.) @zaataylor etc.
       
    15 * Use golangci-lint: Repair warnings and errors resulting from linting (#1044) @umarcor
       
    16 
       
    17 ## v1.1.1
       
    18 
       
    19 * **Fix:** yaml.v2 2.3.0 contained a unintended breaking change. This release reverts to yaml.v2 v2.2.8 which has recent critical CVE fixes, but does not have the breaking changes. See https://github.com/spf13/cobra/pull/1259 for context.
       
    20 * **Fix:** correct internal formatting for go-md2man v2 (which caused man page generation to be broken). See https://github.com/spf13/cobra/issues/1049 for context.
       
    21 
       
    22 ## v1.1.0
       
    23 
       
    24 ### Notable Changes
       
    25 
       
    26 * Extend Go completions and revamp zsh comp (#1070)
       
    27 * Fix man page doc generation - no auto generated tag when `cmd.DisableAutoGenTag = true` (#1104) @jpmcb
       
    28 * Add completion for help command (#1136)
       
    29 * Complete subcommands when TraverseChildren is set (#1171)
       
    30 * Fix stderr printing functions (#894)
       
    31 * fix: fish output redirection (#1247)
       
    32 
       
    33 ## v1.0.0
       
    34 
       
    35 Announcing v1.0.0 of Cobra. 🎉
       
    36 
       
    37 ### Notable Changes
       
    38 * Fish completion (including support for Go custom completion) @marckhouzam
       
    39 * API (urgent): Rename BashCompDirectives to ShellCompDirectives @marckhouzam
       
    40 * Remove/replace SetOutput on Command - deprecated @jpmcb
       
    41 * add support for autolabel stale PR @xchapter7x
       
    42 * Add Labeler Actions @xchapter7x
       
    43 * Custom completions coded in Go (instead of Bash) @marckhouzam
       
    44 * Partial Revert of #922 @jharshman
       
    45 * Add Makefile to project @jharshman
       
    46 * Correct documentation for InOrStdin @desponda
       
    47 * Apply formatting to templates @jharshman
       
    48 * Revert change so help is printed on stdout again @marckhouzam
       
    49 * Update md2man to v2.0.0 @pdf
       
    50 * update viper to v1.4.0 @umarcor
       
    51 * Update cmd/root.go example in README.md @jharshman