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.5.rst 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. =======================
  2. Oscar 1.5 release notes
  3. =======================
  4. :release: tbd
  5. Welcome to Oscar 1.5
  6. Table of contents:
  7. .. contents::
  8. :local:
  9. :depth: 1
  10. .. _compatibility_of_1.5:
  11. Compatibility
  12. -------------
  13. Oscar 1.4 is compatible with Django 1.8, 1.9 and 1.10 as well as Python 2.7,
  14. 3.3, 3.4, 3.5 and 3.6.
  15. .. _new_in_1.5:
  16. What's new in Oscar 1.5?
  17. ------------------------
  18. Removal of deprecated features
  19. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  20. These methods/modules have been removed:
  21. - Profiling middleware. See `silk`_ or `django-cprofile-middleware`_
  22. for alternatives.
  23. - ``Product.min_child_price_incl_tax`` and ``Product.min_child_price_excl_tax``.
  24. - ``oscar.core.logging.handlers.EnvFileHandler()``
  25. - The ``ellipses_page_range`` templatetag. See `django-rangepaginator`_ for
  26. an alternative.
  27. - ``oscar.test.decorators`` module.
  28. - ``oscar.core.utils.compose`` function.
  29. .. _silk: https://github.com/django-silk/silk
  30. .. _django-cprofile-middleware: https://github.com/omarish/django-cprofile-middleware
  31. .. _django-rangepaginator: https://pypi.python.org/pypi/django-rangepaginator/
  32. Minor changes
  33. ~~~~~~~~~~~~~
  34. - Add billing address to user's address book during checkout (`#1532`_). Number of usages for billing and shipping
  35. addresses tracked separately: billing address in `UserAddress.num_orders_as_billing_address` field
  36. and shipping address in `UserAddress.num_order_as_shipping_address` accordingly.
  37. Dependency changes
  38. ------------------