diff --git a/CHANGELOG.md b/CHANGELOG.md index 4513b672..15e33beb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Enhancements * Added non-TLS runtime https://github.com/SeaQL/sea-orm/pull/2256 +* Added `QuerySelect::tbl_col_as` +* Added `Insert::on_conflict_do_nothing` https://github.com/SeaQL/sea-orm/pull/2244 +* Migration schema nullable column set NULL explicitly https://github.com/SeaQL/sea-orm/pull/2255 + +### Bug Fixes + +* Set schema search path in Postgres without enclosing single quote https://github.com/SeaQL/sea-orm/pull/2241 +* [sea-orm-cli] Generate `has_one` relation for foreign key of unique index / constraint https://github.com/SeaQL/sea-orm/pull/2254 ## 1.0.0-rc.5 - 2024-05-29 @@ -47,6 +55,7 @@ pub enum TestEnum { CustomStringValue, // CuStOmStRiNgVaLuE } ``` + ### Enhancements * Added `ActiveValue::set_if_not_equals()` https://github.com/SeaQL/sea-orm/pull/2194