X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=RELEASE-NOTES-1.34;h=57d635e5efd52cd36bf5cd8eafee0fe61ee0102a;hb=574bd38c04cda411b6382046e0553d85fffc9aa9;hp=ea46a7d3a8b4d11b2c18434b465320179410e03c;hpb=7be20319539e67124346809bc80164c5cbe4dd35;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES-1.34 b/RELEASE-NOTES-1.34 index ea46a7d3a8..57d635e5ef 100644 --- a/RELEASE-NOTES-1.34 +++ b/RELEASE-NOTES-1.34 @@ -36,6 +36,9 @@ For notes on 1.33.x and older releases, see HISTORY. * $wgEnableSpecialMute (T218265) - This configuration controls whether Special:Mute is available and whether to include a link to it on emails originating from Special:Email. +* editmyuserjsredirect user right – users without this right now cannot edit JS + redirects in their userspace unless the target of the redirect is also in + their userspace. By default, this right is given to everyone. ==== Changed configuration ==== * $wgUseCdn, $wgCdnServers, $wgCdnServersNoPurge, and $wgCdnMaxAge – These four @@ -52,6 +55,12 @@ For notes on 1.33.x and older releases, see HISTORY. * Introduced $wgVerifyMimeTypeIE to allow disabling the MSIE 6/7 file type detection heuristic on upload, which is more conservative than the checks that were changed above. +* $wgSkipSkin — Setting this instead of $wgSkipSkins, deprecated in 1.23, is now + hard-deprecated. +* $wgLocalInterwiki — Setting this instead of $wgLocalInterwikis, deprecated in + 1.23, is now hard-deprecated. +* $wgProfileOnly — Setting this, deprecated in 1.23, is now hard-deprecated. + Instead, set the log file in $wgDebugLogGroups['profileoutput']. * … ==== Removed configuration ==== @@ -67,8 +76,12 @@ For notes on 1.33.x and older releases, see HISTORY. from other users originating from Special:EmailUser. === New developer features in 1.34 === +* The ImgAuthModifyHeaders hook was added to img_auth.php to allow modification + of headers in private wikis. * Language::formatTimePeriod now supports the new 'avoidhours' option to output strings like "5 days ago" instead of "5 days 13 hours ago". +* (T220163) Added SpecialMuteModifyFormFields hook to allow extensions + to add fields to Special:Mute. === External library changes in 1.34 === @@ -271,7 +284,8 @@ because of Phabricator reports. in JavaScript, use mw.log.deprecate() instead. * The 'user.groups' module, deprecated in 1.28, was removed. Use the 'user' module instead. -* The ability to override User::$mRights has been removed. +* The ability to override User::$mRights has been removed. Use + PermissionManager::addTemporaryUserRights() instead. * Previously, when iterating ResultWrapper with foreach() or a similar construct, the range of the index was 1..numRows. This has been fixed to be 0..(numRows-1). @@ -283,6 +297,19 @@ because of Phabricator reports. which were deprecated and ignored by core since 1.22, are no longer set to any value, and SkinTemplate no longer emits a 'jsmimetype' key. Any extensions not updated since 2013 to cope with this deprecation may now break. +* (T222637) Passing ResourceLoaderModule objects to ResourceLoader::register() + or $wgResourceModules is no longer supported. + Use the 'class' or 'factory' option of the array format instead. +* The parameter $lang of the functions generateTOC and tocList in Linker and + DummyLinker must be in type Language when present. Other types are + deprecated since 1.33. +* The static properties mw.Api.errors and mw.Api.warnings, deprecated in 1.29, + have been removed. +* The UploadVerification hook, deprecated in 1.28, has been removed. Instead, + use the UploadVerifyFile hook. +* UploadBase:: and UploadFromChunks::stashFileGetKey() and stashSession(), + deprecated in 1.28, have been removed. Instead, please use the getFileKey() + method on the response from doStashFile(). * … === Deprecations in 1.34 === @@ -362,6 +389,8 @@ because of Phabricator reports. been deprecated. * User::getRights() and User::$mRights have been deprecated. Use PermissionManager::getUserPermissions() instead. +* The LocalisationCacheRecache hook no longer allows purging of message blobs + to be prevented. Modifying the $purgeBlobs parameter now has no effect. === Other changes in 1.34 === * …