From 83d46d9786293b798da32478b5d3f27f75e674d8 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Tue, 20 Dec 2022 15:00:09 +0800 Subject: [PATCH] CHANGELOG --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92783f115..e561dec09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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