Release v1.0.0 – Loco is stable Loco released v1.0.0, its first stable version, featuring Sea-ORM 2.0, first-class LLM/agent support, priority queues, and a major dependency modernization. The release introduces breaking changes including 64-bit primary keys, a Redis backend switch to Sorted Sets for priority queues, and the merger of MirrorStrategy and BackupStrategy into ReplicatedStrategy. 1.0.0 - 2026-07-25 1.0.0 is the first stable Loco release — a single, intentionally-breaking milestone. Its headline is the move to Sea-ORM 2.0 , alongside first-class LLM/agent support, priority queues, a broad dependency modernization, and a deep hardening pass across the queue, storage, config, error, remote-IP, and middleware subsystems. Follow the step-by-step 0.16 → 1.0 upgrade guide https://loco.rs/docs/extras/upgrades/ . Breaking Changes Sea-ORM 2.0 + sqlx 0.9. Bump sea-orm / sea-orm-migration to 2.0 app + migration crate , direct sqlx to 0.9 , update the Sea-ORM CLI, and regenerate entities. Raw- Statement calls gain a raw suffix; runtime SQL strings need AssertSqlSafe . MSRV is 1.94 sea-orm 2.0.0 declares it . Adopted from the SeaQL fork and 1698 https://github.com/loco-rs/loco/pull/1698 . Generated primary/foreign keys are now 64-bit BIGINT / Also the i64 . int / unsigned field types generate 64-bit columns. Only affects newly generated code; existing tables are untouched. Priority queues — Redis backend change. The Redis worker moved from Lists to Sorted Sets ZSET to support priority; drain existing Redis queues before . Postgres/SQLite auto-migrate a upgrading priority column no action . 1693 https://github.com/loco-rs/loco/pull/1693 Worker::perform later returns the job ID Result