Skip to content
Merged
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.62.0"
".": "0.63.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 117
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-e6c711f0d29a7d956cc8ca621440da966c1f1575b1205d01328b1099edf1c517.yml
openapi_spec_hash: c06e7e36de1c6f9b29b54a6e3dc08ee5
config_hash: 36159c262d293fbeacf513ab600a1729
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-8f84f4214a8024d8ea62ee639eeaf2fa26900fabe23c8b87accb41d529a0bf4f.yml
openapi_spec_hash: db14f415438b3d338d9376bddc83a5cf
config_hash: 590bf8cb85948cf1e63b7b5ef60686c8
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.63.0 (2026-06-05)

Full Changelog: [v0.62.0...v0.63.0](https://github.com/kernel/kernel-node-sdk/compare/v0.62.0...v0.63.0)

### Features

* **api:** allow setting a custom name on a browser session at create time ([1c1b647](https://github.com/kernel/kernel-node-sdk/commit/1c1b647518635e41e9ff3aec818917c9f7d02ab9))
* **api:** allow setting key-value tags on a browser session at create time ([93f8e0e](https://github.com/kernel/kernel-node-sdk/commit/93f8e0e46477364d095503e0d0c276e4f14d2bbc))


### Documentation

* **api:** use neutral example for browser session name field ([316ea2e](https://github.com/kernel/kernel-node-sdk/commit/316ea2eb22cee52340deb53299bb131c9391aa6e))

## 0.62.0 (2026-06-04)

Full Changelog: [v0.61.0...v0.62.0](https://github.com/kernel/kernel-node-sdk/compare/v0.61.0...v0.62.0)
Expand Down
1 change: 1 addition & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Types:
- <code><a href="./src/resources/browsers/browsers.ts">BrowserPoolRef</a></code>
- <code><a href="./src/resources/browsers/browsers.ts">BrowserUsage</a></code>
- <code><a href="./src/resources/browsers/browsers.ts">Profile</a></code>
- <code><a href="./src/resources/browsers/browsers.ts">Tags</a></code>
- <code><a href="./src/resources/browsers/browsers.ts">BrowserCreateResponse</a></code>
- <code><a href="./src/resources/browsers/browsers.ts">BrowserRetrieveResponse</a></code>
- <code><a href="./src/resources/browsers/browsers.ts">BrowserUpdateResponse</a></code>
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.62.0",
"version": "0.63.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
5 changes: 2 additions & 3 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ import {
BrowserUsage,
Browsers,
Profile,
Tags,
} from './resources/browsers/browsers';
import {
CreateProjectRequest,
Expand Down Expand Up @@ -403,9 +404,6 @@ export class Kernel {
return buildHeaders([{ Authorization: `Bearer ${this.apiKey}` }]);
}

/**
* Basic re-implementation of `qs.stringify` for primitive types.
*/
protected stringifyQuery(query: object | Record<string, unknown>): string {
return stringifyQuery(query);
}
Expand Down Expand Up @@ -1059,6 +1057,7 @@ export declare namespace Kernel {
type BrowserPoolRef as BrowserPoolRef,
type BrowserUsage as BrowserUsage,
type Profile as Profile,
type Tags as Tags,
type BrowserCreateResponse as BrowserCreateResponse,
type BrowserRetrieveResponse as BrowserRetrieveResponse,
type BrowserUpdateResponse as BrowserUpdateResponse,
Expand Down
13 changes: 13 additions & 0 deletions src/internal/qs/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
BSD 3-Clause License

Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/puruvj/neoqs/graphs/contributors) All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3 changes: 3 additions & 0 deletions src/internal/qs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# qs

This is a vendored version of [neoqs](https://github.com/PuruVJ/neoqs) which is a TypeScript rewrite of [qs](https://github.com/ljharb/qs), a query string library.
10 changes: 10 additions & 0 deletions src/internal/qs/formats.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import type { Format } from './types';

export const default_format: Format = 'RFC3986';
export const default_formatter = (v: PropertyKey) => String(v);
export const formatters: Record<Format, (str: PropertyKey) => string> = {
RFC1738: (v: PropertyKey) => String(v).replace(/%20/g, '+'),
RFC3986: default_formatter,
};
export const RFC1738 = 'RFC1738';
export const RFC3986 = 'RFC3986';
13 changes: 13 additions & 0 deletions src/internal/qs/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { default_format, formatters, RFC1738, RFC3986 } from './formats';

const formats = {
formatters,
RFC1738,
RFC3986,
default: default_format,
};

export { stringify } from './stringify';
export { formats };

export type { DefaultDecoder, DefaultEncoder, Format, ParseOptions, StringifyOptions } from './types';
Loading
Loading