Homebrew: list available versions with new formula@version format

Homebrew recently deprecated homebrew/versions in favour of making versions available on homebrew/core via the new formula@version format. For example (as per this answer), you can do brew install [email protected].

Of course, this doesn't work for arbitrary versions. For instance, install [email protected] turns up "Error: No formulae found in taps".

Under the old method, I could run brew versions <formula> to see available versions. How do I list available versions now?


Solution 1:

You can search versions using brew search.

For example:

$ brew search postgresql
postgresql ✔      [email protected]     [email protected]

Solution 2:

This is an old question, but I found a "better" (for me) way to do this:

brew info --json PACKAGE_NAME | jq -r '.[].versioned_formulae[]'

For example, in the case of the package node, this will print:

$ brew info --json node | jq -r '.[].versioned_formulae[]'
node@10
node@12
node@8

You will need the program jq installed for it to drill down into the appropriate JSON, (brew install jq).

Since the above is gnarly to write/remember, I suggest setting up an alias or function in your favorite shell.

Note: This method will only work with Formulae and not Casks.

Solution 3:

And in case you wanted to just look up the specific version used by a formula after finding it using search, you can get the info with:

brew info <formula>
# or for a cask:
brew cask info <formula>

e.g. brew info postgresql@10, or brew cask info vlc

And if you can't find a popular old version of a cask, you may be able to get it via homebrew-cask-versions, which is installable with brew tap homebrew/cask-versions.