github SeaQL/sea-orm 1.1.12

latest releases: 1.1.19, 1.1.17, 1.1.16...
6 months ago

Enhancements

  • Make sea-orm-cli & sea-orm-migration dependencies optional #2367
  • Relax TransactionError's trait bound for errors to allow anyhow::Error #2602

Bug Fixes

  • Include custom column_name in DeriveColumn Column::from_str impl #2603
#[derive(DeriveEntityModel)]
pub struct Model {
    #[sea_orm(column_name = "lAsTnAmE")]
    last_name: String,
}

assert!(matches!(Column::from_str("lAsTnAmE").unwrap(), Column::LastName));

Don't miss a new sea-orm release

NewReleases is sending notifications on new releases.