From 473b769386c68315cf06e8a364effbda75eefc9f Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Thu, 13 Apr 2023 11:04:15 +0800 Subject: [PATCH] CHANGELOG --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2544f0a..320a1d5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,8 @@ assert_eq!(migration.name(), "m20220118_000002_create_fruit_table"); 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 ### Upgrades @@ -101,6 +103,12 @@ pub enum StringValueVariant { * 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 ## 0.11.3 - Pending