Releases: jpodwys/superagent-cache
Releases · jpodwys/superagent-cache
1.2.1
1.2.0
1.1.1
1.1.0
1.0.6
Merging pull request from @orhanhenrik "Fixed bug that made superagent crash after 60s because the request was not aborted".
1.0.5
Making require('superagent-cache')(null, cache)
calls made after the initial require('superagent-cache')(null, cache)
call overwrite the cache
param passed in an earlier calls. This is useful when you have multiple test files that call require('superagent-cache')(null, cache)
but your test runner executes each of them from a single parent context such that each superagent-cache
instance is not garbage collected before the next one is required.
1.0.4
Fixing a bug that prevented superagent-cache from being required more than once. Thanks @kaspermarstal.