Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.110.0"
".": "0.111.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.111.0](https://github.com/kernel/kernel-node-sdk/compare/v0.110.0...v0.111.0) (2026-09-18)


### Features

* Publish restricted_route_unavailable and unknown proxy_error codes ([e1593e6](https://github.com/kernel/kernel-node-sdk/commit/e1593e60bd25ccf001acf7ad35ebc46e1c00dffc))

## [0.110.0](https://github.com/kernel/kernel-node-sdk/compare/v0.109.0...v0.110.0) (2026-09-18)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onkernel/sdk",
"version": "0.110.0",
"version": "0.111.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
21 changes: 17 additions & 4 deletions src/resources/browsers/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4338,20 +4338,25 @@ export namespace BrowserProxyErrorEvent {
* Proxy-layer error code: the X-Kernel-Proxy-Error response header value from a
* branded 5xx error page served by the metro egress host-proxy. Values mirror what
* the proxy emits: destination_blocked, provider_blacklisted,
* provider_unreachable, provider_rejected, origin_tls_timeout, proxy_unavailable,
* upstream_timeout, upstream_dns_failure, upstream_connect_failed. Unknown header
* values are dropped.
* provider_unreachable, provider_rejected, origin_tls_timeout,
* origin_response_incomplete, proxy_unavailable, restricted_route_unavailable,
* upstream_timeout, upstream_dns_failure, upstream_connect_failed. A header value
* the browser image does not recognize is reported as unknown, with the header
* value in raw_code.
*/
code:
| 'destination_blocked'
| 'provider_blacklisted'
| 'provider_unreachable'
| 'provider_rejected'
| 'origin_tls_timeout'
| 'origin_response_incomplete'
| 'proxy_unavailable'
| 'restricted_route_unavailable'
| 'upstream_timeout'
| 'upstream_dns_failure'
| 'upstream_connect_failed';
| 'upstream_connect_failed'
| 'unknown';

/**
* CDP request identifier matching the originating request.
Expand All @@ -4368,6 +4373,14 @@ export namespace BrowserProxyErrorEvent {
*/
method?: string;

/**
* Sanitized X-Kernel-Proxy-Error header value, present only when code is unknown.
* Surrounding whitespace is removed, the value is lowercased, characters outside
* [a-z0-9_] are replaced with \_, and the result is truncated to at most 64
* characters.
*/
raw_code?: string;

/**
* CDP Network.ResourceType for the request, when known.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.110.0'; // x-release-please-version
export const VERSION = '0.111.0'; // x-release-please-version
Loading