using version catalogs, how do you check for dependency updates ?
m
using version catalogs, how do you check for dependency updates ?
b
Don't think there's anything provided for that out of the box. #refreshversions might already have a support for version catalogues though, not sure.
m
i don’t think so, from a quick check. Thanks!
v
You check the same way as without version catalogs. Any plugin that checks the used versions should work fine. I know Gradle versions plugin by Ben Manes does.
v
Yep, that's an extension to the Gradle versions plugin fo Ben Manes. Bens plugin checks for updates, that plugin can udpate the TOML file with the results.
p
We use renovate for this, that works flawless
It creates a PR on updates
v
Dependabot can probably also do it if you prefer a tool that creates PRs on your projects. I usually prefer a plugin that I can run locally and that is independent from any hosting service. 🙂
p
Nope it doesn't support version catalogs that why we went with renovate
Renovate also just runs locally
v
ic