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

# Changelog Object

> Track updates with a Changelog Object, including status, contributors, and related links.

The Changelog Object contains several fields each with defined types and descriptions which are outlined as follows:

<ParamField body="id" type="string">
  The unique identifier for the Changelog entry.
</ParamField>

<ParamField body="status" type="Draft | Published">
  Indicates the publishing status of the Changelog entry.
</ParamField>

<ParamField body="title" type="string">
  The title of the Changelog entry.
</ParamField>

<ParamField body="slug" type="string">
  A web-friendly version of the title used in URLs.
</ParamField>

<ParamField body="coverImage" type="string | null">
  URL to the cover image associated with the Changelog entry. Can be null if no
  image is specified.
</ParamField>

<ParamField body="description" type="string">
  The summary or description of the Changelog entry.
</ParamField>

<ParamField body="credits" type="User[]">
  An array of User objects that contributed to the Changelog entry.
</ParamField>

<ParamField body="relatedPosts" type="Post[]">
  An array of Post objects that are related to the Changelog entry.
</ParamField>

<ParamField body="labels" type="Label[]">
  An array of Label objects that categorize or tag the Changelog entry.
</ParamField>

<ParamField body="publishedAt" type="Date | null">
  The date and time when the Changelog entry was published. Can be null if it's
  not published.
</ParamField>

<ParamField body="createdAt" type="Date">
  The date and time when the Changelog entry was created.
</ParamField>
