From dca778eb0213b7f2c3996616cf8b475e6d064bac Mon Sep 17 00:00:00 2001 From: eclairen <236733058+eclairen@users.noreply.github.com> Date: Thu, 7 May 2026 23:18:31 +0000 Subject: [PATCH 1/2] Add May 8 changelog entry Covers the public launches and improvements shipped between May 1 and May 8: the managed-auth-react component library, the Docker sandboxes mixin kit, project-scoped name uniqueness with server-side search, several managed auth reliability fixes, the new -o json output on playwright execute, and related docs and skills updates. Co-Authored-By: Claude Opus 4.7 --- changelog.mdx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/changelog.mdx b/changelog.mdx index 807ed05..d612d56 100644 --- a/changelog.mdx +++ b/changelog.mdx @@ -9,6 +9,23 @@ import { YouTubeVideo } from '/snippets/youtube-video.mdx'; For API library updates, see the [Node SDK](https://github.com/onkernel/kernel-node-sdk/blob/main/CHANGELOG.md), [Python SDK](https://github.com/onkernel/kernel-python-sdk/blob/next/CHANGELOG.md), and [Go SDK](https://github.com/onkernel/kernel-go-sdk/blob/main/CHANGELOG.md) changelogs. + +## Product updates + +- Released [`@onkernel/managed-auth-react`](https://github.com/kernel/managed-auth-react), a drop-in React component library for embedding [managed auth](/auth/overview) flows directly into your app. Ship a Kernel-powered login experience without rebuilding the credential entry, MFA, and SSO dialogs yourself. +- Added a [Docker Sandboxes mixin kit](https://github.com/kernel/docker-sbx-kit) for running Kernel inside Docker's AI sandboxes (`sbx`). The kit ships the [Kernel CLI](https://github.com/kernel/cli), Claude Code [skills](https://github.com/kernel/skills), and a proxy-managed auth header pre-configured, so agents inside the sandbox can call the Kernel API while your real `KERNEL_API_KEY` stays on the host. +- Hardened [Projects](/info/projects) for orgs running many environments: profile, browser pool, extension, and credential names are now scoped per-project (so a `production` profile in one project no longer collides with the same name in another), and the `GET /projects` API and dashboard project selector now support server-side search and pagination for orgs with hundreds of projects. +- Made the [1Password](/integrations/1password) credential dropdown searchable in [managed auth](/auth/overview) dialogs, and stopped page analysis from clicking on out-of-viewport elements — both improve managed auth reliability for users with large 1Password vaults or long sign-in pages. +- Fixed a class of managed auth autofill misfires where TOTP entry, "use another method" switcher detection, and MFA auto-click could write into the wrong visible input field on multi-step pages. +- Managed auth connections will no longer attempt auto-reauth until the connection has had at least one prior successful login, preventing repeated reauth attempts on connections that were never functional in the first place. +- Added `-o json` output to `kernel browsers playwright execute` in the [CLI](https://github.com/kernel/cli), matching the other `browsers` subcommands, so script runs can be piped into other tooling. + +## Documentation updates + +- Documented in the [computer controls](/browsers/computer-controls) docs that computer controls screenshots are faster than CDP screenshots on WebGL-heavy pages, since computer controls bypasses the CDP screenshot path that triggers a full WebGL render. +- Updated `kernel-cli` skill examples in the [Kernel skills repo](https://github.com/kernel/skills) and documented the return value of `playwright execute` so agents can use the result in follow-on steps. + + ## Product updates From f9ee2018419c3d56eca47347484b26e8f4358d0a Mon Sep 17 00:00:00 2001 From: eclairen <236733058+eclairen@users.noreply.github.com> Date: Thu, 7 May 2026 23:39:24 +0000 Subject: [PATCH 2/2] Tighten May 8 changelog entry Trim the Projects bullet, drop the WebGL "why" tail and the out-of-viewport clause, generalize the autofill misfires bullet, and remove the auto-reauth guard bullet per editorial feedback. Co-Authored-By: Claude Opus 4.7 --- changelog.mdx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/changelog.mdx b/changelog.mdx index d612d56..abce5b2 100644 --- a/changelog.mdx +++ b/changelog.mdx @@ -14,15 +14,14 @@ For API library updates, see the [Node SDK](https://github.com/onkernel/kernel-n - Released [`@onkernel/managed-auth-react`](https://github.com/kernel/managed-auth-react), a drop-in React component library for embedding [managed auth](/auth/overview) flows directly into your app. Ship a Kernel-powered login experience without rebuilding the credential entry, MFA, and SSO dialogs yourself. - Added a [Docker Sandboxes mixin kit](https://github.com/kernel/docker-sbx-kit) for running Kernel inside Docker's AI sandboxes (`sbx`). The kit ships the [Kernel CLI](https://github.com/kernel/cli), Claude Code [skills](https://github.com/kernel/skills), and a proxy-managed auth header pre-configured, so agents inside the sandbox can call the Kernel API while your real `KERNEL_API_KEY` stays on the host. -- Hardened [Projects](/info/projects) for orgs running many environments: profile, browser pool, extension, and credential names are now scoped per-project (so a `production` profile in one project no longer collides with the same name in another), and the `GET /projects` API and dashboard project selector now support server-side search and pagination for orgs with hundreds of projects. -- Made the [1Password](/integrations/1password) credential dropdown searchable in [managed auth](/auth/overview) dialogs, and stopped page analysis from clicking on out-of-viewport elements — both improve managed auth reliability for users with large 1Password vaults or long sign-in pages. -- Fixed a class of managed auth autofill misfires where TOTP entry, "use another method" switcher detection, and MFA auto-click could write into the wrong visible input field on multi-step pages. -- Managed auth connections will no longer attempt auto-reauth until the connection has had at least one prior successful login, preventing repeated reauth attempts on connections that were never functional in the first place. +- Extended [Projects](/info/projects): profile, browser pool, extension, and credential names are now scoped per-project, and the `GET /projects` API and dashboard project selector support server-side search and pagination. +- Made the [1Password](/integrations/1password) credential dropdown searchable in [managed auth](/auth/overview) dialogs. +- Improved [managed auth](/auth/overview) autofill reliability on multi-step sign-in pages. - Added `-o json` output to `kernel browsers playwright execute` in the [CLI](https://github.com/kernel/cli), matching the other `browsers` subcommands, so script runs can be piped into other tooling. ## Documentation updates -- Documented in the [computer controls](/browsers/computer-controls) docs that computer controls screenshots are faster than CDP screenshots on WebGL-heavy pages, since computer controls bypasses the CDP screenshot path that triggers a full WebGL render. +- Documented in the [computer controls](/browsers/computer-controls) docs that computer controls screenshots are faster than CDP screenshots on WebGL-heavy pages. - Updated `kernel-cli` skill examples in the [Kernel skills repo](https://github.com/kernel/skills) and documented the return value of `playwright execute` so agents can use the result in follow-on steps.