CHANGELOG

This commit is contained in:
Billy Chan 2022-12-20 15:00:09 +08:00
parent 384ac1bea6
commit 83d46d9786
No known key found for this signature in database
GPG Key ID: A2D690CAC7DF3CC7

View File

@ -10,11 +10,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### New Features
* Transactions Isolation level and Access mode https://github.com/SeaQL/sea-orm/pull/1230
* [sea-orm-cli] Generate `#[serde(skip_deserializing)]` for primary key columns https://github.com/SeaQL/sea-orm/pull/846, https://github.com/SeaQL/sea-orm/pull/1186, https://github.com/SeaQL/sea-orm/pull/1318
* [sea-orm-cli] Generate `#[serde(skip)]` for hidden columns https://github.com/SeaQL/sea-orm/pull/1171, https://github.com/SeaQL/sea-orm/pull/1320
* [sea-orm-cli] Generate entity with extra derives and attributes for model struct https://github.com/SeaQL/sea-orm/pull/1124, https://github.com/SeaQL/sea-orm/pull/1321
### Enhancements
* Support Vector of enum for Postgres https://github.com/SeaQL/sea-orm/pull/1210
* Added `DatabaseConnection::close` https://github.com/SeaQL/sea-orm/pull/1236
* Refactor schema module to expose functions for database alteration https://github.com/SeaQL/sea-orm/pull/1256
### Upgrades
@ -32,6 +36,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## 0.10.6 - Pending
### Enhancements
* Cast enum values when constructing update many query https://github.com/SeaQL/sea-orm/pull/1178
### Bug Fixes
* [sea-orm-codegen] Skip implementing Related if the same related entity is being referenced by a conjunct relation https://github.com/SeaQL/sea-orm/pull/1298