Skip to content

Releases: DeclarativeHub/ReactiveKit

v3.19.2

24 Mar 13:56
Compare
Choose a tag to compare
  • Fix a race condition in the append operator disposing logic

v3.19.1

07 Mar 19:58
dfb63f8
Compare
Choose a tag to compare
  • CocoaPods release fix.

v3.19.0

25 Oct 08:03
0feaff7
Compare
Choose a tag to compare

Adds latest parameter to throttle operator.

v3.18.3

12 Oct 22:13
Compare
Choose a tag to compare
  • Fixed an issue where binding could be executed even after disposing it. This could happen in a rare race condition case were dispose is called from a different execution context (thread) than what the binding uses to call the setter.

v3.18.2

22 May 17:07
Compare
Choose a tag to compare
  • Fixed an issue with exclusive memory access in AtomicObserver that might have been causing "Simultaneous accesses to..." crashes in special cases.
  • Fixed emission of latest element and completion event in throttle, making it aligned with Combine.

v3.18.0

05 Aug 08:48
9a0ea07
Compare
Choose a tag to compare

Drops iOS 8 support in SPM.

v3.17.3

20 May 11:50
Compare
Choose a tag to compare
  • Added if argument to retry(times:).

v3.17.2

08 May 09:28
Compare
Choose a tag to compare
  • Fix Package.swift with correct macOS version.

v3.17.1

16 Apr 08:58
Compare
Choose a tag to compare
  • Inclusive variant of prefix(while:).

v3.17.0

06 Mar 22:35
Compare
Choose a tag to compare
  • 🎉 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 {
    ... 
  }