Merge "Setup: Remove $wgDebugPrintHttpHeaders option"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Sun, 14 Jul 2019 17:18:35 +0000 (17:18 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Sun, 14 Jul 2019 17:18:35 +0000 (17:18 +0000)
1  2 
RELEASE-NOTES-1.34
includes/DefaultSettings.php

diff --combined RELEASE-NOTES-1.34
@@@ -58,6 -58,9 +58,9 @@@ For notes on 1.33.x and older releases
  * $wgWikiDiff2MovedParagraphDetectionCutoff — If you still want a custom change
    size threshold, please specify in php.ini, using the configuration variable
    wikidiff2.moved_paragraph_detection_cutoff.
+ * $wgDebugPrintHttpHeaders - The default of including HTTP headers in the
+   debug log channel is no longer configurable. The debug log itself remains
+   configurable via $wgDebugLogFile.
  
  === New user-facing features in 1.34 ===
  * Special:Mute has been added as a quick way for users to block unwanted emails
@@@ -272,8 -275,6 +275,8 @@@ because of Phabricator reports
    0..(numRows-1).
  * The ChangePasswordForm hook, deprecated in 1.27, has been removed. Use the
    AuthChangeFormFields hook or security levels instead.
 +* WikiMap::getWikiIdFromDomain(), deprecated in 1.33, has been removed.
 +  Use WikiMap::getWikiIdFromDbDomain() instead.
  * …
  
  === Deprecations in 1.34 ===
@@@ -6330,11 -6330,6 +6330,6 @@@ $wgShowDebug = false
   */
  $wgDebugTimestamps = false;
  
- /**
-  * Print HTTP headers for every request in the debug information.
-  */
- $wgDebugPrintHttpHeaders = true;
  /**
   * Show the contents of $wgHooks in Special:Version
   */
@@@ -6523,6 -6518,14 +6518,6 @@@ $wgStatsdSamplingRates = 
   */
  $wgPageInfoTransclusionLimit = 50;
  
 -/**
 - * Set this to an integer to only do synchronous site_stats updates
 - * one every *this many* updates. The other requests go into pending
 - * delta values in $wgMemc. Make sure that $wgMemc is a global cache.
 - * If set to -1, updates *only* go to $wgMemc (useful for daemons).
 - */
 -$wgSiteStatsAsyncFactor = false;
 -
  /**
   * Parser test suite files to be run by parserTests.php when no specific
   * filename is passed to it.