Releases: DeclarativeHub/ReactiveKit
Releases · DeclarativeHub/ReactiveKit
v3.19.2
v3.19.1
- CocoaPods release fix.
v3.19.0
Adds latest
parameter to throttle
operator.
v3.18.3
- 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
- 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
Drops iOS 8 support in SPM.
v3.17.3
- Added
if
argument toretry(times:)
.
v3.17.2
- Fix
Package.swift
with correct macOS version.
v3.17.1
- Inclusive variant of
prefix(while:)
.
v3.17.0
- 🎉 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 {
...
}