選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

v0.7.2.rst 724B

1234567891011121314151617181920
  1. =========================
  2. Oscar 0.7.2 release notes
  3. =========================
  4. This is Oscar 0.7.2, a minor security release. If you rely on the
  5. ``permissions_required`` decorator or the
  6. ``Application.permissions_map`` and ``Application.default_permissions`` syntax,
  7. you must upgrade.
  8. Bug fixes
  9. =========
  10. * The ``permissions_required`` decorator now handles both methods and
  11. properties on the User model. Previously, it wasn't supported, but a
  12. docstring showed ``is_anonymous`` as an example, which is a
  13. method.
  14. * It fixes a syntax error in ``basket.views.BasketView`` when rendering an
  15. error message. Previously, trying to save an item for later while not
  16. being logged in would cause an Internal Server Error.