Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

v1.3.rst 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 (`#1920`)
  22. - Make more use of the datepicker in the dashboard (`#1983`)
  23. - Add `site` kwarg to the OrderCreator class (`#2014`)
  24. - Update Oscar's `get_class()` method to work with non oscar modules (`#2039`)
  25. - The ProductAttributesContainer is now moved to `catalogue.product_attribute`
  26. and can now be replaced more easily.
  27. .. _`#1920`: https://github.com/django-oscar/django-oscar/issues/1920
  28. .. _`#1935`: https://github.com/django-oscar/django-oscar/issues/1935
  29. .. _`#1983`: https://github.com/django-oscar/django-oscar/issues/1983
  30. .. _`#2014`: https://github.com/django-oscar/django-oscar/issues/2014
  31. .. _`#2039`: https://github.com/django-oscar/django-oscar/issues/2039
  32. Dependency changes
  33. ------------------
  34. .. warning::
  35. Oscar depends on sorl-thumbnail 12.4a1. Unfortunately you have to
  36. fake the initial migration of this application since older versions didn't
  37. include migrations. This can be done via::
  38. python manage.py migrate thumbnail --fake
  39. The following packages are updated:
  40. - `sorl-thumbnail == 12.4a1` (Django 1.9 support)
  41. - `django-haystack >= 2.5.0` (Django 1.9 support)
  42. - `mock < 3.0`
  43. - `factory-boy > 2.4.1,< 3.0`