From cb59e8bcb4578a8abc8c31902a80ec491949310b Mon Sep 17 00:00:00 2001 From: Rob von Behren Date: Tue, 9 Jun 2026 11:43:04 -0700 Subject: [PATCH 1/2] feat(devbox): add provisioning_tier (flex) to LaunchParameters (alpha) (#808) Co-authored-by: Reflex --- src/runloop_api_client/types/shared/launch_parameters.py | 6 ++++++ .../types/shared_params/launch_parameters.py | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/runloop_api_client/types/shared/launch_parameters.py b/src/runloop_api_client/types/shared/launch_parameters.py index 6dc7c5544..c7d8858df 100644 --- a/src/runloop_api_client/types/shared/launch_parameters.py +++ b/src/runloop_api_client/types/shared/launch_parameters.py @@ -74,6 +74,12 @@ class LaunchParameters(BaseModel): will inherit this policy unless explicitly overridden. """ + provisioning_tier: Optional[Literal["standard", "flex"]] = None + """(Optional, Alpha) standard is default and flex is lazily provisioned and may be pre-empted. + + This is an alpha feature and its behavior may change without notice. + """ + required_services: Optional[List[str]] = None """A list of ContainerizedService names to be started when a Devbox is created. diff --git a/src/runloop_api_client/types/shared_params/launch_parameters.py b/src/runloop_api_client/types/shared_params/launch_parameters.py index 0f53354c5..2d220261d 100644 --- a/src/runloop_api_client/types/shared_params/launch_parameters.py +++ b/src/runloop_api_client/types/shared_params/launch_parameters.py @@ -76,6 +76,12 @@ class LaunchParameters(TypedDict, total=False): will inherit this policy unless explicitly overridden. """ + provisioning_tier: Optional[Literal["standard", "flex"]] + """(Optional, Alpha) standard is default and flex is lazily provisioned and may be pre-empted. + + This is an alpha feature and its behavior may change without notice. + """ + required_services: Optional[SequenceNotStr[str]] """A list of ContainerizedService names to be started when a Devbox is created. From 0f68442d8d59752d72fafec85c6e947523daab3e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 9 Jun 2026 11:58:15 -0700 Subject: [PATCH 2/2] release: 1.23.1 (#809) Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/runloop_api_client/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cdcf20eb7..276cb37a7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.23.0" + ".": "1.23.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 675cadc1f..c559dc2e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.23.1 (2026-06-09) + +Full Changelog: [v1.23.0...v1.23.1](https://github.com/runloopai/api-client-python/compare/v1.23.0...v1.23.1) + +### Features + +* **devbox:** add provisioning_tier (flex) to LaunchParameters (alpha) ([#808](https://github.com/runloopai/api-client-python/issues/808)) ([cb59e8b](https://github.com/runloopai/api-client-python/commit/cb59e8bcb4578a8abc8c31902a80ec491949310b)) + ## 1.23.0 (2026-06-05) Full Changelog: [v1.22.1...v1.23.0](https://github.com/runloopai/api-client-python/compare/v1.22.1...v1.23.0) diff --git a/pyproject.toml b/pyproject.toml index 8c5d5cea6..a2d871f4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "runloop_api_client" -version = "1.23.0" +version = "1.23.1" description = "The official Python library for the runloop API" dynamic = ["readme"] license = "MIT" diff --git a/src/runloop_api_client/_version.py b/src/runloop_api_client/_version.py index a99d41677..8a358d286 100644 --- a/src/runloop_api_client/_version.py +++ b/src/runloop_api_client/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "runloop_api_client" -__version__ = "1.23.0" # x-release-please-version +__version__ = "1.23.1" # x-release-please-version