You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- mesa-description-start -->
## TL;DR
Adds `--limit` and `--offset` flags to the `app history` and `deploy
history` commands to support pagination.
## Why we made these changes
Commands that return a large number of items could be slow, consume too
much memory, or hit API rate limits. Fetching results in pages provides
a faster and more reliable user experience for users with many
resources.
## What changed?
- **`cmd/app.go` & `cmd/deploy.go`**: Replaced the `--all` flag with
`--limit` (default 100) and `--offset` flags on the `app history` and
`deploy history` commands.
- **`go.mod` / `go.sum`**: Bumped the `kernel-go-sdk` dependency to
`v0.11.1` to support passing the new pagination parameters to the API.
- **`README.md`**: Updated documentation to reflect the new `--limit`
flag, replacing `--all`.
<sup>_Description generated by Mesa. [Update
settings](https://app.mesa.dev/onkernel/settings/pull-requests)_</sup>
<!-- mesa-description-end -->
0 commit comments