Releases: Alusus/Promises
Releases · Alusus/Promises
Release list
0.1.3
0.1.2
0.1.1
0.1.0
- Enabled resolving a promise using another promise which will make the resolved promise wait for the provided promise to be resolved and then use its result.
- Capture unresolved promises using a SrdRef linked list so that its callbacks are triggered even if the user use then without capturing the resulting SrdRef.
- Some code refactoring.
- Added documentation.
0.0.2
Bug fix in Promise.all.
Bug fix for the case of calling Promise.all with promises that are all already resolved, in which cases the created container promise does not get resolved, which is incorrect. The new behavior is that the created promise is created in a resolved state if all supplied promises are already resolved.