release: 0.71.0#132
Conversation
|
🧪 Testing To try out this version of the SDK: Expires at: Sun, 26 Jul 2026 17:25:33 GMT |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Want fixes drafted automatically? Bugbot Autofix can create code changes for findings. A team admin can enable Autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 3de2942. Configure here.
| page_token: cursor, | ||
| }, | ||
| }; | ||
| } |
There was a problem hiding this comment.
Silent audit log pagination truncation
High Severity
PageTokenPagination stops auto-paginating when x-has-more is true but x-next-page-token is missing or empty. This causes callers to silently miss records, as the system treats pagination as complete instead of indicating an issue.
Reviewed by Cursor Bugbot for commit 3de2942. Configure here.
3de2942 to
a0b23f2
Compare
a0b23f2 to
9c7b0a0
Compare
masnwilliams
left a comment
There was a problem hiding this comment.
Approving 0.71.0 — includes the auth connection event timeline endpoint (auth.connections.timeline).
|
🤖 Release is at https://github.com/kernel/kernel-node-sdk/releases/tag/v0.71.0 🌻 |


Automated Release PR
0.71.0 (2026-06-26)
Full Changelog: v0.70.0...v0.71.0
Features
This pull request is managed by Stainless's GitHub App.
The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.
For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.
🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions
Note
Low Risk
Generated OpenAPI/SDK additions with read-only list endpoints and new pagination types; no changes to auth, routing, or existing client behavior beyond new surface area.
Overview
Release 0.71.0 exposes two new API surfaces on the Kernel client and adds a pagination style used by audit logs.
Audit logs — New
client.auditLogs.list()callsGET /audit-logswith requiredstart/endtime bounds and optional filters (method, auth strategy, search, etc.). Results use a newPageTokenPaginationhelper that readsx-next-page-tokenandx-has-morefor auto-pagination. Types includeAuditLogEntry(request metadata such as path, user, IP, status, duration).Auth connection timeline —
client.auth.connections.timeline(id)hitsGET /auth/connections/{id}/timelineand returns offset-paginatedManagedAuthTimelineEventrecords (login, reauth, health_check) newest-first, with optionaltypefilter.Wiring updates register
auditLogson the main client, export the new types fromresources/indexand theKernelnamespace, and document both features inapi.md. Version metadata (package.json,CHANGELOG, release manifest) moves to 0.71.0.Reviewed by Cursor Bugbot for commit 9c7b0a0. Bugbot is set up for automated code reviews on this repo. Configure here.