Hive Hive
Sign in

CLI 4.194.1

Metadata
Source
GitHub
Version
4.194.1
Published
May 14, 2026 · 11:18 UTC
Repository
tuist/tuist
Update

This release fixes the build setting that Tuist generates for SwiftPM packages that opt into default MainActor isolation. Previously, the generated Xcode project used SWIFT_DEFAULT_ACTOR_ISOLATION = main-actor, which Xcode ignored, so the package effectively lost its requested concurrency isolation. You now get the correct MainActor value, preserving the expected Swift concurrency behavior for external dependencies.

  • Correct default actor isolation for external packages: SwiftPM .defaultIsolation(MainActor.self) is now mapped to Xcode’s expected SWIFT_DEFAULT_ACTOR_ISOLATION = MainActor setting, while the existing nonisolated mapping remains unchanged.