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

# Aria Compute platform changelog

> Read the Aria Compute platform release notes and fetch them programmatically via GET /api/changelog for embedding in your own tools.

The Aria Compute changelog records product releases, breaking changes, and notable improvements. It is served publicly through the API and rendered on the marketing site.

## Fetch changelog entries

```bash theme={null}
curl -s https://ariacompute.com/api/changelog | jq .
```

```json theme={null}
{
  "entries": [
    {
      "id": "chg_01H...",
      "title": "Introducing INT3.26 quantization for language models",
      "date": "2026-09-15",
      "tags": ["models", "release"],
      "body": "The int326 quant is now available for the gemma-4 family..."
    }
  ]
}
```

<ResponseField name="entries" type="object[]">
  Newest first.

  <Expandable>
    <ResponseField name="id" type="string">
      Stable entry identifier.
    </ResponseField>

    <ResponseField name="title" type="string">
      Short headline.
    </ResponseField>

    <ResponseField name="date" type="string">
      Publish date (YYYY-MM-DD).
    </ResponseField>

    <ResponseField name="tags" type="string[]">
      Category tags.
    </ResponseField>

    <ResponseField name="body" type="string">
      Markdown-formatted release notes.
    </ResponseField>
  </Expandable>
</ResponseField>

Admins publish and edit entries in the dashboard; the same content is served to the public endpoint.

## Related

* [Site metadata](/api-reference/site/site)
* [Latest engine release](/api-reference/downloads/engine-latest)


## Related topics

- [Aria Compute Documentation](/index.md)
- [Aria Compute REST API reference](/api-reference/introduction.md)
- [Get started with Aria Compute in minutes](/quickstart.md)
- [Aria model bundles and quantization](/concepts/models.md)
- [aria-router runtime and FFI](/sdks/router-runtime.md)
