Skip to content

Conversation

@stainless-app
Copy link
Contributor

@stainless-app stainless-app bot commented Jan 9, 2026

Automated Release PR

0.25.0 (2026-01-15)

Full Changelog: v0.24.0...v0.25.0

Features

  • add MFA options to agent authentication workflow (0f5b637)
  • add WebSocket process attach and PTY support (690d473)
  • api: add IP address logging for residential and custom proxies (35a09ad)
  • api: manual updates (0980329)
  • api: update production repos (0cdfbfd)

Chores

  • sync repo (1728134)
  • update module path from onkernel to kernel (52c5887)

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

Features

  • Agent auth: adds mfa_options to AgentAuthInvocationResponse and a new submit variant selected_mfa_type for MFA selection
  • Process: adds PTY support to Spawn (allocate_tty, cols, rows) and a new Process.Resize endpoint with BrowserProcessResizeResponse
  • Proxies: responses now include ip_address (New/Get/List/Check)

Platform/SDK updates

  • Production base URL updated to https://api.kernel.com/
  • Repo/module and docs links migrated from onkernel to kernel
  • OpenAPI spec and stats bumped (configured_endpoints: 90)

Written by Cursor Bugbot for commit 241fc3b. This will update automatically on new commits. Configure here.

tembo[bot]
tembo bot previously approved these changes Jan 9, 2026
return nil, err
}
length := int64(len(r.Items))
nextStr := offset + length
Copy link

Choose a reason for hiding this comment

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

This currently won’t compile (nextStr used before declaration; offset + length is invalid). Suggest reverting to the original header parse logic:

Suggested change
nextStr := offset + length
nextStr := r.res.Header.Get("X-Next-Offset")
next, err := strconv.ParseInt(nextStr, 10, 64)
if err != nil {
return nil, err
}
length := int64(len(r.Items))

@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 07d54e3 to 02e3d8d Compare January 13, 2026 20:40
Updated TypeScript package name and API URL to correct values.
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 02e3d8d to b39f36b Compare January 14, 2026 15:19
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from b39f36b to 6ccb5c6 Compare January 14, 2026 23:58
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 6ccb5c6 to 241fc3b Compare January 15, 2026 20:06
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