You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

v1.3.rst 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. =======================
  2. Oscar 1.3 release notes
  3. =======================
  4. :release: 2016-08-13
  5. Welcome to Oscar 1.3, a minor release which finally brings compatibility with
  6. Django 1.9.
  7. Table of contents:
  8. .. contents::
  9. :local:
  10. :depth: 1
  11. .. _compatibility_of_1.3:
  12. Compatibility
  13. -------------
  14. Oscar 1.3 is compatible with Django 1.8 and 1.9 as well as Python 2.7,
  15. 3.3, 3.4 and 3.5.
  16. .. _new_in_1.3:
  17. What's new in Oscar 1.3?
  18. ------------------------
  19. - Django 1.9 compatibility
  20. - Update the queryset for `ProductReview` to include an `approved` method
  21. which filters the queryset on approved reviews (:issue:`1920`)
  22. - Make more use of the date-picker in the dashboard (:issue:`1983`)
  23. - Add `site` kwarg to the OrderCreator class (:issue:`2014`)
  24. - Update Oscar's `get_class()` method to work with non oscar modules (:issue:`2039`)
  25. - The ProductAttributesContainer is now moved to `catalogue.product_attribute`
  26. and can now be replaced more easily.
  27. Dependency changes
  28. ------------------
  29. .. warning::
  30. Oscar depends on :py:mod:`sorl-thumbnail` version 12.4a1. Unfortunately you
  31. have to fake the initial migration of this application since older versions
  32. didn't include migrations. This can be done via::
  33. python manage.py migrate thumbnail --fake
  34. The following packages are updated:
  35. - `sorl-thumbnail == 12.4a1` (Django 1.9 support)
  36. - `django-haystack >= 2.5.0` (Django 1.9 support)
  37. - `mock < 3.0`
  38. - `factory-boy > 2.4.1,< 3.0`