RSS feed new version notification

Hello Mattermost community,
We have a selfhosted solution and we would like to get notification that new version is up.
Is there some RSS feed or mailing list so we can get that type of information?

Regards

Wolf

Hi Wolf and welcome to the Mattermost forums!

I’m not aware of any RSS feed for that, I looked for that some time ago and even the GitHub integrated RSS feeds do not help with that, since there’s no differentiation on a production release or a release candidate, etc.
What I ended up with is a small script that checks the links from https://latest.mattermost.com to see where it redirects to and notifies me if it changes.

$ curl -sI https://latest.mattermost.com/mattermost-enterprise-linux | grep ^Loc
Location: https://releases.mattermost.com/7.5.1/mattermost-enterprise-7.5.1-linux-amd64.tar.gz

The github repo releases can be tracked through an atom feed: Release notes from mattermost

1 Like