Skip to content

Latest commit

 

History

History
115 lines (82 loc) · 9.1 KB

CHANGELOG.md

File metadata and controls

115 lines (82 loc) · 9.1 KB

1.5.1

Bug Fixes

  • Fixed non-strict search in CompositeDisposable (c17fb6c)
  • Fixed missing array type hint on Observable::__call (1672dc1)

1.5.0

Bug Fixes

  • Fixed throttle.php demo (cee42e2)
  • Fixed Promise::fromObservable() to allow selecting the scheduler (de88548)
  • Fixed VirtualTimeScheduler to use now() method (d5afdde)
  • Fixed defer swallowing errors (#85)
  • Fixed phpunit deprecation warnings (b7f754c)
  • Fixed scheduler disposable on delay dispose (#87)

Features

1.4.1

Bug Fixes

  • Fixed EventLoopScheduler (f0302d2)

1.4.0

Bug Fixes

Features

1.3.0

Bug Fixes

  • Fixed combineLatest when using the EventLoopScheduler (12fce12)
  • Fixed argument ordering issue with combineLatest (c5a8e5a)
  • Fixed shareReplay, so arguments are optional (e38e8a4)
  • Fixed double subscription issue with concatAll (4c64a82)
  • Fixed delay now uses materialize and timestamp, so that it has consistent behavior between all supported schedulers (#51)
  • Fixed EventLoopScheduler, which is now based off of the VirtualTimeScheduler (#50)

Features

  • Added materialize and dematerialize operators (6d6bba4)
  • Added timestamp operator (4109934)
  • Added switchLatest operator (58c95b0)
  • Added partition operator (ca95144)
  • Added flatMapLatest operator (c0d15ff)

1.2.0

Bug Fixes

  • Fixed uninitialized disposable in skipUntil (2b5ea0b)
  • Fixed asObservable operator was not passing through the scheduler (d805cfd)
  • Fixed uninitialized disposable in retry (ca4da7e)
  • Fixed #23 - changing yield behavior in hhvm (da2737c)
  • Fixed #33 - For Rx\React\Promise::toObservable, wrap non-exceptions on reject (ed852de)

Features

  • Added ability to record and validate output of demo files (883ad4b)
  • Added catchError operator (cd4fc03)
  • Added takeWhile and takeWhileWithIndex operators (177835e)
  • Added startWith and startWithArray operators (585f893)
  • Added retryWhen operator (19b36fc)
  • Added utility to generate documentation for reactivex.io (a62d46b)
  • Added concatAll and concatMap operators (c794cf3)
  • Added skipWhile and skipWhileWithIndex operators (80c997f)
  • Added max operator (1a841fa)

1.1.0

Bug fixes

  • Fixed bug where the map operator called onNext after it was disposed (8a1d68c)
  • Minor fixes to groupByUntil (f6f56e3)
  • Minor fixes to delay (2613f36)

Features

  • Added range observable (1684522) (0ceab90) (121806c)
  • Added index to map selector (8a1d68c)
  • Added mapTo operator (8a1d68c)
  • Added timer observable (304bc0c)
  • Added distinct and distinctKey (e9575f1)
  • Split distinctUntilChanged into distinctUntilChanged and distinctUntilKeyChanged (e9575f1)