Download Latest Version 500 source code.tar.gz (1.8 MB)
Email in envelope

Get an email when there's a new version of RxSwift

Home / 6.8.0
Name Modified Size InfoDownloads / Week
Parent folder
RxSwift.xcframework.zip 2024-10-07 95.4 MB
BringThemHome source code.tar.gz 2024-10-06 1.8 MB
BringThemHome source code.zip 2024-10-06 2.4 MB
README.md 2024-10-06 2.8 kB
Totals: 4 Items   99.6 MB 0

What's Changed

  • We've added an Empty Privacy Manifest to the framework. We are not actually required for a privacy manifest since we don't collect any information, but Apple keeps accidentally tagging the project as problematic, so we've added an empty one :)

  • You can now create a Single from an async piece of work, for example:

    :::swift func doIncredibleWork() async throws -> AmazingResponse { ... }

    let single = Single.create { try await doIncredibleWork() } // Single<AmazingResponse>

Along with our other existing bridging methods - we now cover the full range of use cases for interchangeably working with RxSwift and Swift Concurrency in a code base (AsyncStream -> Observable, Observable -> AsyncStream, Single -> awaitable value, awaitable value -> Single).

Check out the updated documentation for more details.


Members of the community have also made other bug fixes, updates, and contributions:

New Contributors

Full Changelog: https://github.com/ReactiveX/RxSwift/compare/6.7.1...6.8.0

Source: README.md, updated 2024-10-06