4.0.2 (2024-01-05)
6c3cebf
#205 postinstall for dependabot template-oss PR (@lukekarrys)809215c
#205 bump @npmcli/template-oss from 4.21.1 to 4.21.3 (@dependabot[bot])8858a73
#202 postinstall for dependabot template-oss PR (@lukekarrys)b2134b9
#202 bump @npmcli/template-oss from 4.19.0 to 4.21.1 (@dependabot[bot])9acf64b
#184 postinstall for dependabot template-oss PR (@lukekarrys)d8bacce
#184 bump @npmcli/template-oss from 4.18.1 to 4.19.0 (@dependabot[bot])9e4783f
#182 postinstall for dependabot template-oss PR (@lukekarrys)d55ffbf
#182 bump @npmcli/template-oss from 4.18.0 to 4.18.1 (@dependabot[bot])08dc9f5
#181 postinstall for dependabot template-oss PR (@lukekarrys)8145faf
#181 bump @npmcli/template-oss from 4.17.0 to 4.18.0 (@dependabot[bot])
4.0.1 (2023-07-17)
4.0.0 (2022-10-10)
are-we-there-yet
is now compatible with the following semver range for node:^14.17.0 || ^16.13.0 || >=18.0.0
3.0.1 (2022-07-21)
3.0.0 (2022-02-09)
- This drops support for node10 and non-LTS versions of node 12 and node 14
- @npmcli/[email protected] (f742777)
- rename CHANGE.md to CHANGELOG.md (2667644)
- #92 Fix bug where
finish
would throw errors when includingTrackerStream
objects inTrackerGroup
collections. (@brianloveswords)
- Fix typo in package.json
- Improve documentation and limit files included in the distribution.
- Add tracker group cycle detection and tests for it
- Fix a typo in stream completion tracker
- Rewrote completion percent computation to be low impact– no more walking a
tree of completion groups every time we need this info. Previously, with
medium sized tree of completion groups, even a relatively modest number of
calls to the top level
completed()
method would result in absurd numbers of calls overall as it walked down the tree. We now, instead, keep track as we bubble up changes, so the computation is limited to when data changes and to the depth of that one branch, instead of every node. (Plus, we were already incurring this cost, since we already bubbled out changes.) - Moved different tracker types out to their own files.
- Made tests test for TOO MANY events too.
- Standarized the source code formatting