X-Git-Url: http://git.cyclocoop.org/data/Luca_Pacioli_%28Gemaelde%29.jpeg?a=blobdiff_plain;f=RELEASE-NOTES-1.34;h=8ecc469d67b0ecb47c069de2ddf43d9c0a09bada;hb=41ba319eb6aaafb76b28bf161f2a48572bbfdbd7;hp=3e51f2ddcdca495a3d9b72c787363a1ef350c457;hpb=22ac82f4cd7960735339d23865fce21665ea9c17;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES-1.34 b/RELEASE-NOTES-1.34 index 3e51f2ddcd..8ecc469d67 100644 --- a/RELEASE-NOTES-1.34 +++ b/RELEASE-NOTES-1.34 @@ -294,6 +294,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 ResourceLoaderContext::expandModuleNames method, deprecated in 1.33, was + removed. Use ResourceLoader::expandModuleNames instead. * The ability to override User::$mRights has been removed. Use PermissionManager::addTemporaryUserRights() instead. * Previously, when iterating ResultWrapper with foreach() or a similar @@ -417,6 +419,22 @@ because of Phabricator reports. to be prevented. Modifying the $purgeBlobs parameter now has no effect. * SVGMetadataExtractor::getMetadata has been deprecated. Instead, you should use SVGReader->getMetadata() directly. +* The following public properties on AbstractBlock are deprecated: $mReason, + $mTimestamp, $mExpiry, $mHideName. Use the getters/setters instead. +* The following public properties on DatabaseBlock are deprecated: $mAuto, + $mParentBlockId. To check for an autoblock use DatabaseBlock::getType; to + check for the parent ID, use DatabaseBlock::getParentBlockId. +* SearchEngine::userHighlightPrefs() is deprecated, simply stop passing + $contextlines and $contextchars to the SearchHighlighter methods, they will + use proper defaults defined in SearchHighlighter::DEFAULT_CONTEXT_LINES and + DEFAULT_CONTEXT_CHARS. +* SearchUpdate constructor: passing a string as the title param and or a boolean + or a string as the content will produce a deprecation warning. +* SearchEngine::getTextFromContent() is deprecated, use getTextForSearchIndex() + directly from the Content object. +* SearchEngine::textAlreadyUpdatedForIndex() is deprecated, given the + deprecation above this method is no longer needed/called and should not be + implemented by SearchEngine implementation. === Other changes in 1.34 === * …