X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=RELEASE-NOTES-1.34;h=7cc043403269fc1076a2986ada914f38f16250db;hb=dee2d347561fed84bf10746118779f8ed7a862db;hp=4bd655907ccf8c72241b150e3bde24c640fff4f1;hpb=023c73f6128ab2c761f37358f125b6108fd102f5;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES-1.34 b/RELEASE-NOTES-1.34 index 4bd655907c..7cc0434032 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 ==== @@ -290,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 @@ -318,6 +324,17 @@ because of Phabricator reports. * 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 === @@ -400,9 +417,13 @@ 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. -* The use of $wgProxyList with IP addresses in the array keys, deprecated in - 1.30, was removed. 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. +* 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. === Other changes in 1.34 === * …