Initial commit
[yaffs-website] / node_modules / are-we-there-yet / CHANGES.md
1 Hi, figured we could actually use a changelog now:
2
3 ## 1.1.1 2016-01-29
4
5 * Fix a typo in stream completion tracker
6
7 ## 1.1.0 2016-01-29
8
9 * Rewrote completion percent computation to be low impact– no more walking a
10   tree of completion groups every time we need this info.  Previously, with
11   medium sized tree of completion groups, even a relatively modest number of
12   calls to the top level `completed()` method would result in absurd numbers
13   of calls overall as it walked down the tree. We now, instead, keep track as
14   we bubble up changes, so the computation is limited to when data changes and
15   to the depth of that one branch, instead of _every_ node. (Plus, we were already
16   incurring _this_ cost, since we already bubbled out changes.)
17 * Moved different tracker types out to their own files.
18 * Made tests test for TOO MANY events too.
19 * Standarized the source code formatting