您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

v0.7.2.rst 723B

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.