list_changes
Fetch an ordered feed of release changes for CNCF projects. Filter by project, family, and action bucket to spot security fixes, breaking changes, or deprecations; use the cursor to page until synced.
Instructions
Incremental SYNC feed of release changes for CNCF/cloud-native projects. Ordered by seq ascending — OLDEST analyzed first, so a single page is NOT the newest data; page through with since= until next_since comes back null. Built for keeping a local copy up to date. For 'what is the latest release of X' or 'recent releases of X', use list_releases or get_release (omit version for the newest) instead. Filter by project, by family (security|breaking|deprecated — what kind of thing it is) and by bucket (action|check|plan — how to act now). The routine record (bot dependency bumps and the like) is excluded by default. Two fields matter most: applies_if tells you whether an entry is yours to act on — when its targets are present, look them up in the running configuration instead of parsing the sentence; matter_key is the identity of the underlying matter across releases, which get_matter expands.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | page size, default 50, max 200 | |
| since | No | cursor: return changes with seq greater than this | |
| bucket | No | action|check|plan — how to act now. action applies to everyone; check only if applies_if matches your setup; plan is announced for later | |
| family | No | security|breaking|deprecated — what kind of thing it is | |
| project | No | project slug filter, e.g. envoy, istio, cilium |