In the RSS feed, the link to OS version page on SOFA is incorrect for Tahoe releases.
<item>
<title>macOS Tahoe 26.5.2</title>
<link>https://support.apple.com/en-us/127595</link>
<description>
Vulnerabilities Addressed: 37<br>Exploited CVE(s): 0<br>Apple Security Bulletin: <a href="https://support.apple.com/en-us/127595">https://support.apple.com/en-us/127595</a><br>Security Details: <a href="https://sofa.macadmins.io/macos/sequoia">https://sofa.macadmins.io/macos/sequoia</a>
</description>
<guid isPermaLink="false">macOS_OS_26.5.2</guid>
<pubDate>Mon, 29 Jun 2026 00:00:00 +0000</pubDate>
</item>
I think all that is needed to fix this is to add Tahoe and 26. into the version check here
|
if "macos" in product_lower or "mac os" in product_lower: |
|
if "sequoia" in product_lower or "15." in version: |
|
return f"{SOFA_FQDN}/macos/sequoia" |
|
elif "sonoma" in product_lower or "14." in version: |
|
return f"{SOFA_FQDN}/macos/sonoma" |
|
elif "ventura" in product_lower or "13." in version: |
|
return f"{SOFA_FQDN}/macos/ventura" |
|
else: |
|
return f"{SOFA_FQDN}/macos/sequoia" |
In the RSS feed, the link to OS version page on SOFA is incorrect for Tahoe releases.
I think all that is needed to fix this is to add
Tahoeand26.into the version check heresofa/scripts/generate_rss.py
Lines 376 to 384 in 25797f6