From e8500e661a2d2dbe2fcaae545f426bbbacbe4285 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Wed, 2 Aug 2023 17:58:27 +0100 Subject: [PATCH] Changelog --- CHANGELOG.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ccf3c3bf..adc52ee7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -258,17 +258,6 @@ Entity::insert_many([..]).on_conflict(on).do_nothing().exec(db).await; assert!(matches!(res, Ok(TryInsertResult::Conflicted))); ``` -### Upgrades - -* Upgrade `sqlx` to `0.7` https://github.com/SeaQL/sea-orm/pull/1742 -* Upgrade `sea-query` to `0.30` https://github.com/SeaQL/sea-orm/pull/1742 -* Upgrade `sea-schema` to `0.14` https://github.com/SeaQL/sea-orm/pull/1742 -* Upgrade `syn` to `2` https://github.com/SeaQL/sea-orm/pull/1713 -* Upgrade `heck` to `0.4` https://github.com/SeaQL/sea-orm/pull/1520, https://github.com/SeaQL/sea-orm/pull/1544 -* Upgrade `strum` to `0.25` https://github.com/SeaQL/sea-orm/pull/1752 -* Upgrade `clap` to `4.3` https://github.com/SeaQL/sea-orm/pull/1468 -* Upgrade `ouroboros` to `0.17` https://github.com/SeaQL/sea-orm/pull/1724 - ### Bug Fixes * Fixed `DeriveActiveEnum` throwing errors because `string_value` consists non-UAX#31 compliant characters https://github.com/SeaQL/sea-orm/pull/1374 @@ -334,6 +323,17 @@ pub enum Tea { * Definition of `DbErr::ConnectionAcquire` changed to `ConnectionAcquire(ConnAcquireErr)` https://github.com/SeaQL/sea-orm/pull/1737 * `FromJsonQueryResult` removed from entity prelude +### Upgrades + +* Upgrade `sqlx` to `0.7` https://github.com/SeaQL/sea-orm/pull/1742 +* Upgrade `sea-query` to `0.30` https://github.com/SeaQL/sea-orm/pull/1742 +* Upgrade `sea-schema` to `0.14` https://github.com/SeaQL/sea-orm/pull/1742 +* Upgrade `syn` to `2` https://github.com/SeaQL/sea-orm/pull/1713 +* Upgrade `heck` to `0.4` https://github.com/SeaQL/sea-orm/pull/1520, https://github.com/SeaQL/sea-orm/pull/1544 +* Upgrade `strum` to `0.25` https://github.com/SeaQL/sea-orm/pull/1752 +* Upgrade `clap` to `4.3` https://github.com/SeaQL/sea-orm/pull/1468 +* Upgrade `ouroboros` to `0.17` https://github.com/SeaQL/sea-orm/pull/1724 + ### House keeping * Replaced `bae` with `sea-bae` https://github.com/SeaQL/sea-orm/pull/1739