-
Notifications
You must be signed in to change notification settings - Fork 841
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
Check for recent version during calls? #1681
Comments
Hmm, interesting idea! Thoughts:
|
I guess it depends on:
For disabling it:
So either go with |
Once per day seems reasonable. Doing a check is fast, but it's still a network request, seems best to avoid doing lots of them.
It'd be cool to have an opt-in option for this. It'd be cool to see what things are most popular, and infer related sets of packages ("often used with: ...").
Yeah, makes sense! |
Ohh there's another thing, I did not mentioned. When something goes wrong, they basically provide you all the information to create a useful issue, though they advise you to clean up all potential private data. |
Here's the relevant statistics post from cocoa pods, for the record: |
I'm bumping this to P2: Should, because I've been seeing lots of bug reports from people using their distro version and encountering things that have been fixed. While this won't solve things for those current versions, once the distro versions ship the thing with the check, this will hopefully happen less. |
I just added a note to CONTRIBUTING.md to check using the latest version |
It would also be nice to have this check for deprecated versions. Would be really handy in circumstances like #2000 where we'd like to get users off affected versions. |
I'd also suggest doing the check when in the terminal. Many stack invocations are run by other tooling, so it would be hidden, and a waste of resources. In the terminal at least gives a higher probability of the user actually seeing it. |
…sion Recommend Stack upgrade when appropriate (fixes #1681)
The cocoa pods
pod
command checks for the latest version upon each invocation, and lets one know if there is a newer version available. I would like to see such a feature added tostack
.The text was updated successfully, but these errors were encountered: