Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1.19 KB

CHANGELOG.md

File metadata and controls

38 lines (28 loc) · 1.19 KB

Changelog

0.5.6

  • Changed uniqueness of email to be a setting, REQUIRE_UNIQUE_EMAIL. Default is still True.
  • Updates readme to list all settings.

-- skoczen

0.5.5

  • Fixed UserCreationForm not handling unique as User's email field was not set to unique (didn't match the database).

-- mfogel

0.5.4

The django admin 'create user' page is currently broken on a clean django install using longerusernameandemail. These three commits fix it up:

  • in f2ce156
    • django.contrib.auth.forms.UserCreationForm doesn't define an 'email' field by default
    • there's no need to 'update_field_length' on the UserCreationForm or UserChangeForm email fields since these fields are generated by a ModelForm - so they'll use the max_length parameter from the model layer, which has been already updated by our monkey patching.
  • in 4baac16 added tests for the basic CRUD functionality of the django admin interface.

-- mfogel

0.5.3

  • Fixed django.contrib.auth.models.User.email.blank sould be set to False -- mfogel

0.5.2

  • Fixed django.contrib.auth.forms.AuthenticationForm doesn't have an email field. -- dalazx

0.5.1

  • Added email as a field in migrations etc.