From d52437b0b53e693ee78fc35b29b76409118bd96d Mon Sep 17 00:00:00 2001 From: Zac Farrell Date: Wed, 29 Jul 2026 19:13:24 -0700 Subject: [PATCH] docs(changelog): restore pagination entry for list endpoint --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98e0b6f..a6dd9d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - chore(query-runs): clarify user_public_id documentation - feat(databases): add search parameter to list endpoint - chore(databases): make pagination fields nullable +- feat(databases): add pagination support to list endpoint. + `DatabasesApi.list_databases` gains `limit` and `cursor`, and the response + gains `count`, `has_more`, and `next_cursor`. Note the behavior change: a call + with no `limit` now returns a single page rather than every database, so + callers that relied on one call seeing everything should follow `next_cursor` + while `has_more` is true. ### Removed