diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 33f2a7378..b0a0b41e5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.11.2" + ".": "1.11.3" } diff --git a/.stats.yml b/.stats.yml index ab8cc33c0..57fda9e71 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 117 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-0568973e19e8af9fa953b2ded109ab2b69e76e90e2b74f33617dbf7092e26274.yml -openapi_spec_hash: 10ba804ce69510d7985e05c77d0ffcf6 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-b56067b06cdf0eb4150f81d8f53e46d9c79b8cbecba6f8c0ee82f798d8cd2447.yml +openapi_spec_hash: 4e0020f255cd31baa79227a5888e1eac config_hash: de99cfce88e2d1f02246dc6c2f43bc6c diff --git a/CHANGELOG.md b/CHANGELOG.md index c3d20ab51..0a77930b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.11.3 (2026-03-19) + +Full Changelog: [v1.11.2...v1.11.3](https://github.com/runloopai/api-client-ts/compare/v1.11.2...v1.11.3) + +### Chores + +* remove dead port configuration code, mark deprecated / ignored in the API ([#8195](https://github.com/runloopai/api-client-ts/issues/8195)) ([8789ee0](https://github.com/runloopai/api-client-ts/commit/8789ee09e6d9256c94ccbebcd2e87c3f8c739c3c)) + ## 1.11.2 (2026-03-19) Full Changelog: [v1.11.1...v1.11.2](https://github.com/runloopai/api-client-ts/compare/v1.11.1...v1.11.2) diff --git a/package.json b/package.json index f9a06d6df..3c85390b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@runloop/api-client", - "version": "1.11.2", + "version": "1.11.3", "description": "The official TypeScript library for the Runloop API", "author": "Runloop ", "types": "dist/sdk.d.ts", diff --git a/packages/mcp-server/manifest.json b/packages/mcp-server/manifest.json index 70704ce07..5bf0d42a3 100644 --- a/packages/mcp-server/manifest.json +++ b/packages/mcp-server/manifest.json @@ -1,7 +1,7 @@ { "dxt_version": "0.2", "name": "@runloop/api-client-mcp", - "version": "1.11.2", + "version": "1.11.3", "description": "The official MCP Server for the Runloop API", "author": { "name": "Runloop", diff --git a/packages/mcp-server/package.json b/packages/mcp-server/package.json index 8ef61f27a..7571ab904 100644 --- a/packages/mcp-server/package.json +++ b/packages/mcp-server/package.json @@ -1,6 +1,6 @@ { "name": "@runloop/api-client-mcp", - "version": "1.11.2", + "version": "1.11.3", "description": "The official MCP Server for the Runloop API", "author": "Runloop ", "types": "dist/index.d.ts", diff --git a/packages/mcp-server/src/server.ts b/packages/mcp-server/src/server.ts index 0d686b2ec..3fba118c5 100644 --- a/packages/mcp-server/src/server.ts +++ b/packages/mcp-server/src/server.ts @@ -16,7 +16,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) => new McpServer( { name: 'runloop_api_client_api', - version: '1.11.2', + version: '1.11.3', }, { instructions: await getInstructions(stainlessApiKey), diff --git a/src/resources/shared.ts b/src/resources/shared.ts index 98baf2c13..62d06f696 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -199,12 +199,6 @@ export interface LaunchParameters { */ architecture?: 'x86_64' | 'arm64' | null; - /** - * A list of ports to make available on the Devbox. Only ports made available will - * be surfaced to create tunnels via the 'createTunnel' API. - */ - available_ports?: Array | null; - /** * Custom CPU cores. Must be 0.5, 1, or a multiple of 2. Max is 16. */ diff --git a/src/version.ts b/src/version.ts index 5cab60c7c..f503a6297 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '1.11.2'; // x-release-please-version +export const VERSION = '1.11.3'; // x-release-please-version diff --git a/tests/api-resources/benchmarks.test.ts b/tests/api-resources/benchmarks.test.ts index 6220f7f70..5fddae066 100644 --- a/tests/api-resources/benchmarks.test.ts +++ b/tests/api-resources/benchmarks.test.ts @@ -197,7 +197,6 @@ describe('resource benchmarks', () => { launchParameters: { after_idle: { idle_time_seconds: 0, on_idle: 'shutdown' }, architecture: 'x86_64', - available_ports: [0], custom_cpu_cores: 0, custom_disk_size: 0, custom_gb_memory: 0, diff --git a/tests/api-resources/blueprints.test.ts b/tests/api-resources/blueprints.test.ts index 888ae59fa..9e8f9861a 100644 --- a/tests/api-resources/blueprints.test.ts +++ b/tests/api-resources/blueprints.test.ts @@ -40,7 +40,6 @@ describe('resource blueprints', () => { launch_parameters: { after_idle: { idle_time_seconds: 0, on_idle: 'shutdown' }, architecture: 'x86_64', - available_ports: [0], custom_cpu_cores: 0, custom_disk_size: 0, custom_gb_memory: 0, @@ -184,7 +183,6 @@ describe('resource blueprints', () => { launch_parameters: { after_idle: { idle_time_seconds: 0, on_idle: 'shutdown' }, architecture: 'x86_64', - available_ports: [0], custom_cpu_cores: 0, custom_disk_size: 0, custom_gb_memory: 0, @@ -283,7 +281,6 @@ describe('resource blueprints', () => { launch_parameters: { after_idle: { idle_time_seconds: 0, on_idle: 'shutdown' }, architecture: 'x86_64', - available_ports: [0], custom_cpu_cores: 0, custom_disk_size: 0, custom_gb_memory: 0, diff --git a/tests/api-resources/devboxes/devboxes.test.ts b/tests/api-resources/devboxes/devboxes.test.ts index a169ed73e..21297c1df 100644 --- a/tests/api-resources/devboxes/devboxes.test.ts +++ b/tests/api-resources/devboxes/devboxes.test.ts @@ -50,7 +50,6 @@ describe('resource devboxes', () => { launch_parameters: { after_idle: { idle_time_seconds: 0, on_idle: 'shutdown' }, architecture: 'x86_64', - available_ports: [0], custom_cpu_cores: 0, custom_disk_size: 0, custom_gb_memory: 0, diff --git a/tests/api-resources/scenarios/scenarios.test.ts b/tests/api-resources/scenarios/scenarios.test.ts index 84e05196a..4d921e3c6 100644 --- a/tests/api-resources/scenarios/scenarios.test.ts +++ b/tests/api-resources/scenarios/scenarios.test.ts @@ -62,7 +62,6 @@ describe('resource scenarios', () => { launch_parameters: { after_idle: { idle_time_seconds: 0, on_idle: 'shutdown' }, architecture: 'x86_64', - available_ports: [0], custom_cpu_cores: 0, custom_disk_size: 0, custom_gb_memory: 0, @@ -132,7 +131,6 @@ describe('resource scenarios', () => { launch_parameters: { after_idle: { idle_time_seconds: 0, on_idle: 'shutdown' }, architecture: 'x86_64', - available_ports: [0], custom_cpu_cores: 0, custom_disk_size: 0, custom_gb_memory: 0, @@ -283,7 +281,6 @@ describe('resource scenarios', () => { launchParameters: { after_idle: { idle_time_seconds: 0, on_idle: 'shutdown' }, architecture: 'x86_64', - available_ports: [0], custom_cpu_cores: 0, custom_disk_size: 0, custom_gb_memory: 0,