Commit Graph

106 Commits

Author SHA1 Message Date
freak4pc
cfb6f117c8 Updated SPM tests 2018-07-17 21:23:47 +02:00
Sebastian Roth
65a64b2e98 Allow specifying a queue priority on OperationQueueScheduler 2018-06-18 15:27:30 +08:00
Michael Long
261c463772 Regenerate main tests file after fix. 2018-06-17 19:31:22 +02:00
Krunoslav Zaher
147417483c
Updates linux tests. 2018-06-08 08:58:14 +02:00
Pietro Caselani
ae9b6c177a Test Single.asCompletable emitting error 2018-06-07 21:39:01 +02:00
Pietro Caselani
8aafc7bad0 Add operator asCompletable on Single trait 2018-06-07 21:39:01 +02:00
Pietro Caselani
0aa07a6b26 Add operator flatMapCompletable on Single trait 2018-04-13 09:23:40 +02:00
Pietro Caselani
169d31f062 Add asMaybe on Single trait 2018-02-21 23:48:21 -03:00
Sho Ikeda
46685aa723 PrimitiveSequence.catchErrorJustReturn should be only for Single and Maybe 2018-02-21 09:19:19 +01:00
Sho Ikeda
8a413e8fa8 Fix the script file name noted in Sources/AllTestz/main.swift 2018-02-14 21:59:40 +01:00
Pietro Caselani
d5ea21d9f4 Add tests for ifEmpty operators 2018-02-07 22:58:27 +01:00
yuzushioh
eecb91701a add more tests 2018-01-28 13:09:51 +09:00
Shai Mishali
002333452a Add missing softlinks to DeprecationWarner 2018-01-21 20:15:02 +01:00
Lucas Nelaupe
c21a302d6a Implement error Hook for Traits 2017-12-27 17:23:15 +01:00
Krunoslav Zaher
f639ff4504
Adds asSignal to ControlEvent. 2017-11-01 19:50:44 +01:00
Krunoslav Zaher
36c82998a6 Adds global Hooks and implements error handling hook. 2017-10-16 12:54:49 +02:00
Krunoslav Zaher
a6ed6d2eac Fixes SPM tests. 2017-10-08 13:14:11 +02:00
Krunoslav Zaher
fa91e3a87d Deprecates Variable in favor of BehaviorRelay. 2017-10-08 13:14:11 +02:00
Krunoslav Zaher
58917c77a5
Merge branch 'develop' into rxswift4.0-swift4.0 2017-10-07 19:58:29 +02:00
Krunoslav Zaher
f5bae3912e
Fixes CI. 2017-10-07 17:40:37 +02:00
Nikita Ermolenko
4c35f626e5 Update main.swift - run tests 2017-10-02 19:52:08 +06:00
Krunoslav Zaher
f46a54d66d Replaces share with default implementation of share(replay:scope:). 2017-10-01 13:14:58 +02:00
Krunoslav Zaher
3f5f9cc606
Adds deprecated warnings to API parts that were missing it. #1427 2017-09-30 14:08:00 +02:00
Krunoslav Zaher
a0bf386834
Release 4.0.0-beta.0 2017-09-18 01:08:40 +02:00
Krunoslav Zaher
efe3af1b8f
Merge remote-tracking branch 'origin/develop' into swift4.0 2017-09-17 22:42:04 +02:00
Krunoslav Zaher
95af87af0a
Merge branch 'cleanup-traits-operators' of https://github.com/sergdort/RxSwift into sergdort-cleanup-traits-operators 2017-09-17 17:46:21 +02:00
Krunoslav Zaher
81066514fe
Renames Publisher to Signal. 2017-08-27 19:17:17 +02:00
Vinícius Soares
ec7e9527c2 Merge first and firstOrError operators.
The new operator returns an optional value.
2017-08-27 11:43:40 -03:00
Vinícius Soares
d4a30201a9 Add first and firstOrError operators to ObservableType. 2017-08-27 11:43:40 -03:00
Stewart Gleadow
5724db0e1c Added new unit test cases to main.swift 2017-08-23 01:08:36 +02:00
Krunoslav Zaher
ac2c73351a Updates tests. 2017-08-11 22:15:21 +02:00
Krunoslav Zaher
dcc77bd979 Fixes issues with andThen operator. #1347 2017-07-21 10:33:07 +02:00
Krunoslav Zaher
b3438812c8 Improves locking behavior of merge and switch operators. #1344 2017-07-20 12:29:56 +02:00
Krunoslav Zaher
11675f061b
Updates SPM. 2017-07-17 18:35:43 +02:00
Krunoslav Zaher
d5a754d6dd Fixes deadlock with shareReplayWhileLatest. #1323 2017-07-13 22:32:20 +02:00
Krunoslav Zaher
6b4b68e923
Adds andThen to Completable. 2017-07-02 20:29:35 +02:00
hagmas
1a8e7f4063 Add concat operator to Completable 2017-06-15 14:45:48 +02:00
Krunoslav Zaher
80b0efa098 Removes legacy test cases for ShareReplay1 and ShareReplay1WhileConnected. 2017-05-30 20:52:44 +02:00
Krunoslav Zaher
4b00716824 Adds share(replay:scope:) operator tests. 2017-05-30 20:52:44 +02:00
Krunoslav Zaher
326a27dfa4 Improves refCount operator by ensuring that synchronous resubscribing on terminal event works. 2017-05-30 20:52:44 +02:00
Krunoslav Zaher
164e113ad6 Adds tests to make sure that when RefCount operator subscribes and the source sequence sends synchronous terminal event, it doesn't try to connect and immediatelly disconnect. 2017-05-30 20:52:44 +02:00
Krunoslav Zaher
212a6ae4b9 Adds multicast<S: SubjectType>(makeSubject: @escaping () -> S) operator. 2017-05-30 20:52:44 +02:00
Krunoslav Zaher
8e6d467d10
Improves asDriver synchronous tests. 2017-05-20 15:21:32 +02:00
Krunoslav Zaher
acdce2ed86
Merge branch 'fix/1252_driver_scheduling' of https://github.com/TheAdamBorek/RxSwift into TheAdamBorek-fix/1252_driver_scheduling 2017-05-20 14:47:37 +02:00
Krunoslav Zaher
c7d9746e7c
Adds concatMap disposed test. 2017-05-18 17:58:27 +08:00
Krunoslav Zaher
58f53eb241
Fixes swift package manager integration. 2017-05-18 17:52:07 +08:00
sergdort
96e33e35a6 run package-spm.swift 2017-05-16 20:20:37 +01:00
Adam Borek
3c53d6d54c Run package-spm.swift 2017-05-16 09:02:01 +02:00
hagmas
88d5db10dc Add merge operator to Completable 2017-05-15 18:59:00 +08:00
=
6327e0d97f
update AllTestz/main.swift 2017-05-09 21:42:00 +02:00