|
| 1 | +## [4.1.0] - 2019-06-27 |
| 2 | + |
| 3 | +### Features |
| 4 | + |
| 5 | +- **crud** added `PUT` request handling ([#107]) |
| 6 | +- **requests** added creating request builder with params ([#131]) |
| 7 | +- **requests** improved query params naming parsing ([#101]) |
| 8 | + |
| 9 | +### Bug Fixes |
| 10 | + |
| 11 | +- **crud** set decorators after Swagger so metadata can be overwritten |
| 12 | +- **requests** added support for ISO-8610 date strings |
| 13 | + |
1 | 14 | ## [4.0.1] - 2019-06-21
|
2 | 15 |
|
3 | 16 | ### Bug Fixes
|
4 | 17 |
|
5 |
| -- **requests** fixed query parser to properly accept numbers and booleans (#97) |
| 18 | +- **requests** fixed query parser to properly accept numbers and booleans ([#97]) |
6 | 19 |
|
7 | 20 | ## [4.0.0] - 2019-06-12
|
8 | 21 |
|
|
20 | 33 | - **docs:** new [documentation](https://github.com/nestjsx/crud/wiki)
|
21 | 34 | - **packages:** totally refactor `@nestjsx/crud` to be service (ORM) agnostic
|
22 | 35 | - **packages:** add `@nestjsx/crud-typeorm` ([docs](https://github.com/nestjsx/crud/wiki/ServiceTypeorm))
|
23 |
| -- **packages:** add `@nestjsx/crud-request` ([docs](https://github.com/nestjsx/crud/wiki/Requests#description), #53) |
24 |
| -- **crud:** add global options ([docs](https://github.com/nestjsx/crud/wiki/Controllers#global-options), #64) |
25 |
| -- **crud:** add eager relations option (#54, #67) |
| 36 | +- **packages:** add `@nestjsx/crud-request` ([docs](https://github.com/nestjsx/crud/wiki/Requests#description), [#53]) |
| 37 | +- **crud:** add global options ([docs](https://github.com/nestjsx/crud/wiki/Controllers#global-options), [#64]) |
| 38 | +- **crud:** add eager relations option ([#54], [#67]) |
26 | 39 |
|
27 | 40 | ### Bug Fixes
|
28 | 41 |
|
29 | 42 | - several fixes
|
30 | 43 |
|
| 44 | +[4.1.0]: https://github.com/nestjsx/crud/compare/v4.0.1...v4.1.0 |
31 | 45 | [4.0.1]: https://github.com/nestjsx/crud/compare/v4.0.0...v4.0.1
|
32 | 46 | [4.0.0]: https://github.com/nestjsx/crud/compare/v.3.2.0...v4.0.0
|
| 47 | +[#97]: https://github.com/nestjsx/crud/issues/97 |
| 48 | +[#53]: https://github.com/nestjsx/crud/issues/53 |
| 49 | +[#64]: https://github.com/nestjsx/crud/issues/64 |
| 50 | +[#54]: https://github.com/nestjsx/crud/issues/54 |
| 51 | +[#67]: https://github.com/nestjsx/crud/issues/67 |
| 52 | +[#107]: https://github.com/nestjsx/crud/issues/107 |
| 53 | +[#131]: https://github.com/nestjsx/crud/issues/131 |
| 54 | +[#101]: https://github.com/nestjsx/crud/issues/101 |
0 commit comments