Overview
Yugabyte publishes RSS feeds that allow you to receive automatic notifications when new YugabyteDB or YugabyteDB Anywhere versions are released. This article lists all available feeds, explains how to subscribe, and shows how to integrate them into tools like Slack, Microsoft Teams, and email.
Available Feeds
| Feed | Content | Format | URL |
|---|---|---|---|
| YugabyteDB Releases | New YBDB versions (stable, STS, LTS, preview) | RSS/XML | https://docs.yugabyte.com/stable/releases/ybdb-releases/index.xml |
| YugabyteDB Anywhere Releases | New YBA versions | RSS/XML | https://docs.yugabyte.com/stable/releases/yba-releases/index.xml |
| Technical Advisories | YugabyteDB Technical Advisories | RSS/XML | https://docs.yugabyte.com/stable/releases/techadvisories/index.xml |
| GitHub Releases | Every build tag pushed to yugabyte/yugabyte-db (includes pre-release builds) |
Atom/XML | https://github.com/yugabyte/yugabyte-db/releases.atom |
| Yugabyte Blog | Release announcements, technical articles, best practices | RSS 2.0 | https://www.yugabyte.com/blog/feed/ |
| YugabyteDB Aeon Status | Incidents and scheduled maintenance for YugabyteDB Aeon | Statuspage.io |
https://status.yugabyte.cloud (click "Subscribe to Updates") |
Every official release notes page includes the note: "For an RSS feed of all release series, point your feed reader to the RSS feed for releases."
How to Subscribe
Option 1: RSS Reader (Feedly, Inoreader, NewsBlur, etc.)
- Copy the desired RSS URL from the table above
- In your RSS reader, choose Add Feed or Subscribe
- Paste the URL and confirm
- New release notes appear as they are published
Option 2: Slack
Use Slack's built-in RSS app:
- Install the RSS app from the Slack App Directory in your workspace
-
In the channel where you want notifications, run:
/feed subscribe https://docs.yugabyte.com/stable/releases/ybdb-releases/index.xml
- The bot posts new items automatically as they are published
Option 3: Microsoft Teams
Use the RSS Connector:
- In the target Teams channel, click Connectors (or Workflows)
- Add the RSS connector
- Paste the feed URL and set your preferred polling interval
- New items appear as channel messages
Option 4: Email Digest
Convert any RSS feed to email using services like Blogtrottr, IFTTT, or Feedrabbit:
- Sign up for the service
- Provide the RSS feed URL
- Choose your digest frequency: instant, daily, or weekly
- Receive new release notes in your inbox
Option 5: Command Line / Automation
View recent releases from the command line:
curl -s https://api.github.com/repos/yugabyte/yugabyte-db/releases \
| jq -r '["Release","Date"],["-------","----"],
(limit(10; .[]) | [.tag_name, (.published_at | split("T")[0])]) | @tsv' \
| column -t -s $'\t'Poll for the latest release programmatically:
curl -s https://api.github.com/repos/yugabyte/yugabyte-db/releases/latest \ | jq -r '.tag_name'
These approaches are useful for CI/CD pipelines that need to trigger automated testing against new builds.
Reference ID: SUPPORT-853
Comments
0 comments
Please sign in to leave a comment.