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.0.1.rst 1.2KB

12345678910111213141516171819202122232425262728293031323334
  1. =========================
  2. Oscar 1.0.1 release notes
  3. =========================
  4. This is Oscar 1.0.1, a bug fix release.
  5. Bug fixes
  6. =========
  7. * `#1553`_: ``from oscar.apps.partner.models import *`` could lead to the
  8. wrong models being imported.
  9. * `#1556`_: Dashboard order table headers shifted
  10. * `#1557`_: Fixed an issue where Oscar wrongly used Django's ``is_safe_url``.
  11. Hence some redirects might not have worked as expected. This change
  12. unfortunately meant updating the notation of
  13. :meth:`oscar.core.utils.safe_referrer` and
  14. :meth:`oscar.core.utils.redirect_to_referrer` to accept the request instead
  15. of request.META.
  16. * `#1577`_: The billing address was not being correctly passed through to the
  17. `place_order` method.
  18. * `#1592`_: ``Product.min_child_price_[excl|incl]_tax`` were broken and
  19. failing loudly. They are not recommended any more, but to ensure
  20. backwards-compatibility, they have been fixed.
  21. .. _#1553: https://github.com/django-oscar/django-oscar/issues/1553
  22. .. _#1556: https://github.com/django-oscar/django-oscar/issues/1556
  23. .. _#1557: https://github.com/django-oscar/django-oscar/issues/1557
  24. .. _#1577: https://github.com/django-oscar/django-oscar/issues/1577
  25. .. _#1592: https://github.com/django-oscar/django-oscar/issues/1592