release: 0.69.0#128
Conversation
|
Firetiger deploy monitoring skipped This PR didn't match the auto-monitor filter configured on your GitHub connection:
Reason: This is an automated release PR for kernel-node-sdk (a Node.js SDK), not a code change to a service within the kernel repo itself; unclear which logical service this impacts or if deploy monitoring applies to SDK releases. To monitor this PR anyway, reply with |
|
🧪 Testing To try out this version of the SDK: Expires at: Sat, 18 Jul 2026 18:56:37 GMT |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 224b078. Configure here.
| // content-type for those, and only elide it for operations with no body at | ||
| // all (e.g. GET/DELETE). | ||
| if (body == null && 'body' in options) { | ||
| return this.#encoder({ body, headers: buildHeaders([rawHeaders]) }); |
There was a problem hiding this comment.
Null body sends JSON null
Low Severity
The new optional-body branch uses body == null, so an explicit null body (e.g. apiKeys.rotate(id, null)) runs through #encoder and JSON.stringify(null) becomes the string "null", which is attached to the fetch. Omitted optional bodies are undefined and correctly get Content-Type without a body; null now sends a literal JSON null entity, which differs from pre-change behavior and from the stated fix for omitted params.
Reviewed by Cursor Bugbot for commit 224b078. Configure here.
224b078 to
c6e71cf
Compare
c6e71cf to
714b182
Compare
|
🤖 Release is at https://github.com/kernel/kernel-node-sdk/releases/tag/v0.69.0 🌻 |


Automated Release PR
0.69.0 (2026-06-18)
Full Changelog: v0.68.0...v0.69.0
Features
Bug Fixes
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
Additive API types and a targeted HTTP header fix; no auth or breaking signature changes.
Overview
Release 0.69.0 bumps the package and OpenAPI metadata and ships two user-facing SDK changes from the updated spec.
Free-text list search: Paginated
listcalls now accept an optionalqueryparameter on auth connections, browser pools, credential providers, credentials, deployments, extensions, invocations, and proxies—matching server-side search on IDs, names, domains, and related fields (wording varies per resource).HTTP client:
buildBodyinclient.tsnow keepsContent-Type(via the encoder) when a generated method passes abodykey withnull/undefinedfor an optional request body, instead of dropping headers as if the operation had no body at all. That aligns JSON POST/PATCH calls with APIs that expect a typed empty body.Skipped API tests were updated to pass
querythrough list param fixtures.Reviewed by Cursor Bugbot for commit 714b182. Bugbot is set up for automated code reviews on this repo. Configure here.