Current section
Files
Jump to
Current section
Files
maru_entity
CHANGELOG.md
CHANGELOG.md
## Changelog
## upgrade instructions from v0.1.x to v0.2.0
* replace `as` with `source`
`expose :body, as: :content` should be `expose :content, source: :body`
* explicit declaration for instance list
`expose :posts, with: PostEntity` should be `expose :posts, using: List[PostEntity]`
## v0.2.3
* Bugfix
* revert pr #19
## v0.2.2
* Enhancements
* support only/excpet to return only wanted fields
* `before_serialize/2` hook
* `before_finish/2` hook
* Bugfix
* alias modules in `using`
## v0.2.1 (2017-11-03)
* Enhancements
* support nested exposure
* support extend
* Bugfix
* return `[]` instead of `nil` for batch list
* allow aliased modules in `using`
## v0.2.0 (2017-02-04)
* Enhancements
* parallelizable serialize
* solve the N + 1 Problem