> ## Documentation Index
> Fetch the complete documentation index at: https://site.aspect.build/llms.txt
> Use this file to discover all available pages before exploring further.

# Security Updates

> To sign up for notifications when a security fix is released, email security-updates@aspect.build

export const MarketingPage = () => <div className="marketing-page-marker" style={{
  display: "none"
}} />;

export const Section = ({children, className = "", gray = false, dark = false, id}) => <section id={id} className={`w-full flex justify-center px-4 py-16 md:py-24 ${gray ? "bg-gray-50 dark:bg-zinc-900" : dark ? "bg-zinc-900 dark:bg-zinc-950" : ""} ${className}`}>
    <div className="w-full" style={{
  maxWidth: "1140px"
}}>
      {children}
    </div>
  </section>;

<MarketingPage />

<Section>
  <div className="mx-auto prose dark:prose-invert prose-zinc" style={{ maxWidth: "800px" }}>
    <h1>Security Updates</h1>

    <p>To report security issues please see the <a href="/report-a-security-vulnerability">Aspect Responsible Disclosure Policy</a>.</p>

    <p>To sign up for notifications when a security fix is released, email <a href="mailto:security-updates@aspect.build">{"security-updates@aspect.build"}</a></p>

    <h2>Public disclosure</h2>

    <p>Feedback is responsibly shared to the product team in order to offer security updates to the Aspect community prior to publicly disclosing issues to the <a href="mailto:security-updates@aspect.build">{"security-updates@aspect.build"}</a> mailing list.</p>

    <p>To increase the safety of Aspect users, specific details on security updates in Aspect releases are announced 30 days after the availability of the update. We have a mandatory upgrade policy and only provide updates for the latest release.</p>
  </div>
</Section>
