Releases: miLibris/flask-rest-jsonapi
Version 0.31.2
Version 0.14.3
Feature:
Configuration: you can disallow to disable pagination. You can set ALLOW_DISABLE_PAGINATION to False in your configuration file.
Version 0.14.1
New feature:
WARNING: I have broken the compatibility with old JsonApiException class because i have changed initialization parameters. I made this to get a closer usage of JsonApiException compared to base python Exception class and to add all attributes of a jsonapi error.
Bug fix:
#74 (thanks to @hellupline )
#69 (thanks to @jcampbell )
json response enhancements and bug fix on include parameter
- use Flask.jsonify instead of json for date and datetime serialization
- bug fix when include parameter is not provided
Version 0.13.0
New features:
-
SQLAlchemy data layer: include querystring parameter values are now eager-loaded with the main query by default. This feature greatly increases performance because it merge all queries made to serialize relationships of each item into one. You can disable this feature, just set the eagerload_includes data layer parameter to False.
-
SQLAlchemy data layer: the after_get_collection default method implementation now returns a collection. So you can create your own collection before serialization with the collection of data retrieved before.
-
Configuration: you can now control the default pagination size with the configuration keyword PAGE_SIZE. Default is 30.
-
Configuration: you can now control the maximum page size with the configuration keyword MAX_PAGE_SIZE.
-
Configuration: you can now control the maximum include depth with the configuration keyword MAX_INCLUDE_DEPTH. (Exemple: if you set the value to 2 you can do ?include=computer.owner but not ?include=computer.owner.computers)
Bug fix:
Bug fixes and enhancements
- Allow usage of multiple mime-type in the Accept header: 144d304 (thanks to Natureshadow)
- Make incomming data available to update them in before_post and before_patch and also for relationship resource manager: f2cb7e9
- Bug fix of sorting on hybrid_property: d22d595 (thanks to shubham-padia)
Bug fixes
better error handling when object is not found
better error handling when object is not found
Permissions and OAuth
Add permission system and OAuth support via Flask-OAuthlib