diff --git a/frappe/hooks.py b/frappe/hooks.py index e74ba6e61d..edfe3fd4e2 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -12,7 +12,7 @@ source_link = "https://github.com/frappe/frappe" app_license = "MIT" develop_version = '11.x.x-develop' -staging_version = '11.0.3-beta.1' +staging_version = '11.0.3-beta.2' app_email = "info@frappe.io" diff --git a/frappe/patches/v10_0/enhance_security.py b/frappe/patches/v10_0/enhance_security.py index 7435f86911..6a9c371b51 100644 --- a/frappe/patches/v10_0/enhance_security.py +++ b/frappe/patches/v10_0/enhance_security.py @@ -29,4 +29,5 @@ def execute(): if cint(doc.allow_consecutive_login_attempts) <= 3: doc.allow_consecutive_login_attempts = 3 + doc.flags.ignore_mandatory = True doc.save()