Skip to content

Commit a678dd0

Browse files
release: 1.15.0
1 parent e782319 commit a678dd0

7 files changed

Lines changed: 33 additions & 6 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.14.1"
2+
".": "1.15.0"
33
}

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## 1.15.0 (2026-03-31)
4+
5+
Full Changelog: [v1.14.1...v1.15.0](https://github.com/runloopai/api-client-ts/compare/v1.14.1...v1.15.0)
6+
7+
### Features
8+
9+
* add archive / unarchive to benchmarks ([#8391](https://github.com/runloopai/api-client-ts/issues/8391)) ([674d8f2](https://github.com/runloopai/api-client-ts/commit/674d8f2b14a45df1443505130f5e0b925677b77e))
10+
* Add axon list filters by id and name ([#8384](https://github.com/runloopai/api-client-ts/issues/8384)) ([f90a701](https://github.com/runloopai/api-client-ts/commit/f90a701edacfe1eb8995fc0c760a0fb3068f0bbd))
11+
* Add pagination to list active axons ([#8359](https://github.com/runloopai/api-client-ts/issues/8359)) ([7e07f45](https://github.com/runloopai/api-client-ts/commit/7e07f454e813080981196924457ad70ff46774b9))
12+
* **sdk:** add `ScenarioBuilder` class to OO-SDK ([#748](https://github.com/runloopai/api-client-ts/issues/748)) ([f80ed4c](https://github.com/runloopai/api-client-ts/commit/f80ed4c30c8e4c3998460a6f12bd862f7f9d96ac))
13+
14+
15+
### Bug Fixes
16+
17+
* **api:** surface scenario setup failures instead of silently dropping them ([#8300](https://github.com/runloopai/api-client-ts/issues/8300)) ([b459a1f](https://github.com/runloopai/api-client-ts/commit/b459a1f1cb4b443f7bc36e45bc5c217fbb1f5a09))
18+
19+
20+
### Chores
21+
22+
* **axon:** add axon auto-pagination to stainless sdks ([#8420](https://github.com/runloopai/api-client-ts/issues/8420)) ([e782319](https://github.com/runloopai/api-client-ts/commit/e782319ae1a95fcd27a4b556ffce3d81b0d2d859))
23+
* **internal:** update multipart form array serialization ([0e3588b](https://github.com/runloopai/api-client-ts/commit/0e3588bf164cf4aff54a2b0cb4f3ff5776a7e800))
24+
25+
26+
### Documentation
27+
28+
* **api:** document vCPU, RAM, and disk for resource_size_request ([#8368](https://github.com/runloopai/api-client-ts/issues/8368)) ([1c89e57](https://github.com/runloopai/api-client-ts/commit/1c89e572b67bba3fe608002373ee94392c4ad9e3))
29+
330
## 1.14.1 (2026-03-25)
431

532
Full Changelog: [v1.14.0...v1.14.1](https://github.com/runloopai/api-client-ts/compare/v1.14.0...v1.14.1)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@runloop/api-client",
3-
"version": "1.14.1",
3+
"version": "1.15.0",
44
"description": "The official TypeScript library for the Runloop API",
55
"author": "Runloop <support@runloop.ai>",
66
"types": "dist/sdk.d.ts",

packages/mcp-server/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "@runloop/api-client-mcp",
4-
"version": "1.14.1",
4+
"version": "1.15.0",
55
"description": "The official MCP Server for the Runloop API",
66
"author": {
77
"name": "Runloop",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@runloop/api-client-mcp",
3-
"version": "1.14.1",
3+
"version": "1.15.0",
44
"description": "The official MCP Server for the Runloop API",
55
"author": "Runloop <support@runloop.ai>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
1616
new McpServer(
1717
{
1818
name: 'runloop_api_client_api',
19-
version: '1.14.1',
19+
version: '1.15.0',
2020
},
2121
{
2222
instructions: await getInstructions(stainlessApiKey),

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.14.1'; // x-release-please-version
1+
export const VERSION = '1.15.0'; // x-release-please-version

0 commit comments

Comments
 (0)