Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mesa.dev/llms.txt

Use this file to discover all available pages before exploring further.

List current reachable changes, optionally restricted to a bookmark.
changes = await mesa.changes.list(repo="app", bookmark="main")

for change in changes.changes:
    print(change.id, change.current_commit_oid, change.message)

Options

repo
str
required
Repository name.
org
str | None
Organization override.
cursor
str | None
Opaque pagination cursor from a previous response.
limit
int | None
Maximum number of changes to return. The server maximum is 100.
bookmark
str | None
Restrict results to changes reachable from this bookmark.

Response

next_cursor
str | None
Cursor for the next page, or None when no more results remain.
has_more
bool
Whether another page is available.
changes
list
Change summaries with id, current_commit_oid, is_conflicted, message, author, committer, parents, created_at, and updated_at.

Required scope

write