From d19fed5a17871c8fc7e305cc0329760f87a827df Mon Sep 17 00:00:00 2001 From: Michael Yali Date: Fri, 26 Jul 2019 12:20:34 +0300 Subject: [PATCH] docs(changelog): updated with v4.2.0 changes --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dda2bd4..4b50edc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## [4.2.0] - 2019-07-26 + +### Features + +- **crud** added support for older versions of `UUID` ([#186]) + +### Bug Fixes + +- **crud** fixed `BulkDto` swagger description ([#159]) +- **crud** fixed `CrudRequestInterceptor` request parsing +- **requests** added `@nestjsx/util` as a dependency ([#184]) +- **requests** fixed condition operators mapping ([#148]) +- **requests** fixed ISO date string validation ([#161]) +- **typeorm** fixed filtering and sorting by nested fields ([#105]) +- **typeorm** fixed `too many nested levels` exception ([#87]) +- **typeorm** fixed pagination `pageCount` ([#179]) + +### Deps + +- **dev** updated deps + ## [4.1.0] - 2019-06-27 ### Features @@ -41,6 +62,7 @@ - several fixes +[4.2.0]: https://github.com/nestjsx/crud/compare/v4.1.0...v4.2.0 [4.1.0]: https://github.com/nestjsx/crud/compare/v4.0.1...v4.1.0 [4.0.1]: https://github.com/nestjsx/crud/compare/v4.0.0...v4.0.1 [4.0.0]: https://github.com/nestjsx/crud/compare/v.3.2.0...v4.0.0 @@ -52,3 +74,11 @@ [#107]: https://github.com/nestjsx/crud/issues/107 [#131]: https://github.com/nestjsx/crud/issues/131 [#101]: https://github.com/nestjsx/crud/issues/101 +[#186]: https://github.com/nestjsx/crud/pull/186 +[#184]: https://github.com/nestjsx/crud/issues/184 +[#148]: https://github.com/nestjsx/crud/issues/148 +[#105]: https://github.com/nestjsx/crud/issues/105 +[#87]: https://github.com/nestjsx/crud/issues/87 +[#159]: https://github.com/nestjsx/crud/issues/159 +[#161]: https://github.com/nestjsx/crud/issues/161 +[#179]: https://github.com/nestjsx/crud/issues/179