Skip to content

Releases: barseghyanartur/django-rest-framework-tricks

0.2.14-2022-11-22

22 Nov 22:51
Compare
Choose a tag to compare
  • Tested against Django 4.1.
  • Tested against Django REST Framework 3.13.

0.2.13-2022-11-20

21 Nov 22:01
Compare
Choose a tag to compare
  • Tested against Django 4.0.
  • Drop Python 3.6 support.
  • Drop Django REST Framework 3.9.x support.
  • Add ConstrainedFileField (for limiting size of file uploads).

0.2.12-2021-12-06

07 Dec 00:10
Compare
Choose a tag to compare
  • Tested against Django 3.1 and 3.2.
  • Tested against Python 3.9 and 3.10.
  • Tested against Django REST Framework 3.12.
  • Drop Python 2.x support.
  • Drop Python 3.5 support.
  • Drop Django < 2.2 support.
  • Drop Django REST Framework < 3.9 support.

0.2.11-2019-12-27

27 Dec 00:36
Compare
Choose a tag to compare
  • Tested against Django 3.0.
  • Tested against Python 3.8.
  • Tested against Django REST Framework 3.11.

0.2.10-2019-04-12

27 Dec 00:36
Compare
Choose a tag to compare
  • Tested against Django 2.1 and Django 2.2.
  • Tested against Python 3.7.
  • Dropping support for Python 3.4.
  • Upgrade test suite.
  • Temporary remove PyPy from tox (because of failing tests).

0.2.9-2018-02-03

02 Feb 22:24
Compare
Choose a tag to compare
  • Make it possible to order by two (or more fields) at once, using the OrderingFilter.

0.2.8-2018-01-31

31 Jan 21:11
Compare
Choose a tag to compare
  • Fixes in docs.

0.2.7-2018-01-28

28 Jan 00:58
Compare
Choose a tag to compare
  • Fixes in docs.

0.2.6-2018-01-28

28 Jan 00:49
Compare
Choose a tag to compare
  • Added OrderingFilter, which makes it possible to specify mapping (ordering option -> ORM field) for making more developer friendly ordering options in the API. An example of such could be a Profile model with ForeignKey relation to User model. In case if we want to order by email field in the ProfileViewSet, instead of ordering on user__email we could order just on email.

0.2.5-2017-12-30

30 Dec 20:56
Compare
Choose a tag to compare
  • Update example project (and the tests that are dependant on the example project) to work with Django 2.0.