Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Latest commit

 

History

History
100 lines (60 loc) · 5.69 KB

CHANGELOG.md

File metadata and controls

100 lines (60 loc) · 5.69 KB

Changelog

4.0.2 (2024-01-05)

Dependencies

Chores

  • 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)

Bug Fixes

  • aee9063 #178 modernize class inheritance (#178) (@jimmywarting)

4.0.0 (2022-10-10)

⚠️ BREAKING CHANGES

  • are-we-there-yet is now compatible with the following semver range for node: ^14.17.0 || ^16.13.0 || >=18.0.0

Features

  • 529459c #157 postinstall for dependabot template-oss PR (@lukekarrys)

Dependencies

  • 7af13fa #146 bump readable-stream from 3.6.0 to 4.1.0

3.0.1 (2022-07-21)

Bug Fixes

  • replace deprecated String.prototype.substr() (#140) (6145a9e)

3.0.0 (2022-02-09)

⚠ BREAKING CHANGES

  • This drops support for node10 and non-LTS versions of node 12 and node 14

Bug Fixes

  • @npmcli/template-oss@2.7.1 (f742777)

Documentation

  • rename CHANGE.md to CHANGELOG.md (2667644)

1.1.5 2018-05-24

  • #92 Fix bug where finish would throw errors when including TrackerStream objects in TrackerGroup collections. (@brianloveswords)

1.1.4 2017-04-21

  • Fix typo in package.json

1.1.3 2017-04-21

  • Improve documentation and limit files included in the distribution.

1.1.2 2016-03-15

  • Add tracker group cycle detection and tests for it

1.1.1 2016-01-29

  • Fix a typo in stream completion tracker

1.1.0 2016-01-29

  • 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