All Versions
36
Latest Version
Avg Release Cycle
16 days
Latest Release
1353 days ago

Changelog History
Page 1

  • v3.18.1

    October 11, 2020
  • v3.18.0 Changes

    August 05, 2020

    ⬇️ Drops iOS 8 support in SPM.

  • v3.17.4

    August 02, 2020
  • v3.17.3 Changes

    May 20, 2020
    • ➕ Added if argument to retry(times:).
  • v3.17.2 Changes

    May 08, 2020
    • 🛠 Fix Package.swift with correct macOS version.
  • v3.17.1 Changes

    April 16, 2020
    • Inclusive variant of prefix(while:).
  • v3.17.0 Changes

    March 06, 2020
    • 🍱 🎉 Built-in support for Timelane 🎉

    🚦 ReactiveKit now has a built-in support for Timelane Xcode Instrument. Just download the instrument and start using the lane operator to send the signal data to the Timelane Instrument.

    mySignal .filter { ... } .lane("My Signal") .map { ... } .sink { ... }
    
  • v3.16.4 Changes

    March 06, 2020
  • v3.16.3 Changes

    March 05, 2020
  • v3.16.2 Changes

    February 06, 2020

    Introduce publisher<Value>(for:options:) on NSObject.reactive extension:

    let player = AVPlayer() player.reactive.publisher(for: \.status).sink { print("Playback status: \($0)") }