Releases: SeaQL/sea-orm
Releases Β· SeaQL/sea-orm
1.1.5
1.1.4
1.1.3
New Features
- [sea-orm-codegen] register seaography entity modules & active enums #2403
pub mod prelude;
pub mod sea_orm_active_enums;
pub mod baker;
pub mod bakery;
pub mod cake;
pub mod cakes_bakers;
pub mod customer;
pub mod lineitem;
pub mod order;
seaography::register_entity_modules!([
baker,
bakery,
cake,
cakes_bakers,
customer,
lineitem,
order,
]);
seaography::register_active_enums!([
sea_orm_active_enums::Tea,
sea_orm_active_enums::Color,
]);Enhancements
- Insert many allow active models to have different column set #2433
// this previously panics
let apple = cake_filling::ActiveModel {
cake_id: ActiveValue::set(2),
filling_id: ActiveValue::NotSet,
};
let orange = cake_filling::ActiveModel {
cake_id: ActiveValue::NotSet,
filling_id: ActiveValue::set(3),
};
assert_eq!(
Insert::<cake_filling::ActiveModel>::new()
.add_many([apple, orange])
.build(DbBackend::Postgres)
.to_string(),
r#"INSERT INTO "cake_filling" ("cake_id", "filling_id") VALUES (2, NULL), (NULL, 3)"#,
);- [sea-orm-cli] Added
MIGRATION_DIRenvironment variable #2419 - Added
ColumnDef::is_unique#2401 - Postgres: quote schema in
search_path#2436
Bug Fixes
- MySQL: fix transaction isolation level not respected when used with access mode #2450
1.1.2
1.1.1
Enhancements
- [sea-orm-macros]
impl From<Model> for ActiveModelinstead ofimpl From<<Entity as sea_orm::EntityTrait>::Model> for ActiveModel#2349.
Now the following can compile:
use sea_orm::{tests_cfg::cake, Set};
struct Cake {
id: i32,
name: String,
}
impl From<Cake> for cake::ActiveModel {
fn from(value: Cake) -> Self {
Self {
id: Set(value.id),
name: Set(value.name),
}
}
}1.1.0
Enhancements
- [sea-orm-macros] Call
EnumIter::getusing fully qualified syntax #2321 - Construct
DatabaseConnectiondirectly fromsqlx::PgPool,sqlx::SqlitePoolandsqlx::MySqlPool#2348 - [sea-orm-migration] Add
pk_uuidschema helper #2329 - [sea-orm-migration] Allow
customandcustom_nullschema helper to take column name and alias of differentIntoIdentypes #2326 - Add
ColumnDef::get_column_defaultgetter #2387
Upgrades
- Upgrade
sqlxto0.8.2#2305, #2371 - Upgrade
bigdecimalto0.4#2305 - Upgrade
sea-queryto0.32.0-rc#2305 - Upgrade
sea-query-binderto0.7.0-rc#2305 - Upgrade
sea-schemato0.16.0-rc#2305 - Upgrade
ouroborosto0.18#2353
House keeping
1.1.0-rc.3
Enhancements
- Add
ColumnDef::get_column_defaultgetter #2387
1.1.0-rc.2
Enhancements
- [sea-orm-macros] Call
EnumIter::getusing fully qualified syntax #2321 - Construct
DatabaseConnectiondirectly fromsqlx::PgPool,sqlx::SqlitePoolandsqlx::MySqlPool#2348 - [sea-orm-migration] Add
pk_uuidschema helper #2329 - [sea-orm-migration] Allow
customandcustom_nullschema helper to take column name and alias of differentIntoIdentypes #2326
Upgrades
House keeping
1.0.1
New Features
- Added
ConnectOptions::connect_lazyfor creating DB connection pools without establishing connections up front #2268
Breaking Changes
- Changed
ProxyDatabaseTraitmethods to async. It's a breaking change, but it should have been part of the 1.0 release.
The feature is behind the feature guardproxy, and we believe it shouldn't impact majority of users.
#2278
Bug Fixes
- [sea-orm-codegen] Fix
ColumnTypeto Rust type resolution #2313