1.8 KiB
1.8 KiB
Change Log
All notable changes to this project will be documented in this file.
2.0.0-alpha.2 (WIP)
Updated
- Renames
ScopedDisposetoScopedDisposable - Deprecates
observeSingleOnin favor ofobserveOn - Adds inline documentation
- Renames
fromtoasObservableextension method onSequenceType - Renames
catchErrorResumeNextin favor ofcatchErrorJustReturn - Deprecates
catchErrorToResult, the preferred way is to use Swiftdo/try/catchmechanism. - Deprecates
RxResult, the preferred way is to use Swiftdo/try/catchmechanism. - Deprecates
sendNextonVariablein favor of just usingvaluesetter. - Renames
rx_searchTexttorx_textonUISearchBar+Rx. - Changes parameter type for
rx_imageAnimatedto be transitionType (kCATransitionFade, kCATransitionMoveIn, ...).
2.0.0-alpha.1 (WIP)
Fixed
- Problem in RxExample with missing
observeOnfor images.
Updated
- Removes deprecated APIs
- Adds
ObservableType - Moved from using
>-operator to protocol extensions - Change from
disposeBag.addDisposabletodisposable.addDisposableTo - Changes in RxCocoa extensions to enable fluent style
- Rename of
do*todoOn* - Deprecates
returnElementin favor ofjust - Deprecates
aggregatein favor ofreduce - Deprecates
variablein favor ofshareReplay(1)(to be consistent with RxJS version) - Method
nextonVariablein favor ofsendNext
Fixed
1.9.1
Updated
- Adds Calculator example app
- Performance improvements for Queue
Fixed
- Crash in
rx_didChangeAuthorizationStatus. #89