Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

v0.4.x.rst 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. ==========================
  2. Oscar 0.4.11 release notes
  3. ==========================
  4. :release: 2013-08-08
  5. Add extra blocks to order dashboard template.
  6. ==========================
  7. Oscar 0.4.10 release notes
  8. ==========================
  9. :release: 2013-07-03
  10. Extend range of bankcard expiry month field.
  11. =========================
  12. Oscar 0.4.9 release notes
  13. =========================
  14. :release: 2013-04-17
  15. Make ``AbstractStockRecord`` abstract (`#645`)
  16. .. _`#645`: https://github.com/django-oscar/django-oscar/pull/645
  17. =========================
  18. Oscar 0.4.8 release notes
  19. =========================
  20. :release: 2013-04-08
  21. Fix bug with order dashboard line editing (`#622`_)
  22. .. _`#622`: https://github.com/django-oscar/django-oscar/pull/622
  23. =========================
  24. Oscar 0.4.7 release notes
  25. =========================
  26. :release: 2013-03-20
  27. Fix bug with order dashboard searching (`#587`_)
  28. .. _`#587`: https://github.com/django-oscar/django-oscar/pull/587
  29. =========================
  30. Oscar 0.4.6 release notes
  31. =========================
  32. :release: 2013-03-05
  33. Fix dependencies in :file:`setup.py`
  34. =========================
  35. Oscar 0.4.5 release notes
  36. =========================
  37. :release: 2013-01-25
  38. Extend ``get_class`` to support loading from non-Oscar packages
  39. =========================
  40. Oscar 0.4.4 release notes
  41. =========================
  42. :release: 2013-01-16
  43. Correct ``django-haystack`` in :file:`setup.py`
  44. =========================
  45. Oscar 0.4.3 release notes
  46. =========================
  47. :release: 2013-01-16
  48. Pin ``django-haystack`` version as backwards-incompatible changes are happening
  49. =========================
  50. Oscar 0.4.2 release notes
  51. =========================
  52. :release: 2012-12-14
  53. Small release to fix logout redirect bug
  54. =========================
  55. Oscar 0.4.1 release notes
  56. =========================
  57. :release: 2012-12-06
  58. Small release to bump dependency versions.
  59. =========================
  60. Oscar 0.4.0 release notes
  61. =========================
  62. :release: 2012-10-19
  63. Quite a big release this one. Several new features have been added since the
  64. 0.3 release series:
  65. * Better support for digital products. Additional fields added to product class
  66. model.
  67. * HTML editing within the dashboard
  68. * A new email dashboard
  69. * Major refactor of the offers module and test suite
  70. * Product stock alerts: customers can request an alert when when a product comes
  71. back into stock
  72. * Customer notifications: an API and inbox for sending users notifications
  73. Upgrading
  74. ~~~~~~~~~
  75. Four apps have new migrations. If you subclass these apps in your project, you
  76. will need to create a new schema migration for each to pick up the upstream
  77. changes.
  78. * Basket:
  79. - A ``price_excl_tax`` has been added to ``basket.Line``. This is
  80. useful for applications that use dynamic pricing where both the price with and
  81. without tax needs to be stored.
  82. * Catalogue:
  83. - A ``requires_shipping`` field has been added to ``catalogue.ProductClass``
  84. to facilitate better support for digital products (that don't require
  85. shipping).
  86. - The ``code`` field of ``catalogue.Option`` now has a unique index.
  87. * Customer:
  88. - New models for stock alerts and notifications
  89. - The ``email_subject_template`` field from
  90. ``customer.CommunicationEventType`` is now nullable.
  91. * Order:
  92. - An ``offer_name`` field has been added to ``order.OrderDiscount`` so retain
  93. audit information on discounts after offers are deleted.
  94. Please ask on the mailing list if any other problems are encountered.