X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=RELEASE-NOTES-1.34;h=aaf4d78fea5e2e7a3824e26997f8f91f8eea09a9;hb=e390198c4e4be7632b01173e42050061f1cc346a;hp=73a1f7b8ad10ed1a667531ad4b8b3b8fee9c7d4e;hpb=bb20d0aea47cd376fdf48b7851a0dfdde606fbb3;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES-1.34 b/RELEASE-NOTES-1.34 index 73a1f7b8ad..aaf4d78fea 100644 --- a/RELEASE-NOTES-1.34 +++ b/RELEASE-NOTES-1.34 @@ -26,6 +26,13 @@ For notes on 1.33.x and older releases, see HISTORY. === Configuration changes for system administrators in 1.34 === +In an effort to enforce best practices for passwords, MediaWiki will now warn +users, and suggest that they change their password, if it is in the list of +100,000 commonly used passwords that are considered bad passwords. If you want +to disable this for your users, please add the following to your local settings: + +$wgPasswordPolicy['policies']['default']['PasswordNotInLargeBlacklist'] = false; + ==== New configuration ==== * $wgAllowExternalReqID (T201409) - This configuration setting controls whether Mediawiki accepts the request ID set by the incoming request via the @@ -66,6 +73,7 @@ For notes on 1.33.x and older releases, see HISTORY. which was deprecated in 1.30, no longer works. Instead, $wgProxyList should be an array with IP addresses as the values, or a string path to a file containing one IP address per line. +* $wgCookieSetOnAutoblock and $wgCookieSetOnIpBlock are now enabled by default. * … ==== Removed configuration ==== @@ -75,10 +83,13 @@ For notes on 1.33.x and older releases, see HISTORY. * $wgDebugPrintHttpHeaders - The default of including HTTP headers in the debug log channel is no longer configurable. The debug log itself remains configurable via $wgDebugLogFile. +* $wgMsgCacheExpiry - The MessageCache uses 24 hours as the expiry for values + stored in WANObjectCache. This is no longer configurable. * $wgPasswordSalt – This setting, used for migrating exceptionally old, insecure password setups and deprecated since 1.24, is now removed. * $wgDBOracleDRCP - If you must use persistent connections, set DBO_PERSISTENT in the 'flags' field for servers in $wgDBServers (or $wgLBFactoryConf). +* $wgMemCachedDebug - Set the cache "debug" field in $wgObjectCaches instead. === New user-facing features in 1.34 === * Special:Mute has been added as a quick way for users to block unwanted emails @@ -88,6 +99,10 @@ For notes on 1.33.x and older releases, see HISTORY. ([[Special:NewSection/Test]] redirects to creating a new section in "Test"). Otherwise, it displays a basic interface to allow the end user to specify the target manually. +* (T220447) Special:Contributions/newbies has been removed for performance and + usefulness reasons. Use Special:RecentChanges?userExpLevel=newcomer instead. +* Special:NewFiles/newbies has been removed for performance and usefulness + reasons. Use Special:RecentChanges?userExpLevel=newcomer&namespace=6 instead. === New developer features in 1.34 === * The ImgAuthModifyHeaders hook was added to img_auth.php to allow modification @@ -110,7 +125,8 @@ For notes on 1.33.x and older releases, see HISTORY. ==== Changed external libraries ==== * Updated Mustache from 1.0.0 to v3.0.1. -* Updated OOUI from v0.31.3 to v0.33.4. +* Updated OOUI from v0.31.3 to v0.34.0. +* Updated OOjs from v2.2.2 to v3.0.0. * Updated composer/semver from 1.4.2 to 1.5.0. * Updated composer/spdx-licenses from 1.4.0 to 1.5.1 (dev-only). * Updated mediawiki/codesniffer from 25.0.0 to 26.0.0 (dev-only). @@ -353,6 +369,8 @@ because of Phabricator reports. initialized after calling SearchResult::initFromTitle(). * The UserIsBlockedFrom hook is only called if a block is found first, and should only be used to unblock a blocked user. +* Parameters for index.php from PATH_INFO, such as the title, are no longer + written to $_GET. * … === Deprecations in 1.34 === @@ -409,6 +427,11 @@ because of Phabricator reports. * ResourceLoaderContext::getConfig and ResourceLoaderContext::getLogger have been deprecated. Inside ResourceLoaderModule subclasses, use the local methods instead. Elsewhere, use the methods from the ResourceLoader class. +* The 'jquery.accessKeyLabel' module has been deprecated. This jQuery + plugin is now ships as part of the 'mediawiki.util' module bundle. +* The Profiler::setTemplated and Profiler::getTemplated methods have been + deprecated. Use Profiler::setAllowOutput and Profiler::getAllowOutput + instead. * The Preprocessor_DOM implementation has been deprecated. It will be removed in a future release. Use the Preprocessor_Hash implementation instead. @@ -467,6 +490,8 @@ because of Phabricator reports. SearchResult::newFromTitle(). This class is being refactored into an abstract class. If you extend this class please be sure to override all its methods or extend RevisionSearchResult. +* Skin::getSkinNameMessages() is deprecated and no longer used. +* The mediawiki.RegExp module is deprecated; use mw.util.escapeRegExp() instead. === Other changes in 1.34 === * … @@ -474,7 +499,15 @@ because of Phabricator reports. == Compatibility == MediaWiki 1.34 requires PHP 7.0.13 or later. Although HHVM 3.18.5 or later is supported, it is generally advised to use PHP 7.0.13 or later for long term -support. +support. It also requires the following PHP extensions: + +* ctype +* dom +* fileinfo +* iconv +* json +* mbstring +* xml MySQL/MariaDB is the recommended DBMS. PostgreSQL or SQLite can also be used, but support for them is somewhat less mature.