Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Django 1.7 support #41

Closed
wants to merge 6 commits into from
Closed

Commits on Apr 9, 2014

  1. Copy the full SHA
    588b5b8 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    4636190 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2014

  1. Validation error must not have an error_dict when raised within clean…

    …_<field>
    
    We are raising a ValidationError inside clean_token, so setting the
    error field to 'token' is redundant.
    julianwachholz committed Apr 10, 2014
    Copy the full SHA
    2c480f0 View commit details
    Browse the repository at this point in the history
  2. Avoid hitting multiple redirect in admin site.

    Admin in 1.7 features a proper redirect to login
    handling introduced in be0ad62994a340ad54a0b328771931932a45a899
    julianwachholz committed Apr 10, 2014
    Copy the full SHA
    8294fce View commit details
    Browse the repository at this point in the history
  3. Model equality check has changed for models without pk.

    Introduced in django/django@6af05e7
    Checking models for equality will use id() if they do not have
    a primary key yet, i.e. haven't been persisted yet.
    We overwrite PhoneDevice.__eq__ to make sure we have the same
    instances where needed.
    julianwachholz committed Apr 10, 2014
    Copy the full SHA
    2c3a6a4 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2014

  1. Copy the full SHA
    d6dcfee View commit details
    Browse the repository at this point in the history