| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| Kawazoi.2 source code.tar.gz | 2026-03-02 | 1.7 MB | |
| Kawazoi.2 source code.zip | 2026-03-02 | 2.4 MB | |
| README.md | 2026-03-02 | 2.5 kB | |
| Totals: 3 Items | 4.1 MB | 0 | |
This release is identical to 6.10.1 / 6.10 Kawazoi aside for fixing Mac Catalyst support and resolving a minor issues in Swift 5.9 manifest. Content-wise, 6.10.1 and 6.10 are identical.
Breaking Changes
- CocoaPods support has been officially deprecated. This follows Cocoapods' read-only trunk notice. Please migrate to Swift Package Manager or Carthage.
-
AsyncSequence.asObservable()now usesTask.detachedinstead ofTask, aligning with how other Rx/Async bridging works. This removes a subtle foot-gun where iteration could unexpectedly inherit the calling task's actor context, potentially causing deadlocks or unexpected serialization. You can now also optionally provide aTaskPriority::::swift stream.asObservable(priority: .userInitiated) .observe(on: MainScheduler.instance) .subscribe(onNext: { ... })
New Features
- Android/non-Darwin support in Package.swift with CI testing, thanks @marcprux!
- Swift Concurrency enabled for Linux - all async/await bridging features now work on Linux, thanks @CrownedPhoenix!
- Xcode 26 & Swift 6.2 compatibility
Bug Fixes
- Fixed deadlock in
share(replay:)with concurrent subscriptions, thanks @isaac-weisberg! - Fixed Swift 6.2 weak mutability warning in Binder, thanks @kirillYakimovich!
- Fix typo in
VirtualTimeScheduler, thanks @serhii-bykov! - Fix typo:
MutlicastType->MulticastType, thanks @user-lody! - Update
README.md, thanks @Olexandr88!
Maintenance
- Removed legacy
canImport(_Concurrency)checks - Removed
CHANGELOG.mdin favor of GitHub releases
New Contributors
- @CrownedPhoenix made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2660
- @marcprux made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2663
- @esphynox made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2671
- @jeonghi made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2669
- @kirillyakimovich made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2677
- @Olexandr88 made their first contribution in https://github.com/ReactiveX/RxSwift/pull/2675
Full Changelog: https://github.com/ReactiveX/RxSwift/compare/6.9.1...6.10.0