8000 Tags · codingjoe/django-mail-auth · GitHub
[go: up one dir, main page]

Skip to content

Tags: codingjoe/django-mail-auth

Tags

3.3.0

Toggle 3.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update supported Python and Django versions (#134)

3.2.2

Toggle 3.2.2's commit message
Bump black from 23.10.0 to 23.10.1

Bumps [black](https://github.com/psf/black) from 23.10.0 to 23.10.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@23.10.0...23.10.1)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

3.2.1

Toggle 3.2.1's commit message
Allow login form to define a custom field_name as a class attribute

3.2.0

Toggle 3.2.0's commit message
Cleanup code blocks and branch names in docs

3.1.4

Toggle 3.1.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Drop Django 3.1 related code (#75)

This PR drops code introduced in #18 to support Django 3.1:
https://docs.djangoproject.com/en/4.1/releases/3.1/#default-hashing-algorithm-settings

Since Django 3.1 support is gone, shall we get rid of this code?

3.1.3

Toggle 3.1.3's commit message
Add Django 4.1 support

3.1.2

Toggle 3.1.2's commit message
Dispatch signal before user's private data is removed

3.1.1

Toggle 3.1.1's commit message
Add missing translation to dist packages

3.1.0

Toggle 3.1.0's commit message
Add anonymization feature for private user data

3.0.1

Toggle 3.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Rename `BaseLoginForm.get_context` to avoid clash with Django interna…

…ls (#40)

In Django 4.0 `forms.Form.get_context` was introduced for passing form context in templates.
https://docs.djangoproject.com/en/4.0/ref/forms/api/#django.forms.Form.get_context

Due to this we have a clash, as django-mail-auth uses function with the same name, but for different purpose:

```python
BaseLoginForm.get_context() missing 2 required positional arguments: 'request' and 'user'
```
0