Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- next
branches-ignore:
- 'generated'
- 'codegen/**'
- 'integrated/**'
- 'stl-preview-head/**'
- 'stl-preview-base/**'

jobs:
lint:
timeout-minutes: 10
name: lint
runs-on: ubuntu-latest
runs-on: ${{ github.repository == 'stainless-sdks/runloop-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand All @@ -30,8 +31,9 @@ jobs:
run: ./scripts/lint

test:
timeout-minutes: 10
name: test
runs-on: ubuntu-latest
runs-on: ${{ github.repository == 'stainless-sdks/runloop-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.31.0"
".": "0.32.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 79
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-29770148092f0f5030e7199308862afc7e46cb12da6081cd045e9db6734d3ac9.yml
openapi_spec_hash: b100a6769bf25a0f873ef32201eba45e
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-ba1b6db5490b976ad56ecea10d380f462ec5b9f8d47d139f87d7fff3e7df330a.yml
openapi_spec_hash: bf76fd15629ea1a4c134c4af5436c78f
config_hash: 4cb90c87fb61338e46c50cea9c42abd7
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## 0.32.0 (2025-04-25)

Full Changelog: [v0.31.0...v0.32.0](https://github.com/runloopai/api-client-python/compare/v0.31.0...v0.32.0)

### Features

* **api:** api update ([cf2ad50](https://github.com/runloopai/api-client-python/commit/cf2ad505284d70de40503c417b3a1183294b7174))


### Bug Fixes

* **pydantic v1:** more robust ModelField.annotation check ([6ac21f3](https://github.com/runloopai/api-client-python/commit/6ac21f3a0ceb614011e1359b7c8d68c85a47b840))


### Chores

* broadly detect json family of content-type headers ([0a09a72](https://github.com/runloopai/api-client-python/commit/0a09a72c20fdf74d044bf074a68629da159d16b7))
* **ci:** add timeout thresholds for CI jobs ([a10bca8](https://github.com/runloopai/api-client-python/commit/a10bca8067d5fdbd5095a7bdc81ff744e5bc1314))
* **ci:** only use depot for staging repos ([84dd6ba](https://github.com/runloopai/api-client-python/commit/84dd6ba5bd4279e8dacad56c04b4aebb20023463))
* **internal:** codegen related update ([fdaff81](https://github.com/runloopai/api-client-python/commit/fdaff81cc4ef7a4ee0455c07a7655868705599c0))
* **internal:** fix list file params ([d74de2f](https://github.com/runloopai/api-client-python/commit/d74de2fab676075f4e46972dbba8f413b1e1160e))
* **internal:** import reformatting ([97a122c](https://github.com/runloopai/api-client-python/commit/97a122c50265888b92b41d6f078209c054a1fb79))
* **internal:** minor formatting changes ([6557c6c](https://github.com/runloopai/api-client-python/commit/6557c6ccf7bb6f6e93b6e29c3c8bbe49ef57d44d))
* **internal:** refactor retries to not use recursion ([88cd023](https://github.com/runloopai/api-client-python/commit/88cd02300c4e5eb6bb763341a71aca3eccbeebae))

## 0.31.0 (2025-04-21)

Full Changelog: [v0.30.0...v0.31.0](https://github.com/runloopai/api-client-python/compare/v0.30.0...v0.31.0)
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ devbox_view = client.devboxes.create(
"keep_alive_time_seconds": 0,
"launch_commands": ["string"],
"resource_size_request": "X_SMALL",
"user_parameters": {
"uid": 0,
"username": "username",
},
},
)
print(devbox_view.launch_parameters)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "runloop_api_client"
version = "0.31.0"
version = "0.32.0"
description = "The official Python library for the runloop API"
dynamic = ["readme"]
license = "MIT"
Expand Down
Loading
Loading