X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=blobdiff_plain;f=RELEASE-NOTES-1.34;h=0205829e83ef81aa49c77561b094dfa60c525618;hb=4f8378775b3145339d03977468cf6be74afae05d;hp=8730484a782785de0506f11620cfa9f3bbaf9e10;hpb=8390e37efc4b42a1ba3d3102bd78208a30cfccf2;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES-1.34 b/RELEASE-NOTES-1.34 index 8730484a78..0205829e83 100644 --- a/RELEASE-NOTES-1.34 +++ b/RELEASE-NOTES-1.34 @@ -75,6 +75,8 @@ 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 @@ -354,8 +356,6 @@ because of Phabricator reports. * The UserIsBlockedFrom hook is only called if a block is found first, and should only be used to unblock a blocked user. * … -* Language::$dataCache has been removed (without prior deprecation, for - practical reasons). Use MediaWikiServices instead to get a LocalisationCache. === Deprecations in 1.34 === * The MWNamespace class is deprecated. Use NamespaceInfo. @@ -431,6 +431,8 @@ because of Phabricator reports. engines. * Skin::escapeSearchLink() is deprecated. Use Skin::getSearchLink() or the skin template option 'searchaction' instead. +* Skin::getRevisionId() and Skin::isRevisionCurrent() have been deprecated. + Use OutputPage::getRevisionId() and OutputPage::isRevisionCurrent() instead. * LoadBalancer::haveIndex() and LoadBalancer::isNonZeroLoad() have been deprecated. * FileBackend::getWikiId() has been deprecated. @@ -463,12 +465,10 @@ because of Phabricator reports. * Constructing MovePage directly is deprecated. Use MovePageFactory. * TempFSFile::factory() has been deprecated. Use TempFSFileFactory instead. * wfIsBadImage() is deprecated. Use the BadFileLookup service instead. -* Language::getLocalisationCache() is deprecated. Use MediaWikiServices. -* The following Language methods are deprecated: isSupportedLanguage, - isValidCode, isValidBuiltInCode, isKnownLanguageTag, fetchLanguageNames, - fetchLanguageName, getFileName, getMessagesFileName, getJsonMessagesFileName. - Use the new LanguageNameUtils class instead. (Note that fetchLanguageName(s) - are called getLanguageName(s) in the new class.) +* Building a new SearchResult is hard-deprecated, always call + 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. === Other changes in 1.34 === * …