HISTORY.rst 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .. :changelog:
  2. History
  3. -------
  4. 0.2.1 (2015-04-26)
  5. ~~~~~~~~~~~~~~~~~~
  6. * Fixed a bug which allowed to submit data for update to serializer
  7. without update field.
  8. See `#34 <https://github.com/miki725/django-rest-framework-bulk/issues/34>`_.
  9. * Removed support for Django1.8 with DRF2.x
  10. 0.2 (2015-02-09)
  11. ~~~~~~~~~~~~~~~~
  12. * Added DRF3 support. Please note that DRF2 is still supported.
  13. Now we support both DRF2 and DRF3!
  14. * Fixed an issue when using viewsets, single resource update was not working due
  15. to ``get_object()`` overwrite in viewset.
  16. 0.1.4 (2015-02-01)
  17. ~~~~~~~~~~~~~~~~~~
  18. * Added base model viewset.
  19. * Fixed installation issues.
  20. See `#18 <https://github.com/miki725/django-rest-framework-bulk/pull/18>`_,
  21. `#22 <https://github.com/miki725/django-rest-framework-bulk/pull/22>`_.
  22. 0.1.3 (2014-06-11)
  23. ~~~~~~~~~~~~~~~~~~
  24. * Fixed bug how ``post_save()`` was called in bulk create.
  25. 0.1.2 (2014-04-15)
  26. ~~~~~~~~~~~~~~~~~~
  27. * Fixed bug how ``pre_save()`` was called in bulk update.
  28. * Fixed bug of unable to mixins by importing directly ``from rest_framework_bulk import <mixin>``.
  29. See `#5 <https://github.com/miki725/django-rest-framework-bulk/pull/5>`_ for more info.
  30. 0.1.1 (2014-01-20)
  31. ~~~~~~~~~~~~~~~~~~
  32. * Fixed installation bug with setuptools.
  33. 0.1 (2014-01-18)
  34. ~~~~~~~~~~~~~~~~
  35. * First release on PyPI.