Add default edit rate limit of 90 edits/minute for all users
authorBrian Wolff <bawolff+wn@gmail.com>
Wed, 9 May 2018 20:43:51 +0000 (20:43 +0000)
committerReedy <reedy@wikimedia.org>
Thu, 10 May 2018 11:46:17 +0000 (11:46 +0000)
Previously there was no rate limit at all if you were autoconfirmed.

This initial setting is set on the high end of things, we may
adjust later. See also T192668, T194204.

Change-Id: I7cb002900bae2da3f4f4758671186659c1720e1d
(cherry picked from commit cefdcefdb8f15ffdec8345b93aff2036db92d1f7)

RELEASE-NOTES-1.31
includes/DefaultSettings.php

index 52e6c4f..abe8e78 100644 (file)
@@ -51,6 +51,7 @@ production.
   framework that it enables. Some extensions mistakenly used this to check
   whether any AJAX functionality at all should be enabled, further making this
   problematic to retain.
+* Add default edit rate limit of 90 edits/minute for all users.
 
 === New features in 1.31 ===
 * (T76554) User sub-pages named ….json are now protected in the same way that
index 004a70e..ed88859 100644 (file)
@@ -5652,6 +5652,7 @@ $wgRateLimits = [
        'edit' => [
                'ip' => [ 8, 60 ],
                'newbie' => [ 8, 60 ],
+               'user' => [ 90, 60 ],
        ],
        // Page moves
        'move' => [