From cd00ba371d06c7328d9a927df7dd679b5fcdcbbd Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Thu, 27 Apr 2023 23:34:55 +0800 Subject: [PATCH] Changelog --- CHANGELOG.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8def5f1f..c03c190c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -199,6 +199,13 @@ assert_eq!(migration.status(), MigrationStatus::Pending); * The `postgres-array` feature will be enabled when `sqlx-postgres` backend is selected https://github.com/SeaQL/sea-orm/pull/1565 * Implements `IntoMockRow` for any `BTreeMap` that is indexed by string `impl IntoMockRow for BTreeMap where T: Into` https://github.com/SeaQL/sea-orm/pull/1439 * Converts any string value into `ConnectOptions` - `impl From for ConnectOptions where T: Into` https://github.com/SeaQL/sea-orm/pull/1439 +* The Variant Enum generated by `DeriveActiveEnum` will properly escape non-UAX#31 compliant characters +* Changed the parameter of method `ConnectOptions::new(T) where T: Into` to takes any string SQL https://github.com/SeaQL/sea-orm/pull/1439 +* Changed the parameter of method `Statement::from_string(DbBackend, T) where T: Into` to takes any string SQL https://github.com/SeaQL/sea-orm/pull/1439 +* Changed the parameter of method `Statement::from_sql_and_values(DbBackend, T, I) where I: IntoIterator, T: Into` to takes any string SQL https://github.com/SeaQL/sea-orm/pull/1439 +* Changed the parameter of method `Transaction::from_sql_and_values(DbBackend, T, I) where I: IntoIterator, T: Into` to takes any string SQL https://github.com/SeaQL/sea-orm/pull/1439 +* Changed the parameter of method `ConnectOptions::set_schema_search_path(T) where T: Into` to takes any string https://github.com/SeaQL/sea-orm/pull/1439 +* Changed the parameter of method `ColumnTrait::like()`, `ColumnTrait::not_like()`, `ColumnTrait::starts_with()`, `ColumnTrait::ends_with()` and `ColumnTrait::contains()` to takes any string https://github.com/SeaQL/sea-orm/pull/1439 ### Upgrades @@ -282,18 +289,11 @@ CREATE TABLE users_saved_bills ### Breaking changes -* Supports for partial select of `Option` model field. A `None` value will be filled when the select result does not contain the `Option` field without throwing an error. https://github.com/SeaQL/sea-orm/pull/1513 -* Added `derive` and `strum` features to `sea-orm-macros` -* Replaced `sea-strum` dependency with `strum` in `sea-orm` -* Re-exported `sea_orm_macros::EnumIter` instead of `strum::EnumIter` on the root of `sea-orm` -* The Variant Enum generated by `DeriveActiveEnum` will properly escape non-UAX#31 compliant characters -* Changed the parameter of method `ConnectOptions::new(T) where T: Into` to takes any string SQL https://github.com/SeaQL/sea-orm/pull/1439 -* Changed the parameter of method `Statement::from_string(DbBackend, T) where T: Into` to takes any string SQL https://github.com/SeaQL/sea-orm/pull/1439 -* Changed the parameter of method `Statement::from_sql_and_values(DbBackend, T, I) where I: IntoIterator, T: Into` to takes any string SQL https://github.com/SeaQL/sea-orm/pull/1439 -* Changed the parameter of method `Transaction::from_sql_and_values(DbBackend, T, I) where I: IntoIterator, T: Into` to takes any string SQL https://github.com/SeaQL/sea-orm/pull/1439 -* Changed the parameter of method `ConnectOptions::set_schema_search_path(T) where T: Into` to takes any string https://github.com/SeaQL/sea-orm/pull/1439 -* Changed the parameter of method `ColumnTrait::like()`, `ColumnTrait::not_like()`, `ColumnTrait::starts_with()`, `ColumnTrait::ends_with()` and `ColumnTrait::contains()` to takes any string https://github.com/SeaQL/sea-orm/pull/1439 -* Added `Identity::Many` https://github.com/SeaQL/sea-orm/pull/1508 +* Supports for partial select of `Option` model field. A `None` value will be filled when the select result does not contain the `Option` field instead of throwing an error. https://github.com/SeaQL/sea-orm/pull/1513 +* Replaced `sea-strum` dependency with upstream `strum` in `sea-orm` + * Added `derive` and `strum` features to `sea-orm-macros` + * The derive macro `EnumIter` is now shipped by `sea-orm-macros` +* Added a new variant `Many` to `Identity` https://github.com/SeaQL/sea-orm/pull/1508 ## 0.11.3 - 2023-04-24