Skip to content

Commit 43fcd45

Browse files
release: 1.23.1 (#797)
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent d7bdcb7 commit 43fcd45

12 files changed

Lines changed: 25 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.23.0"
2+
".": "1.23.1"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 120
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-22ab4a80734e5e3792b7287a1281280d52eff936be4d805011521a1b64e1998d.yml
3-
openapi_spec_hash: d109d3b797016fe7657935d55549cc31
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-8f05915b107d49f4a50f2d83abfa1d7233a685f1d85e02465a218fa5acb55ddd.yml
3+
openapi_spec_hash: 905fa27970b4b7201184df9c63eba3b9
44
config_hash: ed1fdd7c9f0a25647e16b602bad4ff2e

CHANGELOG.md

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

3+
## 1.23.1 (2026-06-09)
4+
5+
Full Changelog: [v1.23.0...v1.23.1](https://github.com/runloopai/api-client-ts/compare/v1.23.0...v1.23.1)
6+
7+
### Features
8+
9+
* **devbox:** add provisioning_tier (flex) to LaunchParameters (alpha) ([#796](https://github.com/runloopai/api-client-ts/issues/796)) ([d7bdcb7](https://github.com/runloopai/api-client-ts/commit/d7bdcb7c028668b3f1c4ccb467f18324f7a0008a))
10+
* **devbox:** expose provisioning_tier=flex in API + SDKs (alpha) ([#9700](https://github.com/runloopai/api-client-ts/issues/9700)) ([c32c279](https://github.com/runloopai/api-client-ts/commit/c32c2799a219dafcb0c1aee6d03dc069c54cc884))
11+
312
## 1.23.0 (2026-06-05)
413

514
Full Changelog: [v1.22.1...v1.23.0](https://github.com/runloopai/api-client-ts/compare/v1.22.1...v1.23.0)

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.23.0",
3+
"version": "1.23.1",
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.23.0",
4+
"version": "1.23.1",
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.23.0",
3+
"version": "1.23.1",
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.23.0',
19+
version: '1.23.1',
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.23.0'; // x-release-please-version
1+
export const VERSION = '1.23.1'; // x-release-please-version

tests/api-resources/benchmarks.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ describe('resource benchmarks', () => {
214214
resume_triggers: { axon_event: true, http: true },
215215
},
216216
network_policy_id: 'network_policy_id',
217+
provisioning_tier: 'standard',
217218
required_services: ['string'],
218219
resource_size_request: 'X_SMALL',
219220
user_parameters: { uid: 0, username: 'username' },

tests/api-resources/blueprints.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ describe('resource blueprints', () => {
5353
resume_triggers: { axon_event: true, http: true },
5454
},
5555
network_policy_id: 'network_policy_id',
56+
provisioning_tier: 'standard',
5657
required_services: ['string'],
5758
resource_size_request: 'X_SMALL',
5859
user_parameters: { uid: 0, username: 'username' },
@@ -203,6 +204,7 @@ describe('resource blueprints', () => {
203204
resume_triggers: { axon_event: true, http: true },
204205
},
205206
network_policy_id: 'network_policy_id',
207+
provisioning_tier: 'standard',
206208
required_services: ['string'],
207209
resource_size_request: 'X_SMALL',
208210
user_parameters: { uid: 0, username: 'username' },
@@ -309,6 +311,7 @@ describe('resource blueprints', () => {
309311
resume_triggers: { axon_event: true, http: true },
310312
},
311313
network_policy_id: 'network_policy_id',
314+
provisioning_tier: 'standard',
312315
required_services: ['string'],
313316
resource_size_request: 'X_SMALL',
314317
user_parameters: { uid: 0, username: 'username' },

0 commit comments

Comments
 (0)