RxSwift/CHANGELOG.md

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 ScopedDispose to ScopedDisposable
  • Deprecates observeSingleOn in favor of observeOn
  • Adds inline documentation
  • Renames from to asObservable extension method on SequenceType
  • Renames catchErrorResumeNext in favor of catchErrorJustReturn
  • Deprecates catchErrorToResult, the preferred way is to use Swift do/try/catch mechanism.
  • Deprecates RxResult, the preferred way is to use Swift do/try/catch mechanism.
  • Deprecates sendNext on Variable in favor of just using value setter.
  • Renames rx_searchText to rx_text on UISearchBar+Rx.
  • Changes parameter type for rx_imageAnimated to be transitionType (kCATransitionFade, kCATransitionMoveIn, ...).

2.0.0-alpha.1 (WIP)

Fixed

  • Problem in RxExample with missing observeOn for images.

Updated

  • Removes deprecated APIs
  • Adds ObservableType
  • Moved from using >- operator to protocol extensions
  • Change from disposeBag.addDisposable to disposable.addDisposableTo
  • Changes in RxCocoa extensions to enable fluent style
  • Rename of do* to doOn*
  • Deprecates returnElement in favor of just
  • Deprecates aggregate in favor of reduce
  • Deprecates variable in favor of shareReplay(1) (to be consistent with RxJS version)
  • Method next on Variable in favor of sendNext

Fixed

1.9.1

Updated

  • Adds Calculator example app
  • Performance improvements for Queue

Fixed

  • Crash in rx_didChangeAuthorizationStatus. #89