Skip to content
This repository has been archived by the owner on Oct 22, 2019. It is now read-only.

Releases: bread-and-pepper/django-userena

2.0.1

23 Mar 09:27
Compare
Choose a tag to compare

Fixes and improvements:

  • Fixed missing README.md that caused installation failure (#517).
  • Use universal wheels when distributing the package.

2.0.0

22 Mar 18:08
Compare
Choose a tag to compare

Backwards incompatible changes:

  • Drop support for Django 1.4
  • Add support for Django 1.9
  • Added new Django 1.9 migration for userena and userena.contrib.umessages.
    Old South migrations are still available in userena.south_migrations and
    userena.contrib.umessages.south_migrations but are deprecated and may be
    removed in future major releases. South>1.0 is required for older versions
    of Django.
  • django-guardian requirement bumped to <=1.4.1 as newer version (1.4.2)
    fails on tests.
  • removed all {% load url from future %} from userena templates for
    compatibility with Django 1.9
  • sha_constructor(), smart_text(), and md5_constructor removed from
    userena.compat
  • Use simple list literal as url patterns instead of
    django.conf.urls.patterns() function

Deprecated features:

  • userena.utils.get_user_model is deprecated and will be removed in version
    3.0.0. Use django.contrib.auth.get_user_model

Fixes and improvements:

  • More nodes added to the travis test matrix.
  • Some documentation moved to .md files.
  • Deprecated unittest aliases replaced in tests.
  • Updated list of trove classifiers.
  • Added option to execute runtests script with pattern parameter to limit
    number of tests.
  • Added {posargs} to test command execution in tox.ini to improve developer
    experience during tests.
  • Minor documentation improvements.
  • Set django-guardian<1.4.0 version for Django 1.5 and 1.6 tests.

1.5.1

22 Mar 18:08
Compare
Choose a tag to compare
  • Update url patterns to handle usernames starting with 'signup', 'signin',
    'signout' strings (#502)

1.5.0

22 Mar 18:07
Compare
Choose a tag to compare

Fixes and improvements:

  • Updated Norwegian translations and fixed issue with unicode characters sent
    to utils.generate_sha1 (#472)
  • Fix upload_to_mugshot if model uses primary key diffrent than id (#475)
  • Minor compatibility improvements (#485)
  • Refactored mailer (#486)
  • Password reset email now inlcudes email template for django>=1.7 (#493)
  • Fixes to translations (#499)
  • Added Romanian translations (#500)

Backwards incompatible changes:

  • django-guardian has version fixed to <=1.3.1 due to django 1.4 compatibility

1.4.1

22 May 11:17
Compare
Choose a tag to compare
  • hack in usermail removed since recent dependencies does not require it (#462)
  • minor improvements in documentation (#461)
  • fixed bug that caused usernames to be altered (#456)
  • fixed support for python3.2/python3.4 (#455, #453)

1.4.0

22 Mar 18:09
Compare
Choose a tag to compare

Fixes and improvements:

  • Python3.3 and Python3.4 support added.

1.3.2

22 Mar 18:09
Compare
Choose a tag to compare

Backwards incompatible changes:

  • Creating new user always creates new empty userena profile (fixes bug from 1.3.1).

1.3.1

22 Mar 18:10
Compare
Choose a tag to compare

Backwards incompatible changes:

  • When USERENA_ACTIVATION_REQUIRED = False, creating new user does not automatically
    create userena profile (bug).

1.2.2

22 Mar 18:11
Compare
Choose a tag to compare

Backwards incompatible changes:

  • Changed backwards relationships names for Umessages contrib application from
    to_user to um_to_user and from_user to um_from_user.

1.2.0

22 Mar 18:11
Compare
Choose a tag to compare

Backwards incompatible changes:

  • This version updates Userena to be able to use the new User model found in
    Django 1.5. This does require the django-guardion > 1.5-dev. To make this
    work, there is a get_user_model function in userena/utils.py which is used
    to get the correct User model.