Welcome! Please see the About page for a little more info on how this works.

+5 votes
in Clojure CLI by

Given the number of people (mostly beginners) who seem to run into problems with the CLI because they have an older version and are following either newer instructions or trying to use libraries that rely on newer features, I wonder whether it would be worth adding a check to the script that would output a warning if the current stable version is more recent (from the download site)?

I know that won't help people who already have an old version installed but it would at least help future people...

...or is the command-line "API" stable enough at this point that it wouldn't be worth it?

Examples include the changing semantics for both -M and -T over the years, support for :git/sha (vs :sha), and several other changes, both in tools.deps itself and the CLI script.

by
I'd be in favor of this, I have lost a small amount of time to this moving to a less-frequently used machine that didn't have all the flags.

1 Answer

+2 votes
by
selected by
 
Best answer
by
Can we have this option as an explicit argument (e.g. --check-latest-version or similar), rather than something executed automatically? I never liked how npm does this automatically, not to say that it will slow down things due to network round-trip.
by
An explicit argument would mean no one actually uses it (you could explicitly check now if you want). I think there are a variety of options though (check once a day / once a week / only when an error occurs /etc). And this could potentially be configurable. When I get around to looking at it, will think about all those things.
...