From 7eaac3843d25d58deef6f20a9ed01138cdd6e1bb Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Thu, 6 Oct 2022 23:42:01 +0800 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd868ee3..c4121bc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,10 +12,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). * Generate entity files as a library or module https://github.com/SeaQL/sea-orm/pull/953 * Generate a new migration template with name prefix of unix timestamp https://github.com/SeaQL/sea-orm/pull/947 -### Breaking changes - -* Replaced `usize` with `u64` in `PaginatorTrait` https://github.com/SeaQL/sea-orm/pull/789 - ### Enhancements * `fn column()` also handle enum type https://github.com/SeaQL/sea-orm/pull/973 @@ -25,6 +21,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). * `migrate fresh` command will drop all PostgreSQL types https://github.com/SeaQL/sea-orm/pull/864, https://github.com/SeaQL/sea-orm/pull/991 * Generate entity derive `Eq` if possible https://github.com/SeaQL/sea-orm/pull/988 +### Bug fixes + +* Trim spaces when paginating raw SQL https://github.com/SeaQL/sea-orm/pull/1094 + +### Breaking changes + +* Replaced `usize` with `u64` in `PaginatorTrait` https://github.com/SeaQL/sea-orm/pull/789 + ### House keeping * Documentation grammar fixes https://github.com/SeaQL/sea-orm/pull/1050