List of outdated packages in Julia

Is there a way to list all outdated packages in Julia? An equivalent of pip3 list --outdated in Python.

I made a couple searches (1, 2), but couldn’t find an answer.

>Solution :

This feature is implemented for the upcoming Julia 1.8 release as the --outdated flag to the status command:

(v1) pkg> status
Status `~/.julia/environments/v1/Project.toml`
  [7876af07] Example v0.5.1

(v1) pkg> status --outdated
Status `~/.julia/environments/v1/Project.toml`
  [7876af07] Example v0.5.1 (<v0.5.3)

Leave a Reply