From e1ce7c50b1a5ce2ba472fec340705e8d483b5615 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Wed, 19 Jun 2024 20:40:25 +0800 Subject: [PATCH] CHANGELOG --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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