Name | Modified | Size | Downloads / 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
-> await
able value, await
able value -> Single).
Check out the updated documentation for more details.
Members of the community have also made other bug fixes, updates, and contributions:
- Add Sendable conformance to AtomicInt by @marcelofabri in https://github.com/ReactiveX/RxSwift/pull/2624
- Add the deployment_target for visionOS in Podspec by @sanghun0724 in https://github.com/ReactiveX/RxSwift/pull/2603
- Update links for repositories moved to the swiftlang org on GitHub by @lamtrinhdev in https://github.com/ReactiveX/RxSwift/pull/2614
- Bump up swift-tools-version to 5.5 by @adincebic in https://github.com/ReactiveX/RxSwift/pull/2608
- Support .editorConfig for consistent code formatting by @TTOzzi in https://github.com/ReactiveX/RxSwift/pull/2626
- Tidied up some code using optional map by @BenMaer in https://github.com/ReactiveX/RxSwift/pull/2549
- Fix a typo from SwiftConcurrency.md by @HeegeePark in https://github.com/ReactiveX/RxSwift/pull/2623
- Don't retain receiver of Completable.andThen beyond its completion by @nikolaykasyanov in https://github.com/ReactiveX/RxSwift/pull/2604
- Added some documentations to AsyncLock file by @herlandro in https://github.com/ReactiveX/RxSwift/pull/2627
New Contributors
- @adincebic made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2608
- @lamtrinhdev made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2614
- @BenMaer made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2549
- @HeegeePark made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2623
- @nikolaykasyanov made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2604
- @herlandro made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2627
Full Changelog: https://github.com/ReactiveX/RxSwift/compare/6.7.1...6.8.0