Skip to content

release: 0.69.0#128

Merged
masnwilliams merged 3 commits into
mainfrom
release-please--branches--main--changes--next--components--sdk
Jun 18, 2026
Merged

release: 0.69.0#128
masnwilliams merged 3 commits into
mainfrom
release-please--branches--main--changes--next--components--sdk

Conversation

@stainless-app

@stainless-app stainless-app Bot commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

Automated Release PR

0.69.0 (2026-06-18)

Full Changelog: v0.68.0...v0.69.0

Features

  • Add free-text search to remaining paginated list endpoints (bc595a5)

Bug Fixes

  • client: send content-type header for requests with an omitted optional body (2cde4eb)

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 list calls now accept an optional query parameter 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: buildBody in client.ts now keeps Content-Type (via the encoder) when a generated method passes a body key with null/undefined for 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 query through list param fixtures.

Reviewed by Cursor Bugbot for commit 714b182. Bugbot is set up for automated code reviews on this repo. Configure here.

@firetiger-agent

Copy link
Copy Markdown

Firetiger deploy monitoring skipped

This PR didn't match the auto-monitor filter configured on your GitHub connection:

PRs in the kernel, infra, hypeman, and hypeship repos. kernel is a ~mono repo with many logical services underneath, ensure to focus on the implicated service for the PR

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 @firetiger monitor this.

@stainless-app

stainless-app Bot commented Jun 17, 2026

Copy link
Copy Markdown
Contributor Author

🧪 Testing

To try out this version of the SDK:

npm install 'https://pkg.stainless.com/s/kernel-typescript/bc595a51a8d1f53ec70b56ecf2fbc0ade8d471ff/dist.tar.gz'

Expires at: Sat, 18 Jul 2026 18:56:37 GMT
Updated at: Thu, 18 Jun 2026 18:56:37 GMT

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ 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.

Comment thread src/client.ts
// 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]) });

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 224b078. Configure here.

@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next--components--sdk branch from 224b078 to c6e71cf Compare June 18, 2026 18:56
@stainless-app stainless-app Bot changed the title release: 0.68.1 release: 0.69.0 Jun 18, 2026
@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next--components--sdk branch from c6e71cf to 714b182 Compare June 18, 2026 18:56
@masnwilliams masnwilliams merged commit b7df9e9 into main Jun 18, 2026
11 checks passed
@stainless-app

stainless-app Bot commented Jun 18, 2026

Copy link
Copy Markdown
Contributor Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant