Skip to content

Releases: miLibris/flask-rest-jsonapi

Version 0.31.2

08 Oct 13:51
Compare
Choose a tag to compare
Bump version to 0.31.2

Version 0.14.3

23 Nov 14:07
Compare
Choose a tag to compare

Feature:
Configuration: you can disallow to disable pagination. You can set ALLOW_DISABLE_PAGINATION to False in your configuration file.

Version 0.14.1

22 Nov 09:36
Compare
Choose a tag to compare

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

18 Oct 09:42
Compare
Choose a tag to compare
  • use Flask.jsonify instead of json for date and datetime serialization
  • bug fix when include parameter is not provided

Version 0.13.0

13 Oct 13:37
Compare
Choose a tag to compare

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

26 Jun 15:40
Compare
Choose a tag to compare
  • 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

04 Apr 09:08
Compare
Choose a tag to compare

Fix multi sort with sqlalchemy 90aadfd
Fix Content-Type header check 60b6691

better error handling when object is not found

31 Mar 16:01
Compare
Choose a tag to compare

better error handling when object is not found

Permissions and OAuth

30 Mar 08:17
Compare
Choose a tag to compare

Add permission system and OAuth support via Flask-OAuthlib

Bug fix

22 Mar 13:16
Compare
Choose a tag to compare

Bug fix on custom data layer usage
Bug fix on filtering (thanks to jamesalbert)