All Versions
58
Latest Version
Avg Release Cycle
75 days
Latest Release
-
Changelog History
Page 3
Changelog History
Page 3
-
v4.0.0-rc.0 Changes
- ๐ Deprecates
image(transitionType:)
in favor ofimage
. - ๐ Changes return type of
ignoreElements
toCompletable
. #1436 - โ Removes warning of sequence completion from
Binder
. #1431 - ๐ Deprecates
Variable
in favor ofBehaviorRelay
.
- ๐ Deprecates
-
v4.0.0-beta.1 Changes
- โ Adds
attributedText
toUITextField
. #1249 - โ Adds
attributedText
toUITextView
. #1249 - โ
Deprecates
shareReplayLatestWhileConnected
andshareReplay
in favor ofshare(replay:scope:)
. #1430 - ๐ Changes
publish
,replay
,replayAll
to clear state in case of sequence termination to be more consistent with other Rx implementations and enable retries. #1430 - 0๏ธโฃ Replaces
share
with default implementation ofshare(replay:scope:)
. #1430 - โ Adds
HasDelegate
andHasDataSource
protocols. - โก๏ธ Updates package version to v4 format. #1418
Anomalies
- โ Adds deprecated warnings to API parts that were missing it. #1427
- ๐ Improves memory handling in
isScheduleRequiredKey
. #1428 - โ Removes pre-release identifier from bundle version to enable
TestFlight
submissions. #1424 - โ Removes code coverage to enable
TestFlight
submissions. #1423 - ๐ Fixes Xcode warnings. #1421
- โ Adds
-
v4.0.0-beta.0 Changes
- โ Adds
materialize()
operator for RxBlocking'sBlockingObservable
. #1383 - โ Adds
first
operator toObservableType
. - ๐ Deprecates
UIBindingObserver
in favor ofBinder
. #1411 - โ Adds another specialization of
SharedSequence
calledSignal
. - ๐จ Refactors
DelegateProxy
to be type safe. - ๐ Changes nested
SharedSequence
strategy to use inner sharing strategy for result.
Anomalies
- Call
controlTextDidChange(โฆ)
as an optional method. #1406 - ๐ Fixed issue with
NSControl.rx.value
regarding multiple observers. #1399 - โ Removes useless extensions from
PrimitiveSequence
. #1248
- โ Adds
-
v4.0.0-alpha.1 Changes
- ๐ Merge of
3.6.1
changes. - โ Adds
UIScrollView.willEndDragging
extension. #1365 - โ Adds
enumerated
operator (deprecatesskipWhileWithIndex
,takeWhileWithIndex
,flatMapWithIndex
,mapWithIndex
).
Anomalies
- ๐ Fixes gesture recognizer extensions crash. #1382
- โ Adds
onSubscribed
parameter toSharedSequence
extensions.
- ๐ Merge of
-
v4.0.0-alpha.0 Changes
- Swift 4.0 compatibility
- ๐ Changes delegate proxy to use plugin architecture.
Anomalies
- ๐ Fixes public interface leakage of
NSKeyValueObservingOptions
. #1164
-
v3.6.1 Changes
Anomalies
- ๐ Fixes compilation issue with Xcode 9b3. #1341
- ๐ Fixes issues with
andThen
operator. #1347 - ๐ Improves locking behavior of
merge
andswitch
operators. #1344
-
v3.6.0 Changes
- โ Adds
timeout
operator toPrimitiveSequence
(Single
,Maybe
,Observable
) - โ Adds
delay
operator toSharedSequence
. - โ Adds
andThen
operator toCompleteable
. - โ Adds
concat
operator toCompleteable
. - โ Adds
RxPickerViewDataSourceType
- โ Adds
UIPickerView
extensions:modelSelected
itemTitles
itemAttributedTitles
items
- โ Adds
UITableView
extensions:modelDeleted
- โ Adds
UICollectionView
extensions:itemHighlighted
itemUnhighlighted
willDisplayCell
didEndDisplayingCell
willDisplaySupplementaryView
didEndDisplayingSupplementaryView
- โ Adds
UIScrollView
extensions:willBeginDecelerating
willBeginDragging
willBeginZooming
didEndZooming
Anomalies
- ๐ Fixes deadlock anomaly in
shareReplayWhileLatest
. #1323 - โ Removes duplicated events swallowing in
NSControl
on macOS.
- โ Adds
-
v3.5.0 Changes
- โ Adds
from
operator on "SharedSequence" - โ Adds
concat
operator on "Completable" - โ Adds
merge
operator on "Completable" - โ Adds
using
operator on "PrimitiveSequence" - โ Adds
concatMap
operator. - โ Adds
share(replay:scope:)
operator. - โ Adds
multicast(makeSubject:)
operator. - โ Adds
UIButton.image(for:)
extension. - โ Adds
UIButton.backgroundImage(for:)
extension. - ๐ fixes typos
Anomalies
- ๐ Improves reentrancy and synchronization checks.
- Issues with
share()
andshareReplay(_:)
. #1111 .share()
inconsistent in behavior. #1242- ๐ Fixes issues with
Driver
sometimes sending initial element async. #1253
- โ Adds
-
v3.4.1 Changes
- โ Adds
UINavigationController
delegate proxy and extensions:willShow
didShow
- โฑ Deprecates
TestScheduler.start(_:create:)
in favor ofTestScheduler.start(disposed:create:)
. - โฑ Deprecates
TestScheduler.start(_:subscribed:disposed:create:)
in favor ofTestScheduler.start(created:subscribed:disposed:create:)
.
Anomalies
- ๐ Fixes observable sequence completion in case of empty arrays for
combineLatest
andzip
. #1205 - ๐ Fixes array version of
merge
operator completing immediately in case one of the observable sequences is empty. #1221 - โ Adds RxTest to SPM. #1215
- โ Adds tuple version of operator
SharedSequence.zip
(collection). - โ Adds tuple version of operator
SharedSequence.zip
. - โ Adds tuple version of operator
SharedSequence.combineLatest
(collection). - โ Adds tuple version of operator
SharedSequence.combineLatest
. - โ Adds missing
trimOutput
parameter toSharedSequence.debug
. - ๐ Makes
RxImagePickerDelegateProxy
subclass ofRxNavigationControllerDelegateProxy
.
- โ Adds
-
v3.4.0 Changes
- Xcode 8.3.1 / Swift 3.1 compatibility.
- โ Add subscription closures for Single, Maybe and Completable (
onSuccess
,onError
,onCompleted
). - ๐ Rename Units as Traits and update the documentation for Single, Completable & Maybe.
- ๐ Deprecates
bindTo
in favor ofbind(to:)
. - โ Adds
materialize
operator - โ Adds
dematerialize
operator - โ Adds
latest
parameter toSharedSequence.throttle
operator. - โ Adds
debug
operator toPrimitiveSequence
.
Anomalies
- ๐ Fixes problem with
UICollectionView
data source caching and disposal logic. #1154