Skip to content

Commit 4e45d5a

Browse files
release: 1.15.0
1 parent 8d763c8 commit 4e45d5a

7 files changed

Lines changed: 40 additions & 8 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: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
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+
* **sdk:** add AxonListParams support and auto-pagination to AxonOps.list() ([774e446](https://github.com/runloopai/api-client-ts/commit/774e446b5501b4290c4ef1c24e928435d0b7dab7))
14+
15+
16+
### Bug Fixes
17+
18+
* **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))
19+
20+
21+
### Chores
22+
23+
* **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))
24+
* **internal:** update multipart form array serialization ([0e3588b](https://github.com/runloopai/api-client-ts/commit/0e3588bf164cf4aff54a2b0cb4f3ff5776a7e800))
25+
26+
27+
### Documentation
28+
29+
* **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))
30+
331
## 1.14.1 (2026-03-25)
432

533
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: 7 additions & 3 deletions
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",
@@ -18,7 +18,9 @@
1818
"entry_point": "index.js",
1919
"mcp_config": {
2020
"command": "node",
21-
"args": ["${__dirname}/index.js"],
21+
"args": [
22+
"${__dirname}/index.js"
23+
],
2224
"env": {
2325
"RUNLOOP_API_KEY": "${user_config.RUNLOOP_API_KEY}"
2426
}
@@ -39,5 +41,7 @@
3941
"node": ">=18.0.0"
4042
}
4143
},
42-
"keywords": ["api"]
44+
"keywords": [
45+
"api"
46+
]
4347
}

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)