Skip to content

release: 0.77.0#133

Merged
IlyaasK merged 10 commits into
mainfrom
release-please--branches--main--changes--next
Jul 13, 2026
Merged

release: 0.77.0#133
IlyaasK merged 10 commits into
mainfrom
release-please--branches--main--changes--next

Conversation

@stainless-app

@stainless-app stainless-app Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Automated Release PR

0.77.0 (2026-07-13)

Full Changelog: v0.76.0...v0.77.0

Features

  • Add exact-match name filter to list endpoints (6ffae2f)
  • Add name-only rename for profiles and proxies (c2b2b5e)
  • Auto-default refresh_on_profile_update when browser pool profile changes (b74cae1)
  • Document name uniqueness and query match semantics (fd4fcff)
  • Make the browser pool OpenAPI contract truthful (b1baff2)
  • Persist and echo deployment source identity (a09849a)
  • Support multiple audit log method exclusions (de83d75)

Documentation

  • openapi: describe unified concurrency limit, deprecate max_pooled_sessions (CUS-275) (edcc0e5)

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

Medium Risk
The audit log ExcludeMethod type change is a breaking Go API for existing callers, and limit/concurrency deprecations may surprise integrations that still set max_pooled_sessions.

Overview
Release 0.77.0 bumps the package and OpenAPI-backed client to match two new endpoints and broader API contract updates.

New client methods: Profiles.Update and Proxies.Update support name-only renames via PATCH. List helpers gain an optional Name query field for exact-match filtering on API keys, browser pools, extensions, profiles, projects, and proxies.

Audit logs: ExcludeMethod on list and export-chunk params is now []string instead of a single optional string—callers must pass a slice.

Deployments responses add read-only source identity fields (source_type, source_url, source_ref, source_path, source_checksum). Project/org limits docs deprecate max_pooled_sessions in favor of a unified max_concurrent_sessions concurrency model.

Browser pool create/update param and response comments are tightened (defaults, clear-vs-replace on PATCH, refresh_on_profile_update behavior when the profile changes). Proxy-by-name and list query semantics are documented more precisely across auth and list params.

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

@stainless-app

stainless-app Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor Author

🧪 Testing

To try out this version of the SDK:

Download and unzip: 'https://pkg.stainless.com/s/kernel-go/de83d75e14f7f819f6c6982a7c9833d7a3f45721/source.zip'. Run 'go mod edit -replace github.com/kernel/kernel-go-sdk=/path/to/unzipped_directory'.

Expires at: Wed, 12 Aug 2026 15:44:23 GMT
Updated at: Mon, 13 Jul 2026 15:44:23 GMT

@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 5011ba5 to 8ef06c1 Compare July 10, 2026 13:46
@stainless-app stainless-app Bot changed the title release: 0.76.1 release: 0.77.0 Jul 10, 2026
@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 8ef06c1 to 6846956 Compare July 10, 2026 13:46
@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 6846956 to 5e62c63 Compare July 10, 2026 14:19
@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 5e62c63 to cae2f37 Compare July 10, 2026 14:37
@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from cae2f37 to 4be0a14 Compare July 10, 2026 14:56
@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 4be0a14 to dc3915d Compare July 10, 2026 15:33
Comment thread browserpool.go
@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from dc3915d to df6078f Compare July 10, 2026 16:00
@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from df6078f to d00e6f7 Compare July 10, 2026 19:29
@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from d00e6f7 to fbfb965 Compare July 13, 2026 15:44
@IlyaasK IlyaasK merged commit 9670e39 into main Jul 13, 2026
10 checks passed
@IlyaasK IlyaasK deleted the release-please--branches--main--changes--next branch July 13, 2026 15:45
@stainless-app

stainless-app Bot commented Jul 13, 2026

Copy link
Copy Markdown
Contributor Author

🤖 Release is at https://github.com/kernel/kernel-go-sdk/releases/tag/v0.77.0 🌻

@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 using high effort 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.

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 fbfb965. Configure here.

Comment thread auditlog.go
// Filter by service name.
Service param.Opt[string] `query:"service,omitzero" json:"-"`
// Filter out results by HTTP method.
ExcludeMethod []string `query:"exclude_method,omitzero" json:"-"`

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Undocumented audit ExcludeMethod breaking change

Medium Severity

AuditLogListParams and AuditLogExportChunkParams change ExcludeMethod from param.Opt[string] to []string, which breaks existing Go code that still passes kernel.String(...). The 0.77.0 changelog lists this only as a feature, with no breaking-change notice or migration hint.

Additional Locations (2)
Fix in Cursor Fix in Web

Triggered by learned rule: Flag breaking API changes misclassified as patch fixes

Reviewed by Cursor Bugbot for commit fbfb965. Configure here.

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