CHANGELOG

This commit is contained in:
Billy Chan 2024-06-19 20:40:25 +08:00
parent 1c03a28c8a
commit e1ce7c50b1
No known key found for this signature in database
GPG Key ID: 45461E52F22E0279

View File

@ -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