Skip to content

Commit f835622

Browse files
release: 1.13.3 (#770)
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 2634c64 commit f835622

6 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.13.2"
2+
".": "1.13.3"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 124
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-c576eb67f119a7eb5815d4a3bf413c652cd7e4c257095e3b6b51967fe72fc00e.yml
3-
openapi_spec_hash: 0a4d20adf725a121e39a3442afa34b32
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-11588dad716c3ded3699f14d5e1c5f847d6d099ce0595430f608386b2d1d7c46.yml
3+
openapi_spec_hash: 60c33284c8248c346994db8b2b399758
44
config_hash: a759c23a5a04ad26f8740acc7e094c01

CHANGELOG.md

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

3+
## 1.13.3 (2026-03-26)
4+
5+
Full Changelog: [v1.13.2...v1.13.3](https://github.com/runloopai/api-client-python/compare/v1.13.2...v1.13.3)
6+
7+
### Bug Fixes
8+
9+
* **api:** surface scenario setup failures instead of silently dropping them ([#8300](https://github.com/runloopai/api-client-python/issues/8300)) ([dd910d0](https://github.com/runloopai/api-client-python/commit/dd910d0e867e9964d24cb792b27dd9b56d670a98))
10+
* **devbox:** `get_tunnel_url` now derives tunnel domain from base url ([#771](https://github.com/runloopai/api-client-python/issues/771)) ([2634c64](https://github.com/runloopai/api-client-python/commit/2634c64f91e187633d0252dcda6449d72631bc09))
11+
12+
13+
### Chores
14+
15+
* **axon:** add axon to sdk readme ([#769](https://github.com/runloopai/api-client-python/issues/769)) ([68afe5a](https://github.com/runloopai/api-client-python/commit/68afe5aa20120ed5c0aed061d540e287df945f6c))
16+
317
## 1.13.2 (2026-03-25)
418

519
Full Changelog: [v1.13.1...v1.13.2](https://github.com/runloopai/api-client-python/compare/v1.13.1...v1.13.2)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "runloop_api_client"
3-
version = "1.13.2"
3+
version = "1.13.3"
44
description = "The official Python library for the runloop API"
55
dynamic = ["readme"]
66
license = "MIT"

src/runloop_api_client/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "runloop_api_client"
4-
__version__ = "1.13.2" # x-release-please-version
4+
__version__ = "1.13.3" # x-release-please-version

src/runloop_api_client/types/benchmark_job_view.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ class BenchmarkOutcomeScenarioOutcome(BaseModel):
5353
scenario_name: str
5454
"""The name of the scenario."""
5555

56-
scenario_run_id: str
57-
"""The ID of the scenario run."""
58-
5956
state: Literal["COMPLETED", "FAILED", "TIMEOUT", "CANCELED"]
6057
"""The final state of the scenario execution."""
6158

@@ -68,6 +65,12 @@ class BenchmarkOutcomeScenarioOutcome(BaseModel):
6865
Contains exception type and message.
6966
"""
7067

68+
scenario_run_id: Optional[str] = None
69+
"""The ID of the scenario run.
70+
71+
May be absent if the scenario failed during setup before a run was created.
72+
"""
73+
7174
score: Optional[float] = None
7275
"""The score achieved for this scenario (0.0 to 1.0).
7376

0 commit comments

Comments
 (0)