X-Git-Url: https://git.cyclocoop.org/%242?a=blobdiff_plain;f=RELEASE-NOTES-1.32;h=cc75699620b4b009dc6c233f305ad69f7b36189b;hb=a5dd9a99469b0adea8ffd7ac21df28843e8af52e;hp=5953a21cd48b0362641e1066857668242b6f85b5;hpb=8260f606daa11beb085fd5e064be2bc133b13ea6;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES-1.32 b/RELEASE-NOTES-1.32 index 5953a21cd4..cc75699620 100644 --- a/RELEASE-NOTES-1.32 +++ b/RELEASE-NOTES-1.32 @@ -37,6 +37,9 @@ production. sitewide CSS/JS (and editing other users' CSS/JS). No other group has 'editsitecss', 'editusercss', 'editsitejs' or 'edituserjs' by default. * A new grant group, 'editsiteconfig', is added for granting the above rights. +* The $wgPasswordSenderName setting, ignored since 1.23 by MediaWiki and almost + all extensions, is no longer set at all. Instead, you can modify the system + message `emailsender`. === New features in 1.32 === * (T112474) Generalized the ResourceLoader mechanism for overriding modules @@ -250,6 +253,8 @@ because of Phabricator reports. resetServiceForTesting( 'MagicWordFactory' ) on a MediaWikiServices. * mw.util.init() has been removed. This function is not needed anymore and was a no-op function since 1.30. +* SpecialPageFactory::resetList() is a no-op. Call overrideMwServices() + instead. === Deprecations in 1.32 === * Use of a StartProfiler.php file is deprecated in favour of placing @@ -351,11 +356,21 @@ because of Phabricator reports. standard configuration, use MediaWikiServices::getPasswordFactory. * $wgContLang is deprecated, use MediaWikiServices::getContentLanguage() instead. +* $wgParser is deprecated, use MediaWikiServices::getParser() instead. +* wfGetMainCache() is deprecated, use ObjectCache::getLocalClusterInstance() + instead. +* wfGetCache() is deprecated, use ObjectCache::getInstance() instead. +* All SpecialPageFactory static methods are deprecated. Instead, call the + methods on a SpecialPageFactory instance, which may be obtained from + MediaWikiServices. === Other changes in 1.32 === * (T198811) The following tables have had their UNIQUE indexes turned into proper PRIMARY KEYs for increased maintainability: interwiki, page_props, protected_titles and site_identifiers. +* OOUI HTMLForm will now display help text inline after the input field, + rather than in a popup. Previous behavior can be restored by using + `'help-inline' => false`. * … == Compatibility ==