RxSwift icon indicating copy to clipboard operation
RxSwift copied to clipboard

Reactive Programming in Swift

Results 72 RxSwift issues
Sort by recently updated
recently updated
newest added

**Short description of the issue**: The new `Infallible` is useful when you know your observable won't have errors, but in some cases you have to resort to using `Observable` to...

[original issue](https://github.com/ReactiveX/RxSwift/issues/2429)

This PR allows converting `async` block to RxSwift Traits - `Infailable`, `Single`, `Maybe`, `Completable`, `Signal`, `Driver`. ```swift Single.from { await UIImage(named: "background")?.byPreparingThumbnail(ofSize: CGSize(width: 10, height: 10)) } .compactMap { $0...

**Short description of the issue**: We're seeing a crash among our userbase that is happening with alarming frequency however we have been unable to reproduce it or identify the root...

I've noticed that xcframework that is supplied with release is missing symbols for mac catalyst. Seeing that there is no need for it to be adopted i added support for...

Bumps [tzinfo](https://github.com/tzinfo/tzinfo) from 1.2.9 to 1.2.10. Release notes Sourced from tzinfo's releases. v1.2.10 Fixed a relative path traversal bug that could cause arbitrary files to be loaded with require when...

dependencies

**Short description of the issue**: With the introduction of generics UI enhancements in Swift 5.7, there seems to be little to no utility in having the `Observable` type eraser. **Expected...

I'm using `observable.values` to bridge `Observable`s into `AsyncStream`s in my app, but I found some issues in the related code and tests. This PR aims to adjust the following issues:...

Reactive wrapper for `setTitleColor(_:for:)`

**Short description of the issue**: As discussed in a [previous issue](https://github.com/ReactiveX/RxSwift/issues/2211), the CombineLatest operator should only complete when all its input observables have completed, even if some of the observables...