• v0.0.2 68e6e3d02e

    v0.0.2
    Some checks failed
    lint / lint (push) Has been cancelled
    / release (push) Has been cancelled
    / pullrequest (push) Has been cancelled
    Stable

    padreug released this 2026-01-03 17:11:02 +00:00 | 0 commits to main since this release

    Fix: SQLite ticket serialization error

    Problem: Creating tickets failed on SQLite with the error:

    type 'dict' is not supported

    This occurred because the extra field (a Pydantic model) was passed as a Python dict to SQLite, which doesn't support complex types.

    Solution:

    • Use db.insert() instead of db.execute() for ticket creation, ensuring proper JSON serialization across all database backends
    • Add JSON parsing in ticket read functions to deserialize the extra field

    Compatibility

    • Tested working on SQLite
    • Test work on PostgreSQL
    • CockroachDB
    Downloads
  • v0.0.1 c49abdb53f

    v0.0.1
    Some checks failed
    lint / lint (push) Has been cancelled
    / release (push) Has been cancelled
    / pullrequest (push) Has been cancelled
    Stable

    padreug released this 2025-12-31 16:08:31 +00:00 | 2 commits to main since this release

    Downloads