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 @@
{
".": "1.15.0"
".": "1.16.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 116
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-c33fa67077f6f9cc8cb6d82a71657693f7288e1eff48b7b94099f2f11966b67b.yml
openapi_spec_hash: 4329105152eb16bc5d2063038603ea61
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-8ea4486cd6de6410a6648545710d617f175994f8d12753783585029ce22c225c.yml
openapi_spec_hash: fcb07ce127f4290f1dac51db130365aa
config_hash: 6649774d90af30c3559d6a242b6cb4b0
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 1.16.0 (2026-04-02)

Full Changelog: [v1.15.0...v1.16.0](https://github.com/runloopai/api-client-ts/compare/v1.15.0...v1.16.0)

### Features

* **benchmark-runs:** add state filter and multi-value benchmark_id support to listBenchmarkRuns ([#8480](https://github.com/runloopai/api-client-ts/issues/8480)) ([12c55bb](https://github.com/runloopai/api-client-ts/commit/12c55bb86eb4a16539e496131a075159c43fa85b))


### Bug Fixes

* Fix slow list endpoints for object oriented sdk ([#767](https://github.com/runloopai/api-client-ts/issues/767)) ([1f26406](https://github.com/runloopai/api-client-ts/commit/1f264066eb3a66e0e4705508c7ecb7c536b52600))

## 1.15.0 (2026-04-01)

Full Changelog: [v1.14.1...v1.15.0](https://github.com/runloopai/api-client-ts/compare/v1.14.1...v1.15.0)
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": "@runloop/api-client",
"version": "1.15.0",
"version": "1.16.0",
"description": "The official TypeScript library for the Runloop API",
"author": "Runloop <support@runloop.ai>",
"types": "dist/sdk.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dxt_version": "0.2",
"name": "@runloop/api-client-mcp",
"version": "1.15.0",
"version": "1.16.0",
"description": "The official MCP Server for the Runloop API",
"author": {
"name": "Runloop",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@runloop/api-client-mcp",
"version": "1.15.0",
"version": "1.16.0",
"description": "The official MCP Server for the Runloop API",
"author": "Runloop <support@runloop.ai>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
new McpServer(
{
name: 'runloop_api_client_api',
version: '1.15.0',
version: '1.16.0',
},
{
instructions: await getInstructions(stainlessApiKey),
Expand Down
5 changes: 5 additions & 0 deletions src/resources/benchmark-runs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,11 @@ export interface BenchmarkRunListParams extends BenchmarkRunsCursorIDPageParams
* Filter by name
*/
name?: string;

/**
* Filter by state
*/
state?: string;
}

export interface BenchmarkRunListScenarioRunsParams extends BenchmarkRunsCursorIDPageParams {
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 = '1.15.0'; // x-release-please-version
export const VERSION = '1.16.0'; // x-release-please-version
1 change: 1 addition & 0 deletions tests/api-resources/benchmark-runs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ describe('resource benchmarkRuns', () => {
limit: 0,
name: 'name',
starting_after: 'starting_after',
state: 'state',
},
{ path: '/_stainless_unknown_path' },
),
Expand Down
Loading