>_
.issue.db
/highway-workflow-engine
Dashboard
Issues
Memory
Lessons
Audit Log
New Issue
Edit Issue #216
Update issue details
Title *
Description
## Problem If code changes between runs, old checkpoints may be incompatible with new code. ## Example ```python # Old code: user = ctx.step("fetch_user", lambda: {"id": 1, "name": "Bob"}) # New code: user = ctx.step("fetch_user", lambda: {"id": 1, "name": "Bob", "email": "bob@x"}) # Checkpoint still returns old format without email! ``` ## Impact - Silent data format bugs during replay - No way to detect checkpoint incompatibility - No migration path for cached results ## Solution 1. Add checkpoint version tracking (hash of expected schema) 2. Version incompatibility detection on replay 3. Optional: Migration hooks for checkpoint schema changes ## Effort: Large
Priority
Low
Medium
High
Critical
Status
Open
In Progress
Closed
Due Date (YYYY-MM-DD)
Tags (comma separated)
Related Issues (IDs)
Enter IDs of issues related to this one. They will be linked as 'related'.
Update Issue
Cancel