All Versions
6
Latest Version
Avg Release Cycle
-
Latest Release
-

Changelog History

  • v0.17.0 Changes

    • ⚡️ Update rusqlite to 0.21
    • ⚡️ Update r2d2_sqlite to 0.14
    • 🛠 Fix database pool being created every time a connection is requested.
  • v0.16.0 Changes

    • Unify the interface for DatabaseMut + Database, EntityMut +Entity into their original name,
    • Breaking change: The query now requires the EntityManager to be passed as mutable.
  • v0.15.4 Changes

    - use thiserror for implementing Error in rustorm_dao
    - rename sq module to a more appropriate sqlite since it does not conflict with the used crate name of sqlite which is rustqlite
    
  • v0.15.3 Changes

    - implement FromValue for converting types that are not in the users' crate
    - remove panics on conversions
    - add supported parameter types
        - `Option<&'a str>`
        - `&Option<T>`
    - implement conversion of numeric to bool
    - add support ToDao, ToTableName, ToColumnNames to borrowed field contained struct
    
  • v0.15.0 Changes

    • Mysql support
    • dao and codegen is not used as local path
  • v0.14.0 Changes

    • Remove dependency to openssl