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-13)

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

Features

  • add MFA options to agent authentication workflow (0f5b637)
  • 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

  • Add MFA to agent auth: AgentAuthInvocationResponse includes mfa_options; Invocations.Submit accepts selected_mfa_type (validated) as a new request variant.

Platform/Docs

  • Set production base URL to https://api.kernel.com/ (option.WithEnvironmentProduction).
  • Update module path and documentation links from onkernel to kernel across README, CONTRIBUTING, and api.md.
  • Refresh OpenAPI spec metadata and CHANGELOG.
  • Minor pagination code tweak in OffsetPagination.GetNextPage() around next-offset handling.

Written by Cursor Bugbot for commit 02e3d8d. 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
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