Do formulae with livecheck blocks automatically get updated from upstream? #19
-
Recently we released a new version of Clojure (1.10.1.697) in the upstream. The clojure formula in homebrew-core has a livecheck block looking at this: I'm not sure what to expect with respect to livecheck - should this formula get automatically bumped? If so, at what frequency is it checked? Or is there something explicit to do? Just trying to figure out what my expectations should be. Thanks... |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
To answer your question,
$ brew livecheck clojure
clojure : 1.10.1.561 ==> 1.10.1.697 There has been some discussion about creating pull requests automatically based on |
Beta Was this translation helpful? Give feedback.
-
I did try to find any documentation that would answer this question but I did not find it (not sure if that was a problem with my finding or in the docs). |
Beta Was this translation helpful? Give feedback.
To answer your question,
livecheck
does not automatically update formulae. We rely on community contributions to keep packages up to date. You're strongly encouraged to open a PR to update theclojure
formula. Take a look at the docs for a guide on how to do this (brew bump-formula-pr
is probably what you're looking for)livecheck
is a tool that compares the version we have to the latest upstream version. For example, runningbrew livecheck clojure
will indicate that there is a new version available:There has been some discussion about creating pull requests automatically based on
livecheck
but this hasn't been implemented yet.