Skip to content

Commit 5be6a1e

Browse files
committed
askbot/doc/source/changelog.rst: added a note that EMAIL_VALIDATION_REQUIRED livesetting default is changed from False to True
1 parent bf17161 commit 5be6a1e

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

askbot/doc/source/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Development (not yet released)
2424
changed the default session serializer from Pickle to JSON
2525
* Added the option to require validation of email address when users change it.
2626
Controlled by the ``EMAIL_VALIDATION_REQUIRED`` livesetting.
27+
* Changed the default of the ``EMAIL_VALIDATION_REQUIRED`` livesetting from ``False`` to ``True``.
2728

2829
0.12.8 (Mar 15, 2026)
2930
---------------------

askbot/tests/test_page_load.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ def test_user_cannot_change_email(self):
787787
self.assertEqual(user.username, 'edited')
788788
self.assertEqual(user.email, email_before)
789789

790-
@with_settings(EDITABLE_EMAIL=True, EDITABLE_SCREEN_NAME=True)
790+
@with_settings(EDITABLE_EMAIL=True, EDITABLE_SCREEN_NAME=True, EMAIL_VALIDATION_REQUIRED=False)
791791
def test_user_can_change_email(self):
792792
self.client.login(user_id=self.user.id, method='force')
793793
email_before = self.user.email

0 commit comments

Comments
 (0)