Skip to content

Releases: mrevutskyi/flask-restless-ng

2.2.9

24 Sep 20:57
Compare
Choose a tag to compare
  • Do not erase type field from attributes (#31)

2.2.8

08 Sep 19:02
Compare
Choose a tag to compare
  • Make sure that POST response contains actual values from the DB

2.2.7

27 Aug 14:30
Compare
Choose a tag to compare
  • Fix Server Error for null relationship in POST (#29)
  • Allow session rollback in PATCH_RESOURCE, PATCH_RELATIONSHIP, POST_RELATIONSHIP post-processors (#28)

2.2.6

25 Aug 00:30
Compare
Choose a tag to compare
  • Escape user input in error messages to prevent potential server-side cross-site scripting
  • status field in error objects is now a string, as required by JSON API standard
    https://jsonapi.org/format/#error-objects
  • Returns '400' status if page number is provided but page size is 0
  • Returns '400' status if unknown field was used for sorting
  • Allow rolling back the current session in POST_RESOURCE post-processors (#28)

2.2.5

14 Aug 20:12
Compare
Choose a tag to compare
  • Fix for #27 'relationship with secondary generates incorrect query'

2.2.4

07 Aug 00:17
Compare
Choose a tag to compare
  • Do not log exceptions for user related errors (bad query, etc)
  • Update safe check for selectinload for `includes
  • Update SQLAlchemy dependency to 1.3.6+

2.2.3

30 Jul 23:09
Compare
Choose a tag to compare
  • Add safe check for selectinload for includes

2.2.2

29 Jul 15:24
Compare
Choose a tag to compare
  • Fix an incorrect selectinload query for models with custom select queries

2.2.1

11 Jul 20:45
Compare
Choose a tag to compare

Minor improvements

2.2.0

09 Jul 19:08
Compare
Choose a tag to compare
  • Serialize To-One relationships using foreign key, instead of trying to fetch the whole
    relationship object from the database