aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-04-28Merge remote-tracking branch 'upstream/master'Hu Jun
2025-04-22Merge pull request #425 from eth-p/error-structsTomas Aschan
feat: Use structs for errors returned by pflag.
2025-04-21test: Add tests for error structsEthan P.
2025-04-21feat: Add getters to error structsEthan P.
2025-04-21feat: Use error structs for most returned errorsEthan P.
This allows callers to differentiate between error types without having to parse the error message string.
2025-04-21test: Commonly-returned error messagesEthan P.
Add tests to ensure invalid arguments and unknown flag error messages don't change.
2025-04-01Merge pull request #422 from ↵Tomas Aschan
MidnightRocket/fix-default-is-zerovalue-for-generic-value-type Fix defaultIsZeroValue check for generic Value types
2025-04-01Improve readability for error in TestPrintDefaultsMidnightRocket
2025-04-01Add better test for defaultIsZeroValue for generic Value typeMidnightRocket
2025-03-18Fix defaultIsZeroValue check for generic Value typeMidnightRocket
2025-03-08Merge remote-tracking branch 'upstream/master'Hu Jun
2025-01-09Merge pull request #419 from spf13/civ1.0.6Márk Sági-Kazár
add github actions
2025-01-09disable unsupported dependency graph for nowMark Sagi-Kazar
Signed-off-by: Mark Sagi-Kazar <[email protected]>
2025-01-09fix govetMark Sagi-Kazar
Signed-off-by: Mark Sagi-Kazar <[email protected]>
2025-01-09add github actionsMark Sagi-Kazar
Signed-off-by: Mark Sagi-Kazar <[email protected]>
2024-12-27add support equivalent to golang flag.TextVar(), also fixes the test failure ↵Hu Jun
as described in #368
2024-12-05fix: add test for argument length checkshawn
2024-07-23fix: correct argument length check in FlagSet.Parseshawn
Signed-off-by: shawn <[email protected]>
2024-06-12flag: Emulate stdlib behavior and do not print ErrHelpTravis Cline
2022-11-19Remove Redundant "Unknown-Flag" ErrorBhargav Ravuri
Signed-off-by: Bhargav Ravuri <[email protected]>
2021-06-04allow for blank ip addresses (#316)David Rivera
2020-10-09Add IPNetSlice and unit tests (#170)rpothier
2020-09-10remove dead code for checking error nil (#282)Yash
2020-06-10Update flag_test.goBill Johnson
2020-06-02Switching from whitelist to Allowlist terminologyBill Johnson
2020-05-04Add exported functions to preserve `pkg/flag` compatibility (#220)Ryan McKern
* Rename out() to Output() This brings behavior inline with go's flag library, and allows for printing output directly to whatever the current FlagSet is using for output. This change will make it easier to correctly emit output to stdout or stderr (e.g. a user has requested a help screen, which should emit to stdout since it's the desired outcome). * improve compat. with pkg/flag by adding Name() pkg/flag has a public `Name()` function, which returns the name of the flag set when called. This commit adds that function, as well as a test for it. * Streamline testing Name() Testing `Name()` will move into its own explicit test, instead of running inline during `TestAddFlagSet()`. Co-authored-by: Chloe Kudryavtsev <[email protected]> Co-authored-by: Chloe Kudryavtsev <[email protected]>
2019-09-18Merge pull request #219 from cfromknecht/fix-modv1.0.5-rc1v1.0.5Mitch Connors
Remove require pflag v1.0.3
2019-09-17Remove require pflag v1.0.3Conner Fromknecht
2019-09-17Fix typo in go.modv1.0.4Mitch Connors
2019-09-17Merge pull request #216 from therealmitchconnors/elegantMitch Connors
Implement SliceValue for better list semantics
2019-09-10gofmttherealmitchconnors
2019-09-10Add SliceValue Commentstherealmitchconnors
2019-09-05Expand SliceValue support to all slice and array types.therealmitchconnors
2019-08-16Add first SliceValue implementationstherealmitchconnors
2019-08-13Added String-To-Int64 option parsing (#211)Alex Besogonov
2019-08-13Merge pull request #201 from Fedosin/fix_descriptionsMitch Connors
Fix descriptions for StringSlice functions
2019-08-13Merge pull request #210 from dsbrng25b/masterMitch Connors
Fix package doc
2019-06-16Fix package docDavid Schneider
Signed-off-by: David Schneider <[email protected]>
2019-02-11Fix descriptions for StringSlice functionsMike Fedosin
2018-12-23fix misspell (#197)Davor Kapsa
2018-12-12Fix typo in count.go (#196)terorie
2018-11-07add int32 & int64 slice support (#194)Noah Dietz
2018-11-07add float32 & float64 slice support (#192)Noah Dietz
2018-10-24Travis: test on 1.9 as well (#191)Eric Paris
Lets see if this still works (1.7 and 1.8 don't work with golint anymore)
2018-10-24travis: update to 1.10 and 1.11 in travis tests (#190)Eric Paris
Hopefully this will get tests back to life
2018-10-24Fix golint import path (#189)golint fixer
2018-10-24Sentence restructure and grammar fix (#188)Matthew Cale
There are helpers function != There are helper functions. Great repo.
2018-08-31Fix panic when parsing unknown flag followed by empty argument (#173)v1.0.3Oren Shomron
Signed-off-by: Oren Shomron <[email protected]>
2018-08-21Handle single string=>string flags without quotes (#179)Tamal Saha
OK: --f1 "a=5,6" --f2 b=3,4 --f3 "c=5,6",d=7 Not OK: --f4 c="5,6"
2018-08-15Add map valued (string->string, string->int) flags. (#133)Tamal Saha
Format: --myflag=a=1,b=2