github-actions
released this
23 Jul 10:04
·
294 commits
to master
since this release
Patch Changes
-
#3161
b932dca
Thanks @ntucker! - Add jsdocs to IdlingNetworkManager -
e4751d9
Thanks @ntucker! - NetworkManager constructor uses keyword argsBefore
new NetworkManager(42, 7);
After
new NetworkManager({ dataExpiryLength: 42, errorExpiryLength: 7 });
-
09ad848
Thanks @ntucker! - state.endpoints moved above indexesentites
andendpoints
are the most commonly inspected
parts of state when debugging, so it is better to have endpoints
above indexes.