Releases: AdCombo/flask-combo-jsonapi
Releases · AdCombo/flask-combo-jsonapi
1.1.0
A bunch of fixes and improvements:
- Raise 404 ObjectNotFound when a single resource does not exist #51 - @samuelfirst
- Improve filter shortcuts #53 - @igieon
- Ability to use custom query string manager #54 - @igieon
- Pagination improvement use dict of ints and expect it everywhere #55 - @igieon
- Enable documented global decorators #56 - @igieon
- Patch request validates id match before loading schema #57 - @igieon
- Fix patch nested field partial update #58 - @igieon
1.0.7
1.0.6
1.0.5
Reverted incorrect resource validation
1.0.4
1.0.3
Merge pull request #31 from AdCombo/develop 1.0.3
1.0.2
changes:
- github action to publish to pypi
fixes:
SqlalchemyDataLayerfails on models with__init__statementformat_http_exceptionerror
Initial release
Changes:
- marshmallow updated to 3+
- improved filters:
- support for nested attributes filtering (dot-separated), for example
filter=[{"name": "owner_id.group_id.name", "op": "ilike", "val": "spam%"}]- here we have someThingwith relationship onowner_idto aUserwith relationship ongroup_idto aGroupwith an attributename - support for custom filters
- support for nested attributes filtering (dot-separated), for example
- improved sorting:
- the values for sorting are now serialized/deserialized
- the same deep sorting for nested attributes same as with filtering
- support for custom sorting
- Plugin system (reference)