-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 3.x meta/discussion #833
Comments
Regarding the API we could split it up into an internal and external one. Everything which should not be imported externally would go into the |
I would love to see fish shell completion support. 💚 |
I'm a big fan of tossing tons of code into |
For anyone else reading, here's a ticket for that => #351 |
Oh! I see now that we call the flag |
Since v2 was never officially released, it might be okay to make minimal breaking changes to the v2 branch before merging and releasing it? I'm happy either way, but if that's more convenient then it should be okay since people know that v2 has not been released yet and so it's okay to make some breaking changes before its officially stable |
^ I'm cleaning up the issues about |
@marwan-at-work fwiw I'd vote for a field named |
and related tooling, given all of it has been replaced by ✨ generics magic ✨ Connected to #833
@meatballhat any documentation or links to where that explicit convention maybe written? What is the downside here anyway? IMHO, the fact that context.Context was embedded and only half-implemented the interface, was odd. But that was because we couldn't introduce a breaking change to the
That works for me too, but would you want |
@marwan-at-work I should have explained myself better, sorry! The interpretation of the go docs I'm leaning on here comes from the overview
meaning that we're not supposed to be wrapping Aside from that particular interpretation issue, I'd like to make sure we are moving towards the design detailed in the series of issues tracked in #1531 which would result in an action func signature of: type ActionFunc func(ctx context.Context, cmd *Command) error I'd love to keep talking about this, and I also want to be sensitive to keeping discussions here very high-level, so I'm copying these comments over to #1531 for further discussion 🙇🏼 |
@meatballhat ah, yes storing context vs passing it. In most cases, you want a function to accept a context. But FWIW the Go team themselves break that rule in multiple places:
With all of that said, I'm definitely happy with any solution as long as we have a full context accessible from the outside :) From issue 1531, it looks like y'all are thinking of removing the |
Update: Progress!1 And yet, yeah, wish lists balanced with releasing usable software is hard to do. If you're the kind of human who finds themselves reading this, there's a Footnotes
|
Looks like GenericFlags are removed in v3, is there a replacement for them? |
@xoxys imo GenericFlag was really not that useful since it depended on the user providing a Generic instance to the GenericFlag anyway. Same thing can be achieved in v3 by providing a Value and ValueCreator instance to FlagBase in-lieu of implemented a new flag instance. Let me know if this isnt sufficient for you needs. We can look into simplying it. |
Hi @dearchap sorry for the delay. Maybe my question was not accurate enough. What I'm doing today with v2 is using a custom type https://github.com/thegeeklab/wp-plugin-go/blob/main/types/stringslice.go that is then used in a generic flag https://github.com/thegeeklab/wp-docker-buildx/blob/main/cmd/wp-docker-buildx/config.go#L331-L336 I'm not even sure if that is the proper way to do it with v2 🙈 but how could this be done in v3? At the end, I'm looking for a way to implement a custom flag that can do some custom data manipulation. |
@xoxys You would use the FlagBase directly instead of SliceBase, so you would define FlagBase[string[], cli.NoConfig, ] The value creator will basically return the string slice impl value that you already have. Take a look at any of the current flag_.go to see how a valueCreator works. Let me know if you need any help reg that |
@meatballhat our usecase was simple at PeerDB-io/peerdb#944 & converting was straightforward. Bit of a hiccup figuring out App/Command merge since v2/v3 migration guide doesn't mention App being removed Our usecase might be simple enough that we should just use |
Hi! Thank you very much for maintaining this awesome module. When do you expect v3 beta release? Is there anything a random contributor could help with? I have some free time :) |
@bartekpacia The only thing preventing us from a beta release is a new arg parser from either @meatballhat or @jtagcat . |
harg exists as a complete parser, I moved it under hcli (WIP, my 'urfave/cli v3') to try integrating it with a CLI wrapper. The place I got stuck with was the logic of nested subcommands. It has been on the back burner for a while. I've been annoyed for there not being no good cli lib for Go a few times, but instead slapped things together without a library at all. While it still is on my TODO; I haven't planned for it. Might do it one day, might not. I think it got noted before, that harg isn't a drop-in to urfave/cli. |
Alright, thanks! Are you planning on making some breaking changes? I know such questions might be hard to answer right now since well, it's alpha, but I'd appreciate an answer anyway :-) Meanwhile I think it would make sense to also release documentation for v3 on the docs website (and of course name it like |
At least my version, yes, breaking. I don't agree with releasing docs before the exact design/spec is down. My effort is probably separate from urfave/cli (see top post). If you want it, you'll likely want to build it yourself, or buy the work. This issue is 5y old. |
I'd like to include #1885 and then creating a whole new set of docs for the v3 feature set in the list of stuff to do before releasing a v3 beta 💖 |
sorry I hope this was the right way to propose an api change ... I just try to make it on pare to EnvVar is to EnvVars ... |
( it started with #1842 back then and now I would say the only missing piece is #1945 -> used at https://github.com/woodpecker-ci/woodpecker/pull/2951/files#diff-9775ff7ddc807771870ef2bbe9732cc8f952acc54db2b3e72887edaeb0f1370bR34-R38 ...) |
@meatballhat Can you chime in ? |
This comment was marked as resolved.
This comment was marked as resolved.
Apologies for my big delay! @abitrolly Thank you for raising this up. If this section of the contributing docs isn't working for you, I'd like to treat it as a bug ❤️ https://github.com/urfave/cli/blob/main/docs/CONTRIBUTING.md#docs-output |
This is a meta-issue meant to track the work in other issues targeting the Release 3.x milestone.
benevolent takeover notes
Hiii I'm working on getting many maintenance tasks addressed including
taking over this issue from @coilysiren 🙇🏼 who is busy with other life adventures ❤️ ~ @meatballhat
I know 2.0 isn't out yet 🙂 (see #826) butI wanted to create a tracking issue for the 3.x series.Here's some breaking/difficult changes we want to consider for V3:
merge altsrc with main package #1058Improve testability of(conflicts with Consolidate all*cli.Context
(via Release 3.x meta/discussion #833 (comment))Context
code intoCommand
#1587)EnableBashCompletion
in favor ofCompletionShells
consider a different release method (eg. not just merging to(this was changed in v2)master
) via Support users who are using GOPATH mode #952 (comment)make flags "global" by default, to some degree(this was added into v2)Compiled
metadata is not used #753Cleanup error handling. Make multiError implement ExitCodermike
for multi-version docs #1885Please suggest more! I'll add them to this OP
Update ~January 2023: Progress! And yet, yeah, wish lists balanced with releasing usable software is hard to do. If you're the kind of human who finds themselves reading this, there's a
v3.0.0-alpha2
tag now, which should play nicely withgo get github.com/urfave/cli/v3@latest
. Feedback wanted! ❤️ ~ @meatballhatFootnotes
The documentation-related code that depends on
github.com/russross/blackfriday/v2
andgithub.com/cpuguy83/go-md2man/v2
has been shown to add significant bulk to compiled outputs ↩The text was updated successfully, but these errors were encountered: