All Versions
36
Latest Version
Avg Release Cycle
16 days
Latest Release
1078 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v3.14.3 Changes
November 19, 2019- Internal improvements in
AtomicObserver
.
- Internal improvements in
-
v3.14.2 Changes
November 07, 2019- Threading improvements in Disposables.
-
v3.14.1 Changes
November 06, 2019- ๐ Improve threading in
Subject
.
- ๐ Improve threading in
-
v3.14.0 Changes
October 13, 2019- Aligned most of the operators with Combine
- ๐ฆ
sink
now returnsAnyCancellable
that disposes signal when deallocated, matching Combine behaviour - โฑ Introduced
Scheduler
protocol as an umbrella overDispatchQueue
andExecutionContext
- ๐ฆ Moved
Event
intoSignal
extension (ieEvent<T, E>
is nowSignal<T, E>.Event
) - Introduced
mapToResult
andbreakpoint
operators
-
v3.13.2 Changes
August 19, 2019- ๐ Fixes an issue with
take(first:)
introduced in the previous release.
- ๐ Fixes an issue with
-
v3.13.1 Changes
August 18, 2019- Awesome thread safety improvements by @trupin!
-
v3.13.0 Changes
June 22, 2019API alignment with Combine
PublishSubject<Element, Error>
has been renamed toPassthroughSubject<Element, Error>
.next(value)
,completed()
andfailed(error)
methods on theObserver
type have been renamed toreceive(value)
,receive(completion: .finished)
andreceive(completion: .failure(error))
respectively.next(value)
,completed()
andfailed(error)
methods on theSubject
type have been renamed tosend(value)
,send(completion: .finished)
andsend(completion: .failure(error))
respectively.shareReplay(limit:)
has been renamed toshare(limit:)
.sink(receiveCompletion:receiveValue:)
operator is added.
let didChange = PassthroughSubject\<Void, Never\>() didChange.sink { (value) inprint(value) } didChange.sink(receiveCompletion: { (completion) inprint(completion) }, receiveValue: { value inprint(value) }) didChange.send() didChange.send(completion: .finished)
-
v3.12.3 Changes
June 21, 2019- ๐ Fix possible race conditions in dispose bag and subjects - thanks @trupin!
- ๐ Fix possible threading issue in Property - thanks @aethe!
- Properly set new value in LoadingProperty - thanks @tonyarnold!
-
v3.12.2 Changes
June 01, 2019- Introduces operator
repeat(when:)
.
- Introduces operator
-
v3.12.1
June 01, 2019