Separate run create and start
ThePOST /api/v1/runs endpoint now creates a run in submitted status without immediately queuing it. A new POST /api/v1/runs/{id}/start endpoint transitions the run to queued and notifies the scheduler. This two-step lifecycle gives API consumers more control — you can inspect or modify a run’s configuration between creation and execution.
More
API
API
POST /api/v1/runsnow returns a run insubmittedstatus- New
POST /api/v1/runs/{id}/startendpoint queues a submitted run for execution - Removed unused
GET /api/v1/runs/{id}/contextendpoint
Improvements
Improvements
- Run artifacts are now stored as blobs in the run store instead of on disk