Releases: vapor-community/async
Releases · vapor-community/async
Async 1.0.0 RC 1.1
Fixed:
- Removes all
fatalErrors. - Deprecates
SocketSink,SocketSource, andSocketStreamin favor of more specialized streams.
Async 1.0.0 RC 1
Merge pull request #15 from vapor/beta async beta
Async 1.0.0 Beta 1.1
Fixed:
- Added some helpful debugging statements.
- Testing SPM semver support in prerelease identifiers.
Async 1.0.0 Beta 1
Merge pull request #67 from vapor/next-tick Next tick
Async 1.0 Alpha 5
New:
EventLoopis now a protocolWorkerhas been removedExtendablehas been moved toCore
Async 1.0 Alpha 4
Fixed:
- Fixed an issue where
flatten()would never complete for arrays of length 0
Async 1.0 Alpha 3
New:
- Improved
Streamprotocols (API has changed quite a bit) - All streams are now
ClosableStreamby default. - Added some future helpers, including
??
Fixed:
- Error and close chaining work.
Async 1.0 Alpha 2
New:
- Added a global, variadic
thenfunction for combining futures.
return then(futureA, futureB) { a, b in
}Fixed:
- Fixed an issue where only concrete
Future<T>types could be returned in a.then.
Async 1.0 Alpha 1
Swift Promises, Futures, and Streams.