Skip to content

release: 0.55.0#104

Merged
stainless-app[bot] merged 5 commits into
mainfrom
release-please--branches--main--changes--next
May 15, 2026
Merged

release: 0.55.0#104
stainless-app[bot] merged 5 commits into
mainfrom
release-please--branches--main--changes--next

Conversation

@stainless-app
Copy link
Copy Markdown
Contributor

@stainless-app stainless-app Bot commented May 13, 2026

Automated Release PR

0.55.0 (2026-05-15)

Full Changelog: v0.53.0...v0.55.0

Features

  • Add health check and auto-reauth controls for managed auth connections (e381d8e)
  • client: optimize json encoder for internal types (e7f4365)
  • Polish start URL OpenAPI descriptions (2d82565)

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
Moderate risk: expands managed-auth request/response schema and changes the internal JSON marshaling behavior (new options + skip-compaction optimization), which could affect request serialization and any code relying on strict compaction/validation of json.Marshaler outputs.

Overview
Managed auth connections gain new configuration surface: auto_reauth and health_checks are added to ManagedAuth, ManagedAuthCreateRequestParam, and ManagedAuthUpdateRequestParam, with tests updated to send these optional fields.

Internal JSON encoding is optimized by adding Option support to internal/encoding/json.Marshal and a WithSkipCompaction flag that bypasses the compaction step for json.Marshaler subtypes; packages/param now uses this for request encoding and adds tests covering nested/non-compacted marshaler behavior.

Release housekeeping bumps to v0.55.0 (manifest, internal/version.go, README, changelog, OpenAPI stats) and pins GitHub Actions versions in CI.

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

Pin all GitHub Actions referenced in generated workflows (both
first-party `actions/*` and third-party) to immutable commit SHAs.
Updating pinned actions is now a deliberate codegen-side bump rather
than implicit on every workflow run.
@firetiger-agent
Copy link
Copy Markdown

Firetiger deploy monitoring skipped

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

Any PR that changes the kernel API. Monitor changes to API endpoints (packages/api/cmd/api/) and Temporal workflows (packages/api/lib/temporal) in the kernel repo

Reason: This is an automated release PR with no visible changes to API endpoints or Temporal workflows; it appears to be a version bump only.

To monitor this PR anyway, reply with @firetiger monitor this.

@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 886dbc7 to 3e226c1 Compare May 14, 2026 03:19
@stainless-app stainless-app Bot changed the title release: 0.53.1 release: 0.54.0 May 14, 2026
@stainless-app
Copy link
Copy Markdown
Contributor Author

stainless-app Bot commented May 14, 2026

🧪 Testing

To try out this version of the SDK:

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

Expires at: Sun, 14 Jun 2026 20:33:04 GMT
Updated at: Fri, 15 May 2026 20:33:04 GMT

@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 3e226c1 to f544f7a Compare May 14, 2026 03:20
Copy link
Copy Markdown

@cursor cursor Bot left a comment

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 2 potential issues.

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

return func(eos *encOpts) {
eos.skipCompaction = true
}
}
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

WithSkipCompaction ignores its boolean parameter

Medium Severity

WithSkipCompaction accepts a bool parameter b but never uses it — the closure unconditionally sets eos.skipCompaction = true. Calling WithSkipCompaction(false) would still enable skip compaction, which contradicts the function's API contract. The assignment needs to use b instead of the hard-coded true.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit f544f7a. Configure here.

t.Fatalf("didn't expect error %v, expected %s", err, test.expected)
}
if string(b) != test.expected {
t.Logf("expected %s (%s), received %s", test.expected, reflect.TypeOf(test.value), string(b))
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Test silently logs assertion failures instead of failing

Medium Severity

The "shimjson-marshal" sub-test uses t.Logf for its assertion check instead of t.Errorf or t.Fatalf. This means the test will silently pass even when the output doesn't match the expected value — it just logs the mismatch without failing. Every other assertion in this file uses t.Fatalf, so this appears to be an accidental use of t.Logf, leaving this test block unable to catch regressions.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit f544f7a. Configure here.

@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from f544f7a to 9130fd8 Compare May 14, 2026 18:20
@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 9130fd8 to 21661b8 Compare May 15, 2026 20:32
@masnwilliams masnwilliams changed the title release: 0.54.0 release: 0.55.0 May 15, 2026
@stainless-app
Copy link
Copy Markdown
Contributor Author

stainless-app Bot commented May 15, 2026

Release version edited manually

The Pull Request version has been manually set to 0.55.0 and will be used for the release.

If you instead want to use the version number 0.54.0 generated from conventional commits, just remove the label autorelease: custom version from this Pull Request.

@stainless-app stainless-app Bot force-pushed the release-please--branches--main--changes--next branch from 21661b8 to 6b6d8c0 Compare May 15, 2026 20:46
Copy link
Copy Markdown
Contributor

@masnwilliams masnwilliams left a comment

Choose a reason for hiding this comment

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

lgtm

@stainless-app stainless-app Bot merged commit 3afaff7 into main May 15, 2026
10 checks passed
@stainless-app
Copy link
Copy Markdown
Contributor Author

stainless-app Bot commented May 15, 2026

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

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