Build Information
Successful build of SwiftUI-UDF, reference 1.4.x (c42139
), with Swift 6.2 (beta) for macOS (SPM) on 24 Jun 2025 07:09:19 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
440 | cancellation: some Hashable,
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:459:33: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
457 | // Start the task and store the cancellation token
458 | XCTestGroup.shared.enter()
459 | let task = Task { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:52: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:440:9: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
438 | effect: some ConcurrencyEffect,
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
441 | mapAction: @escaping (any Action) -> any Action = { $0 },
442 | mapError: @escaping ErrorMapper<AnyHashable> = { flowId, error in Actions.Error(error: error.localizedDescription, id: flowId) },
[200/239] Compiling UDF Scope.swift
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:462:40: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
462 | let action = try await effect.task(flowId: flowId)
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
463 |
464 | // Check if the task was cancelled and dispatch appropriate actions
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:438:9: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
436 | /// - Note: This method uses the Swift `Task` API to run the asynchronous task.
437 | open func execute(
438 | effect: some ConcurrencyEffect,
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:459:33: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
457 | // Start the task and store the cancellation token
458 | XCTestGroup.shared.enter()
459 | let task = Task { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:52: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:440:9: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
438 | effect: some ConcurrencyEffect,
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
441 | mapAction: @escaping (any Action) -> any Action = { $0 },
442 | mapError: @escaping ErrorMapper<AnyHashable> = { flowId, error in Actions.Error(error: error.localizedDescription, id: flowId) },
[201/239] Compiling UDF SubscribersCoordinator.swift
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:462:40: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
462 | let action = try await effect.task(flowId: flowId)
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
463 |
464 | // Check if the task was cancelled and dispatch appropriate actions
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:438:9: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
436 | /// - Note: This method uses the Swift `Task` API to run the asynchronous task.
437 | open func execute(
438 | effect: some ConcurrencyEffect,
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:459:33: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
457 | // Start the task and store the cancellation token
458 | XCTestGroup.shared.enter()
459 | let task = Task { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:52: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:440:9: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
438 | effect: some ConcurrencyEffect,
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
441 | mapAction: @escaping (any Action) -> any Action = { $0 },
442 | mapError: @escaping ErrorMapper<AnyHashable> = { flowId, error in Actions.Error(error: error.localizedDescription, id: flowId) },
[202/239] Compiling UDF Types.swift
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:462:40: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
462 | let action = try await effect.task(flowId: flowId)
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
463 |
464 | // Check if the task was cancelled and dispatch appropriate actions
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:438:9: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
436 | /// - Note: This method uses the Swift `Task` API to run the asynchronous task.
437 | open func execute(
438 | effect: some ConcurrencyEffect,
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:459:33: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
457 | // Start the task and store the cancellation token
458 | XCTestGroup.shared.enter()
459 | let task = Task { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:52: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:440:9: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
438 | effect: some ConcurrencyEffect,
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
441 | mapAction: @escaping (any Action) -> any Action = { $0 },
442 | mapError: @escaping ErrorMapper<AnyHashable> = { flowId, error in Actions.Error(error: error.localizedDescription, id: flowId) },
[203/239] Compiling UDF Hook.swift
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:462:40: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
462 | let action = try await effect.task(flowId: flowId)
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
463 |
464 | // Check if the task was cancelled and dispatch appropriate actions
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:438:9: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
436 | /// - Note: This method uses the Swift `Task` API to run the asynchronous task.
437 | open func execute(
438 | effect: some ConcurrencyEffect,
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:459:33: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
457 | // Start the task and store the cancellation token
458 | XCTestGroup.shared.enter()
459 | let task = Task { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:52: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:440:9: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
438 | effect: some ConcurrencyEffect,
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
441 | mapAction: @escaping (any Action) -> any Action = { $0 },
442 | mapError: @escaping ErrorMapper<AnyHashable> = { flowId, error in Actions.Error(error: error.localizedDescription, id: flowId) },
[204/239] Compiling UDF HookBuilder.swift
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:462:40: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
462 | let action = try await effect.task(flowId: flowId)
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
463 |
464 | // Check if the task was cancelled and dispatch appropriate actions
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:438:9: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
436 | /// - Note: This method uses the Swift `Task` API to run the asynchronous task.
437 | open func execute(
438 | effect: some ConcurrencyEffect,
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:459:33: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
457 | // Start the task and store the cancellation token
458 | XCTestGroup.shared.enter()
459 | let task = Task { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:52: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:440:9: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
438 | effect: some ConcurrencyEffect,
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
441 | mapAction: @escaping (any Action) -> any Action = { $0 },
442 | mapError: @escaping ErrorMapper<AnyHashable> = { flowId, error in Actions.Error(error: error.localizedDescription, id: flowId) },
[205/239] Compiling UDF HookType.swift
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:462:40: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
462 | let action = try await effect.task(flowId: flowId)
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
463 |
464 | // Check if the task was cancelled and dispatch appropriate actions
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:438:9: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
436 | /// - Note: This method uses the Swift `Task` API to run the asynchronous task.
437 | open func execute(
438 | effect: some ConcurrencyEffect,
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:459:33: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
457 | // Start the task and store the cancellation token
458 | XCTestGroup.shared.enter()
459 | let task = Task { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:52: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:440:9: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
438 | effect: some ConcurrencyEffect,
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
441 | mapAction: @escaping (any Action) -> any Action = { $0 },
442 | mapError: @escaping ErrorMapper<AnyHashable> = { flowId, error in Actions.Error(error: error.localizedDescription, id: flowId) },
[206/239] Compiling UDF AnyMiddleware.swift
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:462:40: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
462 | let action = try await effect.task(flowId: flowId)
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
463 |
464 | // Check if the task was cancelled and dispatch appropriate actions
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:438:9: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
436 | /// - Note: This method uses the Swift `Task` API to run the asynchronous task.
437 | open func execute(
438 | effect: some ConcurrencyEffect,
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:459:33: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
457 | // Start the task and store the cancellation token
458 | XCTestGroup.shared.enter()
459 | let task = Task { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:52: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:440:9: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
438 | effect: some ConcurrencyEffect,
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
441 | mapAction: @escaping (any Action) -> any Action = { $0 },
442 | mapError: @escaping ErrorMapper<AnyHashable> = { flowId, error in Actions.Error(error: error.localizedDescription, id: flowId) },
[207/239] Compiling UDF BaseMiddleware.swift
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:462:40: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
462 | let action = try await effect.task(flowId: flowId)
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
463 |
464 | // Check if the task was cancelled and dispatch appropriate actions
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:438:9: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
436 | /// - Note: This method uses the Swift `Task` API to run the asynchronous task.
437 | open func execute(
438 | effect: some ConcurrencyEffect,
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:459:33: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
457 | // Start the task and store the cancellation token
458 | XCTestGroup.shared.enter()
459 | let task = Task { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:52: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:440:9: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
438 | effect: some ConcurrencyEffect,
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
441 | mapAction: @escaping (any Action) -> any Action = { $0 },
442 | mapError: @escaping ErrorMapper<AnyHashable> = { flowId, error in Actions.Error(error: error.localizedDescription, id: flowId) },
[208/239] Compiling UDF CancellableTask.swift
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:462:40: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
462 | let action = try await effect.task(flowId: flowId)
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
463 |
464 | // Check if the task was cancelled and dispatch appropriate actions
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:438:9: warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
436 | /// - Note: This method uses the Swift `Task` API to run the asynchronous task.
437 | open func execute(
438 | effect: some ConcurrencyEffect,
| `- warning: capture of non-sendable type '(some ConcurrencyEffect).Type' in an isolated closure; this is an error in the Swift 6 language mode
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:459:33: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
457 | // Start the task and store the cancellation token
458 | XCTestGroup.shared.enter()
459 | let task = Task { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
460 | do {
461 | // Execute the effect's task, passing flowId
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:466:52: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
464 | // Check if the task was cancelled and dispatch appropriate actions
465 | if Task.isCancelled {
466 | self?.dispatch(action: Actions.DidCancelEffect(by: cancellation), filePosition: filePosition)
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
467 | } else {
468 | self?.dispatch(action: mapAction(action), filePosition: filePosition)
/Users/admin/builder/spi-builder-workspace/UDF/Middleware/BaseMiddleware.swift:440:9: warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
438 | effect: some ConcurrencyEffect,
439 | flowId: AnyHashable,
440 | cancellation: some Hashable,
| `- warning: capture of non-sendable type '(some Hashable).Type' in an isolated closure; this is an error in the Swift 6 language mode
441 | mapAction: @escaping (any Action) -> any Action = { $0 },
442 | mapError: @escaping ErrorMapper<AnyHashable> = { flowId, error in Actions.Error(error: error.localizedDescription, id: flowId) },
[209/239] Compiling UDF ActionGroup.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[210/239] Compiling UDF ActionGroupBuilder.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[211/239] Compiling UDF Actions.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[212/239] Compiling UDF InternalAction.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[213/239] Compiling UDF _AnyBindableAction.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[214/239] Compiling UDF DelayEffect.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[215/239] Compiling UDF FilterEffect.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[216/239] Compiling UDF LocationAccessEffect.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[217/239] Compiling UDF LocationMonitoringEffect.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[218/239] Compiling UDF EnvironmentStore.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[219/239] Compiling UDF Flow.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/Action/Actions.swift:128:20: warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
126 |
127 | /// A unique identifier for the error.
128 | public var id: AnyHashable
| `- warning: stored property 'id' of 'Sendable'-conforming struct 'Error' has non-sendable type 'AnyHashable'; this is an error in the Swift 6 language mode
129 |
130 | /// An integer representing the error code.
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
| `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 | public init<H>(_ base: H) where H : Hashable
3 | public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:74:41: warning: capture of non-sendable type 'S.Type' in an isolated closure
72 | accuracyAuthorization: accuracyAuthorization
73 | )
74 | _ = self?.subscriber?.receive(action)
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/Effects/LocationAccessEffect.swift:68:54: warning: capture of non-sendable type 'S.Type' in an isolated closure
66 | /// Sends the current location access status to the subscriber.
67 | private func send(status: CLAuthorizationStatus, accuracyAuthorization: CLAccuracyAuthorization) {
68 | DispatchQueue.global().async { [weak self] in
| `- warning: capture of non-sendable type 'S.Type' in an isolated closure
69 | let action = Actions.DidUpdateLocationAccess(
70 | locationServicesEnabled: CLLocationManager.locationServicesEnabled(),
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:25: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:74:19: warning: capture of non-sendable type 'State.Type' in an isolated closure
72 | ) {
73 | storeQueue.async { [weak self] in
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
75 | }
76 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:73:34: warning: capture of non-sendable type 'State.Type' in an isolated closure
71 | lineNumber: Int = #line
72 | ) {
73 | storeQueue.async { [weak self] in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure
74 | self?.store.dispatch(action, priority: priority, fileName: fileName, functionName: functionName, lineNumber: lineNumber)
75 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:67:11: warning: capture of non-sendable type '(some Action).Type' in an isolated closure
65 | /// - lineNumber: The line number where the action is dispatched. Defaults to the caller's line.
66 | public func dispatch(
67 | _ action: some Action,
| `- warning: capture of non-sendable type '(some Action).Type' in an isolated closure
68 | priority: ActionPriority = .default,
69 | fileName: String = #file,
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:138:34: warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 | /// Subscribes the environment store to changes in the state using a subject.
137 | private func sinkSubject() {
138 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:39: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:140:30: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 | self.cancelation = store.subject
139 | .receive(on: DispatchQueue.main)
140 | .sink { [unowned self] newState, oldState, animation in
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 | self.state = newState
142 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:146:43: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
144 | let subscribers = await subscribersCoordinator.allSubscibers()
145 | await MainActor.run {
146 | for subscriber in subscribers {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
147 | subscriber(oldState, newState, animation)
148 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:144:25: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |
143 | Task(priority: .high) {
144 | let subscribers = await subscribersCoordinator.allSubscibers()
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
145 | await MainActor.run {
146 | for subscriber in subscribers {
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:165:42: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
163 |
164 | Task(priority: .high) {
165 | await subscribersCoordinator.add(subscriber: statePublisher, for: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:161:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
159 | /// - Parameter statePublisher: A closure that will be called when the state changes.
160 | /// - Returns: A unique key associated with the subscriber.
161 | func add(statePublisher: @escaping StateSubscriber<State>) -> String {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
162 | let key = UUID().uuidString
163 |
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:176:19: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 | func removePublisher(forKey key: String) {
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
177 | }
178 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/EnvironmentStore.swift:174:10: warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
172 | ///
173 | /// - Parameter key: The unique key of the subscriber to remove.
174 | func removePublisher(forKey key: String) {
| `- warning: capture of non-sendable type 'State.Type' in an isolated closure; this is an error in the Swift 6 language mode
175 | Task(priority: .high) {
176 | await subscribersCoordinator.removeSubscriber(forKey: key)
[220/239] Compiling UDF DelayedOperation.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/DelayedOperation.swift:14:13: warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class DelayedOperation: AsynchronousOperation {
| `- warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: StoreOperation.Priority
16 | private let delay: Delay
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:14:13: warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class StoreOperation: AsynchronousOperation {
| `- warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: Priority
16 | var closure: () async -> Void
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:53:37: warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
51 | switch self {
52 | case .default: .high
53 | case .userInteractive: .userInteractive
| `- warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
54 | }
55 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:16:13: warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
14 | /// A class that provides a serial queue for store operations, ensuring that only one operation
15 | /// is executed at a time.
16 | final class StoreQueue: OperationQueue {
| `- warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
17 | /// Initializes a new `StoreQueue` with a maximum concurrency of one and a user-interactive quality of service.
18 | override init() {
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:29:7: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
27 | /// This class manages the operation's execution state and allows subclasses to define
28 | /// custom asynchronous work.
29 | class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// Indicates that the operation is asynchronous.
31 | override var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/UDF/Store/XCTestStore/XCTestStore.swift:46:34: warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
44 | self._state = .init(wrappedValue: mutableState, store: store)
45 |
46 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
47 | .map(\.0)
48 | .assign(to: \.state, on: self)
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[221/239] Compiling UDF StoreOperation.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/DelayedOperation.swift:14:13: warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class DelayedOperation: AsynchronousOperation {
| `- warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: StoreOperation.Priority
16 | private let delay: Delay
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:14:13: warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class StoreOperation: AsynchronousOperation {
| `- warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: Priority
16 | var closure: () async -> Void
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:53:37: warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
51 | switch self {
52 | case .default: .high
53 | case .userInteractive: .userInteractive
| `- warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
54 | }
55 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:16:13: warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
14 | /// A class that provides a serial queue for store operations, ensuring that only one operation
15 | /// is executed at a time.
16 | final class StoreQueue: OperationQueue {
| `- warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
17 | /// Initializes a new `StoreQueue` with a maximum concurrency of one and a user-interactive quality of service.
18 | override init() {
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:29:7: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
27 | /// This class manages the operation's execution state and allows subclasses to define
28 | /// custom asynchronous work.
29 | class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// Indicates that the operation is asynchronous.
31 | override var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/UDF/Store/XCTestStore/XCTestStore.swift:46:34: warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
44 | self._state = .init(wrappedValue: mutableState, store: store)
45 |
46 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
47 | .map(\.0)
48 | .assign(to: \.state, on: self)
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[222/239] Compiling UDF StoreQueue.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/DelayedOperation.swift:14:13: warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class DelayedOperation: AsynchronousOperation {
| `- warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: StoreOperation.Priority
16 | private let delay: Delay
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:14:13: warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class StoreOperation: AsynchronousOperation {
| `- warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: Priority
16 | var closure: () async -> Void
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:53:37: warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
51 | switch self {
52 | case .default: .high
53 | case .userInteractive: .userInteractive
| `- warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
54 | }
55 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:16:13: warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
14 | /// A class that provides a serial queue for store operations, ensuring that only one operation
15 | /// is executed at a time.
16 | final class StoreQueue: OperationQueue {
| `- warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
17 | /// Initializes a new `StoreQueue` with a maximum concurrency of one and a user-interactive quality of service.
18 | override init() {
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:29:7: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
27 | /// This class manages the operation's execution state and allows subclasses to define
28 | /// custom asynchronous work.
29 | class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// Indicates that the operation is asynchronous.
31 | override var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/UDF/Store/XCTestStore/XCTestStore.swift:46:34: warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
44 | self._state = .init(wrappedValue: mutableState, store: store)
45 |
46 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
47 | .map(\.0)
48 | .assign(to: \.state, on: self)
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[223/239] Compiling UDF XCTestGroup.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/DelayedOperation.swift:14:13: warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class DelayedOperation: AsynchronousOperation {
| `- warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: StoreOperation.Priority
16 | private let delay: Delay
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:14:13: warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class StoreOperation: AsynchronousOperation {
| `- warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: Priority
16 | var closure: () async -> Void
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:53:37: warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
51 | switch self {
52 | case .default: .high
53 | case .userInteractive: .userInteractive
| `- warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
54 | }
55 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:16:13: warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
14 | /// A class that provides a serial queue for store operations, ensuring that only one operation
15 | /// is executed at a time.
16 | final class StoreQueue: OperationQueue {
| `- warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
17 | /// Initializes a new `StoreQueue` with a maximum concurrency of one and a user-interactive quality of service.
18 | override init() {
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:29:7: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
27 | /// This class manages the operation's execution state and allows subclasses to define
28 | /// custom asynchronous work.
29 | class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// Indicates that the operation is asynchronous.
31 | override var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/UDF/Store/XCTestStore/XCTestStore.swift:46:34: warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
44 | self._state = .init(wrappedValue: mutableState, store: store)
45 |
46 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
47 | .map(\.0)
48 | .assign(to: \.state, on: self)
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[224/239] Compiling UDF XCTestStore.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/DelayedOperation.swift:14:13: warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class DelayedOperation: AsynchronousOperation {
| `- warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: StoreOperation.Priority
16 | private let delay: Delay
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:14:13: warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class StoreOperation: AsynchronousOperation {
| `- warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: Priority
16 | var closure: () async -> Void
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:53:37: warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
51 | switch self {
52 | case .default: .high
53 | case .userInteractive: .userInteractive
| `- warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
54 | }
55 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:16:13: warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
14 | /// A class that provides a serial queue for store operations, ensuring that only one operation
15 | /// is executed at a time.
16 | final class StoreQueue: OperationQueue {
| `- warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
17 | /// Initializes a new `StoreQueue` with a maximum concurrency of one and a user-interactive quality of service.
18 | override init() {
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:29:7: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
27 | /// This class manages the operation's execution state and allows subclasses to define
28 | /// custom asynchronous work.
29 | class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// Indicates that the operation is asynchronous.
31 | override var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/UDF/Store/XCTestStore/XCTestStore.swift:46:34: warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
44 | self._state = .init(wrappedValue: mutableState, store: store)
45 |
46 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
47 | .map(\.0)
48 | .assign(to: \.state, on: self)
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[225/239] Compiling UDF AlertAction.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/DelayedOperation.swift:14:13: warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class DelayedOperation: AsynchronousOperation {
| `- warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: StoreOperation.Priority
16 | private let delay: Delay
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:14:13: warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class StoreOperation: AsynchronousOperation {
| `- warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: Priority
16 | var closure: () async -> Void
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:53:37: warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
51 | switch self {
52 | case .default: .high
53 | case .userInteractive: .userInteractive
| `- warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
54 | }
55 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:16:13: warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
14 | /// A class that provides a serial queue for store operations, ensuring that only one operation
15 | /// is executed at a time.
16 | final class StoreQueue: OperationQueue {
| `- warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
17 | /// Initializes a new `StoreQueue` with a maximum concurrency of one and a user-interactive quality of service.
18 | override init() {
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:29:7: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
27 | /// This class manages the operation's execution state and allows subclasses to define
28 | /// custom asynchronous work.
29 | class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// Indicates that the operation is asynchronous.
31 | override var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/UDF/Store/XCTestStore/XCTestStore.swift:46:34: warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
44 | self._state = .init(wrappedValue: mutableState, store: store)
45 |
46 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
47 | .map(\.0)
48 | .assign(to: \.state, on: self)
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[226/239] Compiling UDF AlertButton.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/DelayedOperation.swift:14:13: warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class DelayedOperation: AsynchronousOperation {
| `- warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: StoreOperation.Priority
16 | private let delay: Delay
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:14:13: warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class StoreOperation: AsynchronousOperation {
| `- warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: Priority
16 | var closure: () async -> Void
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:53:37: warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
51 | switch self {
52 | case .default: .high
53 | case .userInteractive: .userInteractive
| `- warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
54 | }
55 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:16:13: warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
14 | /// A class that provides a serial queue for store operations, ensuring that only one operation
15 | /// is executed at a time.
16 | final class StoreQueue: OperationQueue {
| `- warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
17 | /// Initializes a new `StoreQueue` with a maximum concurrency of one and a user-interactive quality of service.
18 | override init() {
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:29:7: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
27 | /// This class manages the operation's execution state and allows subclasses to define
28 | /// custom asynchronous work.
29 | class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// Indicates that the operation is asynchronous.
31 | override var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/UDF/Store/XCTestStore/XCTestStore.swift:46:34: warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
44 | self._state = .init(wrappedValue: mutableState, store: store)
45 |
46 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
47 | .map(\.0)
48 | .assign(to: \.state, on: self)
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[227/239] Compiling UDF AlertTextField.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/DelayedOperation.swift:14:13: warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class DelayedOperation: AsynchronousOperation {
| `- warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: StoreOperation.Priority
16 | private let delay: Delay
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:14:13: warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class StoreOperation: AsynchronousOperation {
| `- warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: Priority
16 | var closure: () async -> Void
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:53:37: warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
51 | switch self {
52 | case .default: .high
53 | case .userInteractive: .userInteractive
| `- warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
54 | }
55 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:16:13: warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
14 | /// A class that provides a serial queue for store operations, ensuring that only one operation
15 | /// is executed at a time.
16 | final class StoreQueue: OperationQueue {
| `- warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
17 | /// Initializes a new `StoreQueue` with a maximum concurrency of one and a user-interactive quality of service.
18 | override init() {
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:29:7: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
27 | /// This class manages the operation's execution state and allows subclasses to define
28 | /// custom asynchronous work.
29 | class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// Indicates that the operation is asynchronous.
31 | override var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/UDF/Store/XCTestStore/XCTestStore.swift:46:34: warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
44 | self._state = .init(wrappedValue: mutableState, store: store)
45 |
46 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
47 | .map(\.0)
48 | .assign(to: \.state, on: self)
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[228/239] Compiling UDF AlertActionsBuilder.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/DelayedOperation.swift:14:13: warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class DelayedOperation: AsynchronousOperation {
| `- warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: StoreOperation.Priority
16 | private let delay: Delay
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:14:13: warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class StoreOperation: AsynchronousOperation {
| `- warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: Priority
16 | var closure: () async -> Void
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:53:37: warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
51 | switch self {
52 | case .default: .high
53 | case .userInteractive: .userInteractive
| `- warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
54 | }
55 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:16:13: warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
14 | /// A class that provides a serial queue for store operations, ensuring that only one operation
15 | /// is executed at a time.
16 | final class StoreQueue: OperationQueue {
| `- warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
17 | /// Initializes a new `StoreQueue` with a maximum concurrency of one and a user-interactive quality of service.
18 | override init() {
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:29:7: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
27 | /// This class manages the operation's execution state and allows subclasses to define
28 | /// custom asynchronous work.
29 | class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// Indicates that the operation is asynchronous.
31 | override var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/UDF/Store/XCTestStore/XCTestStore.swift:46:34: warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
44 | self._state = .init(wrappedValue: mutableState, store: store)
45 |
46 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
47 | .map(\.0)
48 | .assign(to: \.state, on: self)
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[229/239] Compiling UDF AlertBuilder.swift
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/DelayedOperation.swift:14:13: warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class DelayedOperation: AsynchronousOperation {
| `- warning: class 'DelayedOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: StoreOperation.Priority
16 | private let delay: Delay
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:14:13: warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
12 | import Foundation
13 |
14 | final class StoreOperation: AsynchronousOperation {
| `- warning: class 'StoreOperation' must restate inherited '@unchecked Sendable' conformance
15 | var priority: Priority
16 | var closure: () async -> Void
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreOperation.swift:53:37: warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
51 | switch self {
52 | case .default: .high
53 | case .userInteractive: .userInteractive
| `- warning: 'userInteractive' is deprecated: userInteractive priority will be removed [#DeprecatedDeclaration]
54 | }
55 | }
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:16:13: warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
14 | /// A class that provides a serial queue for store operations, ensuring that only one operation
15 | /// is executed at a time.
16 | final class StoreQueue: OperationQueue {
| `- warning: class 'StoreQueue' must restate inherited '@unchecked Sendable' conformance
17 | /// Initializes a new `StoreQueue` with a maximum concurrency of one and a user-interactive quality of service.
18 | override init() {
/Users/admin/builder/spi-builder-workspace/UDF/Store/StoreQueue/StoreQueue.swift:29:7: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
27 | /// This class manages the operation's execution state and allows subclasses to define
28 | /// custom asynchronous work.
29 | class AsynchronousOperation: Operation {
| `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
30 | /// Indicates that the operation is asynchronous.
31 | override var isAsynchronous: Bool {
/Users/admin/builder/spi-builder-workspace/UDF/Store/XCTestStore/XCTestStore.swift:46:34: warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
44 | self._state = .init(wrappedValue: mutableState, store: store)
45 |
46 | self.cancelation = store.subject
| `- warning: actor-isolated property 'subject' can not be referenced from global actor 'XCTestStoreActor'; this is an error in the Swift 6 language mode
47 | .map(\.0)
48 | .assign(to: \.state, on: self)
/Users/admin/builder/spi-builder-workspace/UDF/Store/InternalStore.swift:15:9: note: property declared here
13 | var state: State
14 |
15 | let subject: PassthroughSubject<(State, State, Animation?), Never> = .init()
| `- note: property declared here
16 |
17 | var middlewares: OrderedSet<AnyMiddleware> = []
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[230/239] Compiling UDF Component.swift
[231/239] Compiling UDF BindableContainer.swift
[232/239] Compiling UDF ConnectedContainer.swift
[233/239] Compiling UDF Container.swift
[234/239] Compiling UDF ContainerHooks.swift
[235/239] Compiling UDF ContainerLifecycle.swift
[236/239] Compiling UDF ContainerState.swift
[237/239] Compiling UDF GlobalRouter.swift
[238/239] Compiling UDF GlobalRoutingModifier.swift
[239/239] Compiling UDF Router.swift
[240/242] Emitting module UDFXCTest
[241/242] Compiling UDFXCTest XCTest+expectation.swift
[242/242] Compiling UDFXCTest XCTUnwrapAsync.swift
Build complete! (21.31s)
Fetching https://github.com/urlaunched-com/Runtime
Fetching https://github.com/apple/swift-collections
[1/1559] Fetching runtime
[220/18199] Fetching runtime, swift-collections
Fetched https://github.com/apple/swift-collections from cache (1.66s)
Fetched https://github.com/urlaunched-com/Runtime from cache (1.66s)
Computing version for https://github.com/urlaunched-com/Runtime
Computed https://github.com/urlaunched-com/Runtime at 2.2.6 (4.72s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.2.0 (0.50s)
Creating working copy for https://github.com/apple/swift-collections
Working copy of https://github.com/apple/swift-collections resolved at 1.2.0
Creating working copy for https://github.com/urlaunched-com/Runtime
Working copy of https://github.com/urlaunched-com/Runtime resolved at 2.2.6
Build complete.
{
"dependencies" : [
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.4",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections"
},
{
"identity" : "runtime",
"requirement" : {
"range" : [
{
"lower_bound" : "2.2.6",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/urlaunched-com/Runtime"
}
],
"manifest_display_name" : "SwiftUI-UDF",
"name" : "SwiftUI-UDF",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "macos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "UDF",
"targets" : [
"UDF"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "UDFXCTest",
"targets" : [
"UDFXCTest"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "UDFXCTest",
"module_type" : "SwiftTarget",
"name" : "UDFXCTest",
"path" : "UDFXCTest",
"product_memberships" : [
"UDFXCTest"
],
"sources" : [
"XCTUnwrapAsync.swift",
"XCTest+expectation.swift"
],
"target_dependencies" : [
"UDF"
],
"type" : "library"
},
{
"c99name" : "UDF",
"module_type" : "SwiftTarget",
"name" : "UDF",
"path" : "UDF",
"product_dependencies" : [
"OrderedCollections",
"Runtime"
],
"product_memberships" : [
"UDF",
"UDFXCTest"
],
"sources" : [
"Common/ActionPriority.swift",
"Common/Cached/Cached.swift",
"Common/Cached/Source/CacheSource.swift",
"Common/Cached/Source/FileCache.swift",
"Common/Common.swift",
"Common/Debouncer/Debouncer.swift",
"Common/Debouncer/UserInputDebouncer.swift",
"Common/Extensions/Binding+BindClosure.swift",
"Common/Extensions/CLAccuracyAuthorization.swift",
"Common/Extensions/CLAuthorizationStatus.swift",
"Common/Extensions/Collection+CaseIterable.swift",
"Common/Extensions/Dictionary+Storage.swift",
"Common/Extensions/Hashable.swift",
"Common/Extensions/ProcessInfo.swift",
"Common/Extensions/Publishers+AsyncState.swift",
"Common/Extensions/Text+Mirror.swift",
"Common/Extensions/View+AlertStatus.swift",
"Common/Extensions/View+NavigationDestination.swift",
"Common/Extensions/Window+Render.swift",
"Common/File.swift",
"Common/FileFunctionLine.swift",
"Common/GlobalValue.swift",
"Common/Merging/Mergeable+Dictionary.swift",
"Common/Merging/Mergeable+OrderedDictionary.swift",
"Common/Merging/Mergeable.swift",
"Common/Pagination/PaginationPage.swift",
"Common/Pagination/Paginator.swift",
"Common/PropertyWrappers/SourceOfTruth.swift",
"Common/Protocols/Initable.swift",
"Common/Protocols/IsEquatable.swift",
"Common/Protocols/WrappedReducer.swift",
"Common/RCDictionary.swift",
"Common/Scope/CombinedScope.swift",
"Common/Scope/ReducerScope.swift",
"Common/Scope/Scope+None.swift",
"Common/Scope/Scope.swift",
"Common/SubscribersCoordinator.swift",
"Common/Types.swift",
"Domain/Hook/Hook.swift",
"Domain/Hook/HookBuilder.swift",
"Domain/Hook/HookType.swift",
"Middleware/AnyMiddleware.swift",
"Middleware/BaseMiddleware.swift",
"Middleware/CancellableTask.swift",
"Middleware/Effect/ConcurrencyEffect.swift",
"Middleware/Effect/Effect.swift",
"Middleware/Effect/Effectable.swift",
"Middleware/Effect/PureEffect.swift",
"Middleware/EnvironmentMiddleware.swift",
"Middleware/Middleware.swift",
"Middleware/MiddlewareBuilder.swift",
"Middleware/MiddlewareStatus.swift",
"Middleware/ObservableMiddleware.swift",
"Middleware/ReducibleMiddleware.swift",
"Store/Action/Action.swift",
"Store/Action/ActionGroup/ActionGroup.swift",
"Store/Action/ActionGroup/ActionGroupBuilder.swift",
"Store/Action/Actions.swift",
"Store/Action/PrivateAction/InternalAction.swift",
"Store/Action/PrivateAction/_AnyBindableAction.swift",
"Store/Effects/DelayEffect.swift",
"Store/Effects/FilterEffect.swift",
"Store/Effects/LocationAccessEffect.swift",
"Store/Effects/LocationMonitoringEffect.swift",
"Store/EnvironmentStore.swift",
"Store/Flow/Flow.swift",
"Store/Flow/Flows.swift",
"Store/Flow/IdentifiableFlow.swift",
"Store/Flow/UserLocationFlow.swift",
"Store/Form.swift",
"Store/InternalStore.swift",
"Store/Logger/ActionLogger.swift",
"Store/Logger/ConsoleDebugLogger.swift",
"Store/Logger/Filters/DebugOnlyActionFilter.swift",
"Store/Logger/Filters/DefaultActionFilter.swift",
"Store/Logger/Filters/ErrorOnlyActionFilter.swift",
"Store/Logger/Filters/VerboseActionFilter.swift",
"Store/Logger/LogDistributor.swift",
"Store/Logger/LoggingAction.swift",
"Store/Logger/StringDescribingActionDescriptor.swift",
"Store/Reducer/AppReducer/AppReducer.swift",
"Store/Reducer/AppReducer/RuntimeReducing.swift",
"Store/Reducer/BindableReducer.swift",
"Store/Reducer/InitialSetup.swift",
"Store/Reducer/ReducerReference/BindableReducerReference.swift",
"Store/Reducer/ReducerReference/ReducerReference.swift",
"Store/Reducer/Reducible.swift",
"Store/Store.swift",
"Store/StoreQueue/DelayedOperation.swift",
"Store/StoreQueue/StoreOperation.swift",
"Store/StoreQueue/StoreQueue.swift",
"Store/XCTestStore/XCTestGroup.swift",
"Store/XCTestStore/XCTestStore.swift",
"View/AlertBuilder/AlertAction/AlertAction.swift",
"View/AlertBuilder/AlertAction/AlertButton.swift",
"View/AlertBuilder/AlertAction/AlertTextField.swift",
"View/AlertBuilder/AlertActionsBuilder.swift",
"View/AlertBuilder/AlertBuilder.swift",
"View/Component.swift",
"View/Container/BindableContainer.swift",
"View/Container/ConnectedContainer.swift",
"View/Container/Container.swift",
"View/Container/ContainerHooks.swift",
"View/Container/ContainerLifecycle.swift",
"View/Container/ContainerState.swift",
"View/Router/GlobalRouter/GlobalRouter.swift",
"View/Router/GlobalRouter/GlobalRoutingModifier.swift",
"View/Router/Router.swift"
],
"type" : "library"
},
{
"c99name" : "SwiftUI_UDF_Tests",
"module_type" : "SwiftTarget",
"name" : "SwiftUI-UDF-Tests",
"path" : "Tests/SwiftUI-UDF-Tests",
"sources" : [
"ActionGroup/ActionGroupBuilderTests.swift",
"Actions/DelayedActionTests.swift",
"Actions/ErrorActionTests.swift",
"Alert/AlertActionBuilderTests.swift",
"AlertTests.swift",
"BindableReducers/BindableContainerDataMutationTests.swift",
"BindableReducers/BindableContainerLifecycleTests.swift",
"BindableReducers/BindableContainerLoadUnloadTests.swift",
"BindableReducers/BindableReducersMiddlewareTests.swift",
"Cached/CachedTests.swift",
"ContainerHookTests.swift",
"ContainerLifecycleTests.swift",
"Mergeable/MergeableAppStateTests.swift",
"Mergeable/MergeableTests.swift",
"Middlewares/MiddlewareCancellationTests.swift",
"Middlewares/ObservableMiddlewareTests.swift",
"Middlewares/ReducibleMiddlewareTests.swift",
"NestedReducerTests.swift",
"PaginatorTests.swift",
"RouterTests.swift",
"StateCopyTests.swift"
],
"target_dependencies" : [
"UDFXCTest"
],
"type" : "test"
},
{
"c99name" : "SwiftUI_UDF_ConcurrencyTests",
"module_type" : "SwiftTarget",
"name" : "SwiftUI-UDF-ConcurrencyTests",
"path" : "Tests/SwiftUI-UDF-ConcurrencyTests",
"sources" : [
"AppStateInitialSetupTests.swift",
"ContainersRedrawing/ContainerScopeTests.swift",
"ContainersRedrawing/ContainerWithAppStateAsScopeTests.swift",
"DispatchActionsTests.swift",
"Middlewares/ConcurrencyMiddlewareCancellationTests.swift",
"Middlewares/ConcurrencyMiddlewareTaskIdTests.swift",
"Middlewares/MiddlewareCancellationTests.swift",
"Middlewares/MiddlewareDuplicationTests.swift",
"Middlewares/MiddlewareMapErrorTests.swift",
"Middlewares/MiddlewareSubscriptionTests.swift",
"Middlewares/NewObservableMiddlewareDDosProtectionTests.swift",
"Middlewares/NewReducibleMiddlewareTests.swift",
"Store/StoreInitializationTests.swift"
],
"target_dependencies" : [
"UDFXCTest"
],
"type" : "test"
}
],
"tools_version" : "5.9"
}
Done.