X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=RELEASE-NOTES-1.34;h=8ecc469d67b0ecb47c069de2ddf43d9c0a09bada;hb=aa4da3c2e8eb26afa182a8d86581ba4cd7f38bc2;hp=f54e360b81bc3f36fb64e96d369ee69ec31f05a2;hpb=a3a28f7e081e7a1a7bd8873f0e5cae13368011ec;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES-1.34 b/RELEASE-NOTES-1.34 index f54e360b81..8ecc469d67 100644 --- a/RELEASE-NOTES-1.34 +++ b/RELEASE-NOTES-1.34 @@ -61,6 +61,10 @@ For notes on 1.33.x and older releases, see HISTORY. 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']. +* $wgProxyList — Setting this to an array with IP addresses in the array keys, + which was deprecated in 1.30, no longer works. Instead, $wgProxyList should be + an array with IP addresses as the values, or a string path to a file + containing one IP address per line. * … ==== Removed configuration ==== @@ -70,6 +74,10 @@ 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. +* $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 + in the 'flags' field for servers in $wgDBServers (or $wgLBFactoryConf). === New user-facing features in 1.34 === * Special:Mute has been added as a quick way for users to block unwanted emails @@ -286,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 @@ -307,11 +317,24 @@ because of Phabricator reports. deprecated since 1.33. * The static properties mw.Api.errors and mw.Api.warnings, deprecated in 1.29, have been removed. +* ParserOption::getSpeculativeRevIdCallback(), deprecated in 1.28, has 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(). +* LBFactory::setDomainPrefix() and LoadBalancer::setDomainPrefix(), deprecated + in 1.33, have been removed. Use setLocalDomainPrefix() instead. +* IDatabase::implicitGroupby(), deprecated in 1.30, has been removed. +* IDatabase::doneWrites(), deprecated in 1.31, has been removed. + Use IDatabase::lastDoneWrites() instead. +* Database::reportConnectionError(), deprecated in 1.32, has been removed. +* LoadBalancer::laggedSlaveUsed(), deprecated in 1.28, has been removed. + Use LoadBalancer::laggedReplicaUsed() instead. +* Database::getProperty(), deprecated in 1.28, has been removed. +* IDatabase::getWikiId(), deprecated in 1.30, has been removed. + Use IDatabase::getDomainID() instead. * … === Deprecations in 1.34 === @@ -394,6 +417,24 @@ because of Phabricator reports. PermissionManager::getUserPermissions() instead. * The LocalisationCacheRecache hook no longer allows purging of message blobs 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 === * …