query_changelog
Query the Trillboards API changelog for recent changes, breaking changes, deprecations, and fixes.
WHEN TO USE:
Check what has changed in the API before upgrading an integration.
Find breaking changes since a specific date.
Discover new features added to a specific API surface.
PARAMETERS:
since (YYYY-MM-DD, optional): Only entries dated on or after this date. Unreleased entries are always included.
type (string, optional): Filter by change category. Accepts: "breaking" → changed + removed entries "additive" → added entries "deprecation" → deprecated entries "fix" → fixed entries Can be comma-separated: "breaking,deprecation"
RETURNS:
object: "list"
data: Array of { version, date, type, surface, description }
total: Number of matching entries.
EXAMPLE: Agent: "What broke since April 1st?" query_changelog({ since: "2026-04-01", type: "breaking" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Filter by change category: "breaking", "additive", "deprecation", "fix". Comma-separated for multiple. | |
| since | No | Only entries dated on or after this date (YYYY-MM-DD). Unreleased entries are always included. |