Merge "Send the profiler output to the 'profileoutput' log group"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Mon, 31 Mar 2014 16:16:22 +0000 (16:16 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Mon, 31 Mar 2014 16:16:22 +0000 (16:16 +0000)
1  2 
RELEASE-NOTES-1.23
includes/DefaultSettings.php

diff --combined RELEASE-NOTES-1.23
@@@ -52,6 -52,8 +52,8 @@@ production
    wgQueryPages hook.
  * $wgHttpOnlyBlacklist has been removed.
  * $wgLicenseTerms has been removed as it was unused.
+ * $wgProfileOnly is now deprecated; set the log file in
+   $wgDebugLogGroups['profileoutput'] to replace it.
  
  === New features in 1.23 ===
  * ResourceLoader can utilize the Web Storage API to cache modules client-side.
@@@ -240,8 -242,6 +242,8 @@@ MediaWiki supports over 350 languages. 
  regularly. Below only new and removed languages are listed, as well as
  changes to languages because of Bugzilla reports.
  
 +* Support was added for Algerian Spoken Arabic (arq).
 +* Support was added for Riograndenser Hunsrückisch (hrx).
  * Support was added for Northern Luri (lrc).
  
  === Other changes in 1.23 ===
    parser, where it differs from the PHP parser).
  * Special:Search no longer has an "include redirects" option on the advanced
    tab. Redirects are now included in all searches.
 +* mediawiki.api.category's getCategories() 'async' parameter was deprecated.
  
  ==== Removed classes ====
  * FakeMemCachedClient (deprecated in 1.18)
@@@ -3607,25 -3607,6 +3607,25 @@@ $wgNamespacesWithSubpages = array
        NS_CATEGORY_TALK => true
  );
  
 +/**
 +  * Array holding default tracking category names.
 +  *
 +  * Array contains the system messages for each tracking category.
 +  * Tracking categories allow pages with certain characteristics to be tracked.
 +  * It works by adding any such page to a category automatically.
 +  *
 +  * @since 1.23
 +  */
 +$wgTrackingCategories = array(
 +      'index-category',
 +      'noindex-category',
 +      'expensive-parserfunction-category',
 +      'post-expand-template-argument-category',
 +      'post-expand-template-inclusion-category',
 +      'hidden-category-category',
 +      'broken-file-category',
 +);
 +
  /**
   * Array of namespaces which can be deemed to contain valid "content", as far
   * as the site statistics are concerned. Useful if additional namespaces also
@@@ -5086,6 -5067,9 +5086,9 @@@ $wgProfileLimit = 0.0
  
  /**
   * Don't put non-profiling info into log file
+  *
+  * @deprecated since 1.23, set the log file in
+  *   $wgDebugLogGroups['profileoutput'] instead.
   */
  $wgProfileOnly = false;