X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=RELEASE-NOTES-1.32;h=a63a16d293076bdfd7cb7fa05b833968e4ba8b25;hb=ffa5a48a25ec0b56b9a09bd0e4390d4c40f30656;hp=6c200d900bf6ec9c27f1f0630286a0de2fa33c4e;hpb=4e82bcaf9fb971c136f180ef8c2e68acb1ad17c0;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES-1.32 b/RELEASE-NOTES-1.32 index 6c200d900b..a63a16d293 100644 --- a/RELEASE-NOTES-1.32 +++ b/RELEASE-NOTES-1.32 @@ -40,6 +40,10 @@ production. old and the new schema, but reading the new schema, so Multi-Content Revisions (MCR) are now functional per default. The new default value of the setting is SCHEMA_COMPAT_WRITE_BOTH | SCHEMA_COMPAT_READ_NEW. +* $wgActorTableSchemaMigrationStage no longer accepts MIGRATION_WRITE_BOTH or + MIGRATION_WRITE_NEW. It instead uses SCHEMA_COMPAT_WRITE_BOTH | + SCHEMA_COMPAT_READ_OLD and SCHEMA_COMPAT_WRITE_BOTH | SCHEMA_COMPAT_READ_NEW + for intermediate stages of migration. ==== Removed configuration ==== * $wgEnableAPI and $wgEnableWriteAPI – These settings, deprecated in 1.31, @@ -100,7 +104,8 @@ production. === External library changes in 1.32 === ==== New external libraries ==== -* Added wikimedia/xmp-reader 0.6.0 +* Added wikimedia/xmp-reader 0.6.0. +* Added Add pear/Net_SMTP 1.8.0. * … ==== Changed external libraries ==== @@ -116,6 +121,7 @@ production. * Updated jquery from v3.2.1 to v3.3.1. ==== Removed external libraries ==== +* pear/mail_mime-decode was removed. * … === Bug fixes in 1.32 === @@ -287,6 +293,9 @@ because of Phabricator reports. * Another two OutputPage methods, setPageTitleActionText() and getPageTitleActionText(), were removed. They did nothing since 1.15 (almost ten years). Use setHTMLTitle() directly. +* The return value of OutputPage::adaptCdnTTL() has been removed. The + value returned was misleading and probably not what any caller would + have wanted. * All MagicWord static member variables have been removed. Use appropriate hooks or MagicWordFactory methods instead. * MagicWord::clearCache() has been removed. Instead, create a new @@ -308,6 +317,9 @@ because of Phabricator reports. * 'uppercase-se' (NorthernSamiUppercaseCollation) - use 'uca-se' instead * 'xx-uca-et' (CollationEt) - use 'uca-et' instead * 'xx-uca-fa' (CollationFa) - use 'uca-fa' instead +* LanguageCode::bcp47() now always returns a valid BCP 47 code. This means + that some MediaWiki-specific language codes, such as `simple`, are mapped + into valid BCP 47 codes (eg `en-simple`). * The hooks 'SpecialRecentChangesFilters' & 'SpecialWatchlistFilters' deprecated in 1.23 were removed. Instead, use 'ChangesListSpecialPageStructuredFilters'. The ChangesListSpecialPage code for these legacy hooks, and their use in @@ -329,6 +341,23 @@ because of Phabricator reports. phase. * The global function wfErrorLog, deprecated since 1.25, has now been removed. Use MWLoggerLegacyLogger::emit or UDPTransport. +* The hooks 'SpecialRecentChangesQuery' & 'SpecialWatchlistQuery', deprecated in + 1.23, were removed. Instead, use ChangesListSpecialPageStructuredFilters or + ChangesListSpecialPageQuery. +* The global function wfUsePHP, deprecated since 1.30, has now been removed. To + assert a newer version of PHP than MediaWiki does, use extension registration. +* The hook 'ChangesListSpecialPageFilters', deprecated in 1.29, has now been + removed. Use the 'ChangesListSpecialPageStructuredFilters' hook instead. +* DeferredUpdates::setImmediateMode(), deprecated since 1.29, has been removed. +* File / MediaHandler::getStreamHeaders(), deprecated since 1.30, was removed. +* The hook 'DoEditSectionLink', deprecated since 1.25, has been removed. Use + the hook 'SkinEditSectionLinks' instead. +* The hook 'UserGetImplicitGroups', deprecated since 1.25, has been removed. +* The global function wfRunHooks, deprecated since 1.25, has now been removed. + Use Hooks::run(). +* The hook 'UnknownAction', deprecated since 1.19, has now been removed. +* The hook 'ParserLimitReport', deprecated since 1.22, has been removed. Use + the hooks 'ParserLimitReportPrepare' and 'ParserLimitReportFormat' instead. === Deprecations in 1.32 === * HTMLForm::setSubmitProgressive() is deprecated. No need to call it. Submit @@ -469,12 +498,42 @@ because of Phabricator reports. $wgTidyConfig instead. * All Tidy configurations other than Remex have been hard deprecated; future parsers will not emit compatible output for these configurations. +* (T198214) OutputPage::addWikiText(), OutputPage::addWikiTextWithTitle(), + and OutputPage::addWikiTextTitle() have been deprecated, since they + can result in untidy output. In addition OutputPage::addWikiTextTidy() + and OutputPage::addWikiTextTitleTidy() was deprecated to make naming new + methods consistent. Use OutputPage::addWikiTextAsInterface() or + OutputPage::addWikiTextAsContent() instead, which ensures the output is + tidy and clarifies whether content-language specific postprocessing should + be done on the text. * QuickTemplate::msgHtml() and BaseTemplate::msgHtml() have been deprecated as they promote bad practises. I18n messages should always be properly escaped. * Skin::getDynamicStylesheetQuery() has been deprecated. It always returns action=raw&ctype=text/css which callers should use directly. * Class LegacyFormatter is deprecated. +* Use of CommentStore::insertWithTempTable() with 'img_description' is + deprecated. Use CommentStore::insert() instead. +* Language::setCode is deprecated as public function. Use Language::factory + to create a new Language object with a different language code. +* Several classes have been moved from the MediaWiki\Storage\ namespace to the + MediaWiki\Revision\ namespace. The old class names are aliased for + compatibility, but are deprecated. Classes are IncompleteRevisionException, + MutableRevisionRecord, MutableRevisionSlots, RevisionAccessException, + RevisionArchiveRecord, RevisionFactory, RevisionLookup, RevisionRecord, + RevisionSlots, RevisionStore, RevisionStoreRecord, SlotRecord, and + SuppressedDataException. +* When using OOUI HTMLForm containing an 'info' field which uses the 'rawrow' + option, it is now deprecated to give its contents (the 'default' option) + as a string. They should be given as a OOUI\FieldLayout object instead. + Notably, this affects fields defined in the 'GetPreferences' hook, because + Special:Preferences uses an OOUI form now. (If possible, don't use 'rawrow'.) +* In Skin::doEditSectionLink omitting the parameters $tooltip and $lang is + deprecated. For the $lang parameter, types other than Language are + deprecated. +* The $wgUseKeyHeader configuration option and the + OutputPage::getKeyHeader() method have been deprecated; the relevant + draft IETF spec expired without becoming a standard. === Other changes in 1.32 === * (T198811) The following tables have had their UNIQUE indexes turned into @@ -490,7 +549,10 @@ because of Phabricator reports. yet for creating or managing content in slots beides the main slot. See for more information. -* … +* The image_comment_temp database table is merged into the image table and + deprecated. Since access should be mediated by the CommentStore class, this + change shouldn't affect external code. +* (T206147) Database::close() will no longer commit any open transactions. == Compatibility == MediaWiki 1.32 requires PHP 7.0.0 or later. Although HHVM 3.18.5 or later is