Skip to content

Bug: Wrong link for MacOS Tahoe in RSS feed #316

Description

@chedabob

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"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions