RxJs v6.0.0-rc.0 Release Notes

Release Date: 2018-03-31 // about 6 years ago
  • ๐Ÿ› Bug Fixes

    • ajax: properly encode body with form data that includes URLs (#3502) (4455d21), closes #2399
    • bindNodeCallback: better type inference (932bb7a)
    • elementAt: now allows falsy defaultValues (13706e7)
    • ๐Ÿ‘• lint_perf: fix lint issues with newer perf tests (1013754)
    • throttle: now properly trailing throttles for individual values (#3505) (3db18d1), closes #2864

    ๐Ÿ”‹ Features

    • takeUntil: no longer subscribes to source if notifier synchronously emits (#3504) (7b8a3e3), closes #2189

    ๐ŸŽ Performance Improvements

    • pluck,bufferTime,asObservable: add performance tests for pluck(), bufferTime() and asObservable() operators (#2491) (24506b3)
    • ReplaySubject: slightly improved performance (#2677) (9fea36d)

    ๐Ÿ’ฅ BREAKING CHANGES

    • throttle: This changes the behavior of throttle, in particular throttling with both leading and trailing behaviors set to true, to more closely match the throttling behavior of lodash and other libraries. Throttling now starts immediately after any emission from the observable, and values will not be double emitted for both leading and trailing values