Widgy v0.6.0 Release Notes

Release Date: 2015-04-30 // almost 9 years ago
    • 👌 Improved the compatibility error messages [#299, #193]
    • ✂ Remove the recommendation to use mezzanine.boot as it was not required [#291]
    • Possible Breaking Change Updated the django-pyscss_ dependency. Please see the django-pyscss changelog <https://pypi.python.org/pypi/django-pyscss/2.0.0#changelog>_ for documentation on how/if you need to change anything.
    • 0️⃣ By default, Widgy views are restricted to staff members. Previously any authenticated user was allowed. This effects the preview view and pop out edit view, among others. If you were relying on the ability for any user to access those, override authorize_view in your WidgySite. [#267]::

      class MyWidgySite(WidgySite): def authorize_view(self, request, view): if not request.user.is_authenticated() raise PermissionDenied