Skip to content

Releases: anttih/purescript-rx

v0.8.1

22 Nov 13:15
Compare
Choose a tag to compare
  • Fix materialize

v0.8.0

22 Nov 12:47
Compare
Choose a tag to compare
  • Fix scan parameter order
  • Add startWith
  • Update Aff
  • Remove unused imports

v0.7.0

09 Jul 20:05
Compare
Choose a tag to compare

0.7.0

This version only works with version 0.7.x of the PureScript compiler.

Breaking changes

  • Removed jQuery bindings, they are being moved to a separate library

v0.6.0

24 Apr 18:57
Compare
Choose a tag to compare

Breaking changes

  • Rename Event to Notification and move to own module

New features

  • Add materialize and dematerialize
  • Add subscribe'
  • Add subscribeOnError

v0.5.0

21 Apr 20:15
Compare
Choose a tag to compare

Breaking changes

  • Changes in ContT support:
    • Rename fromCont to liftCont
    • Event type now has a fixed type for errors: a javascript error. This is now
      possible because Observable implements MonadError.
    • liftCont now passes OnError events as Observable errors
    • Removed fromErrCont to keep the API simple

New features

  • Add MonadError instance
  • Add Aff support (liftAff)

Other stuff

  • Use grunt again and compile examples by default

v0.4.0

07 Apr 05:23
Compare
Choose a tag to compare

Breaking changes

  • Change Bind implementation to use flatMap instead of flatMapLatest
  • Change scan param order
  • Use require for loading Rx (this means you'll need to use browserify in
    order to deploy to the browser)

New features

  • Add distinct, distinctUntilChanged, filter (@pelotom)
  • Add generate and range
  • Add withLatestFrom
  • Add runObservable