Some people use the optional last field of SemVer to convey instability of a version, e.g.:
- 3.6.0-rc0
- 2.0.0-beta.5
- 4.0.0-alpha3
- 5.0.0.Alpha2
(These are actually real versions of popular packages)
Naturally you do not want to upgrade your dependencies to unstable versions. Is there a way to exclude those from the search?
Would you need to implement a custom strategy for that?