Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: urfave/cli

v2.4.6

24 Apr 11:58
v2.4.6
801780f

Choose a tag to compare

What's Changed

Full Changelog: v2.4.5...v2.4.6

Release 2.4.5

23 Apr 14:16
v2.4.5
6033c00

Choose a tag to compare

What's Changed

Full Changelog: v2.4.4...v2.4.5

Release 2.4.4

22 Apr 03:09
v2.4.4
f04607a

Choose a tag to compare

What's Changed

Full Changelog: v2.4.3...v2.4.4

Release 2.4.3

22 Apr 00:17
v2.4.3
372ee0a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.4.2...v2.4.3

Release 1.22.7

22 Apr 03:15
v1.22.7
1b4a05e

Choose a tag to compare

What's Changed

Full Changelog: v1.22.6...v1.22.7

Release 2.4.2

21 Apr 23:22
v2.4.2
2e3b8fc

Choose a tag to compare

What's Changed

Full Changelog: v2.4.1...v2.4.2

Release 2.4.1

21 Apr 23:02
v2.4.1
9e59db8

Choose a tag to compare

What's Changed

Full Changelog: v2.4.0...v2.4.1

Release 1.22.6

21 Apr 22:58
v1.22.6
b963ddc

Choose a tag to compare

What's Changed

Full Changelog: v1.22.5...v1.22.6

Release 2.4.0

15 Mar 07:32
7b2e609

Choose a tag to compare

These release notes were written for the git hash 7b2e609.

Fixed

  • Fixed incorrect Help Name in #1202 via @fxrlv
  • Fixed a bug where Context.Value did not look across all fileSets when looking for a named flag in #1210 via @jcgregorio
  • Fixed an issue with flags being set by parent context's (IntSlice, Int64Slice) in #1214 via @anicoll
  • Fixed a bug where App.Reader was not correctly propagated to the subcommands in #1225 via @Coderlane
  • Fixed example code input arguments in #1226 via @Coderlane
  • Fixed a bug where default value would changed when parsing slice flags in #1236 via @vipally
  • Fixed a bug where slice flag values don't append default values from ENV or a file in #1239 via @vipally
  • Fixed indentation on help text in #1279 via @rliebz
  • Fixed a Go 1.17 compatibility issue for a test case in #1277 via @GlenPickle
  • Fixed a nil pointer panic when getting cli/context flagSet in UsageError function in #1327 via @WUST-mengqinyu
  • Fix strconv.ParseFloat usage in #1335 via @kolyshkin
  • Improve handling of file flags in #1336 via @kolyshkin

Changed

Added

Release 2.3.0

01 Nov 13:30
09ac54c

Choose a tag to compare

These release notes were written for the git hash 09ac54c.

Fixed

  • Fixed a bug 'Unable to load file' in altsrc in #1086 via @akramarenkov
  • Fixed a bug where App.ErrWriter not being initialized in App.Setup() in #1100 via @Nokel81
  • Harmonize BeforeError handling in #1117 via @creekorful
  • Fixed a bug where the default value is not set in the Destination field in the StringSliceFlag in #1121 via @sgoroshko
  • Fixed a bug where the version flag was shown unexpectedly on commands with subcommands in #1153 via @lrioth
  • Fixed a bug where the default StringSlice values would be mutated in #1170 via @tych0
  • Fixed a bug where values set by environment var are not saved to existing stringslice reference in #1178 via @alexcb
  • Fixed a bug where fish completion did not respect TakesFile on PathFlags in #1198 via @ErinCall

Changed

  • Improved ZSH Autocompletion (List files on tab with no completion options) in #1130 via @oleorhagen
  • Improved help text rendering in #1175 via @imle

Added

  • Added support for Go 1.14 in #1085 via @lynncyrin
  • Added support for Powershell autocompletion in #1139 via @kirinnee
  • Added support for using Value with TimeStamp flag in #1160 via @vschettino
  • Added ShowSubcommandHelpAndExit to print help for the given subcommand and exit with exit code in #1183 via @knqyf263
  • Expose the constructor of MapInputSource type in #1194 via @igorrius
  • Added support for a App.Reader that defaults to os.Stdin via #1191 via @stellirin