wikimedia/running-stat 1.0.0 → 1.1.0
authorOri Livneh <ori@wikimedia.org>
Wed, 28 Oct 2015 22:31:47 +0000 (15:31 -0700)
committerOri Livneh <ori@wikimedia.org>
Wed, 28 Oct 2015 22:34:57 +0000 (15:34 -0700)
9d7170d3ee: Rename RunningStat::push() to RunningStat::addObservation()
09b6e53be9: Add PSquare class for online percentile estimation

mediawiki/vendor change: I48dd51c9068

Change-Id: Ie6b19833c282e0f493c4d306807366a6671455a8

composer.json
includes/libs/Xhprof.php

index cfff697..4aa9b92 100644 (file)
@@ -31,7 +31,7 @@
                "wikimedia/composer-merge-plugin": "1.2.1",
                "wikimedia/ip-set": "1.0.1",
                "wikimedia/relpath": "1.0.3",
-               "wikimedia/running-stat": "1.0.0",
+               "wikimedia/running-stat": "1.1.0",
                "wikimedia/utfnormal": "1.0.3",
                "wikimedia/wrappedstring": "2.0.0",
                "zordius/lightncandy": "0.21"
index eaf15df..d2cd0e4 100644 (file)
@@ -256,7 +256,7 @@ class Xhprof {
                                        }
 
                                        for ( $i = 0; $i < $stats['ct']; $i++ ) {
-                                               $this->inclusive[$child][$stat]->push(
+                                               $this->inclusive[$child][$stat]->addObservation(
                                                        $value / $stats['ct']
                                                );
                                        }