RxGo Versions Save

Reactive Extensions for the Go language.

v2.5.0

3 years ago

Installation

go get -u github.com/reactivex/rxgo/[email protected]

Added

Changed

Fixed

v1.0.1

3 years ago
  • Deprecated version note

v2.4.0

3 years ago

Installation

go get -u github.com/reactivex/rxgo/[email protected]

Changed

Fixed

v2.3.0

3 years ago

Installation

go get -u github.com/reactivex/rxgo/[email protected]

Added

  • Find operator

Changed

  • Serialize operator implementation (simplification)
  • Documentation improvement

Fixed

v2.2.0

3 years ago

Installation

go get -u github.com/reactivex/rxgo/[email protected]

Added

  • GroupByDynamic operator

v2.1.1

3 years ago

Installation

go get -u github.com/reactivex/rxgo/[email protected]

Fixed

  • Fixing leaks in very specific cases

v2.1.0

4 years ago

Installation

go get -u github.com/reactivex/rxgo/[email protected]

Changed

  • Connect returns now the context used for the subscription. It allows getting notified once the subscription has been cancelled.

v2.0.1

4 years ago

Installation

go get -u github.com/reactivex/rxgo/[email protected]

Changed

v2.0.0

4 years ago

Installation

go get -u github.com/reactivex/rxgo/[email protected]

Release

General

  • Hot vs cold observable
  • Backpressure management
  • Lazy vs eager observation
  • Sequential vs parallel operators
  • Connectable Observable
  • Observable options

New Operators

  • All
  • Amb
  • Average
  • BackOffRetry
  • Buffer
  • Catch
  • CombineLatest
  • Concat
  • Contains
  • Count
  • Debounce
  • DefaultIfEmpty
  • Defer
  • ElementAt
  • Error
  • FirstOrDefault
  • FromEventSource
  • GroupBy
  • IgnoreElements
  • Interval
  • Join
  • LastOrDefault
  • Marshal
  • Max
  • Merge
  • Min
  • Never
  • Range
  • Reduce
  • Retry
  • Run
  • Sample
  • Scan
  • SequenceEqual
  • Send
  • Serialize
  • SkipWhile
  • StartWith
  • Sum
  • TakeUntil
  • TakeWhile
  • TimeInterval
  • Timestamp
  • Thrown
  • Timer
  • ToMap
  • ToMapWithValueSelector
  • ToSlice
  • Unmarshal
  • Window
  • ZipFromIterable

v2.0.0-beta.3

4 years ago

Installation

go get -u github.com/reactivex/rxgo/[email protected]

Release

  • Fixing time-based observable (Buffer & Window)