Build Information
Successful build of swift-composable-architecture, reference main (7517cc), with Swift 6.2 for macOS (SPM) on 13 Apr 2026 22:15:25 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64Build Log
6 | public func alert<Action>(_ item: Binding<Store<AlertState<Action>, Action>?>) -> some View {
7 | let store = item.wrappedValue
8 | let alertState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
9 | return self.alert(
10 | (alertState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:43:42: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
41 | ) -> some View {
42 | let store = item.wrappedValue
43 | let confirmationDialogState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
44 | return self.confirmationDialog(
45 | (confirmationDialogState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:76:14: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
74 | .init(
75 | keyPath: keyPath,
76 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
77 | value: value,
78 | valueIsEqualTo: { $0 as? Value == value }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:143:15: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
141 | keyPath: keyPath,
142 | set: {
143 | debugger.wasCalled.setValue(true)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
144 | $0[keyPath: keyPath] = value
145 | },
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:144:15: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
142 | set: {
143 | debugger.wasCalled.setValue(true)
144 | $0[keyPath: keyPath] = value
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
145 | },
146 | value: value,
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:155:16: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
153 | .init(
154 | keyPath: keyPath,
155 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
156 | value: value,
157 | valueIsEqualTo: { $0 as? Value == value }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1094/1194] Compiling ComposableArchitecture Alert+Observation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:8:29: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
6 | public func alert<Action>(_ item: Binding<Store<AlertState<Action>, Action>?>) -> some View {
7 | let store = item.wrappedValue
8 | let alertState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
9 | return self.alert(
10 | (alertState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:43:42: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
41 | ) -> some View {
42 | let store = item.wrappedValue
43 | let confirmationDialogState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
44 | return self.confirmationDialog(
45 | (confirmationDialogState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:76:14: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
74 | .init(
75 | keyPath: keyPath,
76 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
77 | value: value,
78 | valueIsEqualTo: { $0 as? Value == value }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:143:15: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
141 | keyPath: keyPath,
142 | set: {
143 | debugger.wasCalled.setValue(true)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
144 | $0[keyPath: keyPath] = value
145 | },
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:144:15: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
142 | set: {
143 | debugger.wasCalled.setValue(true)
144 | $0[keyPath: keyPath] = value
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
145 | },
146 | value: value,
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:155:16: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
153 | .init(
154 | keyPath: keyPath,
155 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
156 | value: value,
157 | valueIsEqualTo: { $0 as? Value == value }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1095/1194] Compiling ComposableArchitecture Binding+Observation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:8:29: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
6 | public func alert<Action>(_ item: Binding<Store<AlertState<Action>, Action>?>) -> some View {
7 | let store = item.wrappedValue
8 | let alertState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
9 | return self.alert(
10 | (alertState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:43:42: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
41 | ) -> some View {
42 | let store = item.wrappedValue
43 | let confirmationDialogState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
44 | return self.confirmationDialog(
45 | (confirmationDialogState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:76:14: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
74 | .init(
75 | keyPath: keyPath,
76 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
77 | value: value,
78 | valueIsEqualTo: { $0 as? Value == value }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:143:15: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
141 | keyPath: keyPath,
142 | set: {
143 | debugger.wasCalled.setValue(true)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
144 | $0[keyPath: keyPath] = value
145 | },
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:144:15: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
142 | set: {
143 | debugger.wasCalled.setValue(true)
144 | $0[keyPath: keyPath] = value
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
145 | },
146 | value: value,
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:155:16: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
153 | .init(
154 | keyPath: keyPath,
155 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
156 | value: value,
157 | valueIsEqualTo: { $0 as? Value == value }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1096/1194] Compiling ComposableArchitecture Locking.swift
[1097/1194] Compiling ComposableArchitecture Logger.swift
[1098/1194] Compiling ComposableArchitecture NavigationID.swift
[1099/1194] Compiling ComposableArchitecture NotificationName.swift
[1100/1194] Compiling ComposableArchitecture OpenExistential.swift
[1101/1194] Compiling ComposableArchitecture PresentationID.swift
[1102/1194] Compiling ComposableArchitecture IdentifiedArray+Observation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/IdentifiedArray+Observation.swift:101:23: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
99 | self.store = store
100 | store._$observationRegistrar.access(store, keyPath: \.currentState)
101 | self.data = store.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
102 | }
103 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1103/1194] Compiling ComposableArchitecture NavigationStack+Observation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/IdentifiedArray+Observation.swift:101:23: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
99 | self.store = store
100 | store._$observationRegistrar.access(store, keyPath: \.currentState)
101 | self.data = store.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
102 | }
103 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1104/1194] Compiling ComposableArchitecture ObservableState.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/IdentifiedArray+Observation.swift:101:23: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
99 | self.store = store
100 | store._$observationRegistrar.access(store, keyPath: \.currentState)
101 | self.data = store.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
102 | }
103 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1105/1194] Compiling ComposableArchitecture ObservationStateRegistrar.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/IdentifiedArray+Observation.swift:101:23: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
99 | self.store = store
100 | store._$observationRegistrar.access(store, keyPath: \.currentState)
101 | self.data = store.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
102 | }
103 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1106/1194] Compiling ComposableArchitecture Store+Observation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/IdentifiedArray+Observation.swift:101:23: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
99 | self.store = store
100 | store._$observationRegistrar.access(store, keyPath: \.currentState)
101 | self.data = store.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
102 | }
103 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1107/1194] Compiling ComposableArchitecture ViewAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/IdentifiedArray+Observation.swift:101:23: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
99 | self.store = store
100 | store._$observationRegistrar.access(store, keyPath: \.currentState)
101 | self.data = store.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
102 | }
103 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1108/1194] Compiling ComposableArchitecture Deprecations.swift
[1114/1194] Compiling ComposableArchitecture KeyPath+Sendable.swift
[1115/1194] Compiling ComposableArchitecture AreOrderedSetsDuplicates.swift
[1116/1194] Compiling ComposableArchitecture Box.swift
[1117/1194] Compiling ComposableArchitecture Create.swift
[1118/1194] Compiling ComposableArchitecture CurrentValueRelay.swift
[1119/1194] Compiling ComposableArchitecture Debug.swift
[1120/1194] Compiling ComposableArchitecture DefaultSubscript.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1133/1194] Compiling ComposableArchitecture Reducer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1134/1194] Compiling ComposableArchitecture ReducerBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1135/1194] Compiling ComposableArchitecture BindingReducer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1136/1194] Compiling ComposableArchitecture CombineReducers.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1137/1194] Compiling ComposableArchitecture DebugReducer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1138/1194] Compiling ComposableArchitecture DependencyKeyWritingReducer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer.swift:71:5: warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
69 | extension Reducer {
70 | public func _reduce(into state: inout State, action: Action) -> Effect<Action> {
71 | reduce(into: &state, action: action)
| `- warning: 'reduce(into:action:)' is deprecated: Don't invoke a reducer directly. Reducers are processed by the store. If you need to run a reducer on some child state given some child action, use a 'send' effect:
− return Child().reduce(&child.state, action: .childAction).map(Action.child)
+ return .send(.child(.childAction))
Or, if you don't want to send a new action through the store, extract helpers that can be invoked by either reducer. [#DeprecatedDeclaration]
72 | }
73 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1139/1194] Compiling ComposableArchitecture EmptyReducer.swift
[1140/1194] Compiling ComposableArchitecture ForEachReducer.swift
[1141/1194] Compiling ComposableArchitecture IfCaseLetReducer.swift
[1142/1194] Compiling ComposableArchitecture IfLetReducer.swift
[1143/1194] Compiling ComposableArchitecture OnChange.swift
[1144/1194] Compiling ComposableArchitecture Optional.swift
[1145/1194] Compiling ComposableArchitecture PresentationReducer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1146/1194] Compiling ComposableArchitecture Reduce.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1147/1194] Compiling ComposableArchitecture Scope.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1148/1194] Compiling ComposableArchitecture SignpostReducer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1149/1194] Compiling ComposableArchitecture StackReducer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1150/1194] Compiling ComposableArchitecture AppStorageKeyPathKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:277:19: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
275 | let keyPath = keyPath.unsafeSendable()
276 | return AnyCasePath<PresentationAction, AppendedAction>(
277 | embed: { .presented(keyPath($0)) },
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:279:47: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
277 | embed: { .presented(keyPath($0)) },
278 | extract: {
279 | guard case .presented(let action) = $0 else { return nil }
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
280 | return action[case: keyPath]
281 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:295:21: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
293 | switch $0 {
294 | case .dismiss:
295 | return .dismiss
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
296 | case .presented(let action):
297 | return .presented(keyPath(action))
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift:301:18: warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
299 | },
300 | extract: {
301 | switch $0 {
| `- warning: capture of non-Sendable type 'Action.Type' in an isolated closure [#SendableMetatypes]
302 | case .dismiss:
303 | return .dismiss
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1164/1194] Compiling ComposableArchitecture Store.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1165/1194] Compiling ComposableArchitecture Binding.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1166/1194] Compiling ComposableArchitecture TestStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1167/1194] Compiling ComposableArchitecture AlertStateUIKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1168/1194] Compiling ComposableArchitecture NavigationStackControllerUIKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[1169/1194] Compiling ComposableArchitecture resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:8:29: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
6 | public func alert<Action>(_ item: Binding<Store<AlertState<Action>, Action>?>) -> some View {
7 | let store = item.wrappedValue
8 | let alertState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
9 | return self.alert(
10 | (alertState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:43:42: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
41 | ) -> some View {
42 | let store = item.wrappedValue
43 | let confirmationDialogState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
44 | return self.confirmationDialog(
45 | (confirmationDialogState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:76:14: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
74 | .init(
75 | keyPath: keyPath,
76 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
77 | value: value,
78 | valueIsEqualTo: { $0 as? Value == value }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:143:15: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
141 | keyPath: keyPath,
142 | set: {
143 | debugger.wasCalled.setValue(true)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
144 | $0[keyPath: keyPath] = value
145 | },
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:144:15: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
142 | set: {
143 | debugger.wasCalled.setValue(true)
144 | $0[keyPath: keyPath] = value
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
145 | },
146 | value: value,
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:155:16: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
153 | .init(
154 | keyPath: keyPath,
155 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
156 | value: value,
157 | valueIsEqualTo: { $0 as? Value == value }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:8:29: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
6 | public func alert<Action>(_ item: Binding<Store<AlertState<Action>, Action>?>) -> some View {
7 | let store = item.wrappedValue
8 | let alertState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
9 | return self.alert(
10 | (alertState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:43:42: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
41 | ) -> some View {
42 | let store = item.wrappedValue
43 | let confirmationDialogState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
44 | return self.confirmationDialog(
45 | (confirmationDialogState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:76:14: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
74 | .init(
75 | keyPath: keyPath,
76 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
77 | value: value,
78 | valueIsEqualTo: { $0 as? Value == value }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:143:15: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
141 | keyPath: keyPath,
142 | set: {
143 | debugger.wasCalled.setValue(true)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
144 | $0[keyPath: keyPath] = value
145 | },
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:144:15: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
142 | set: {
143 | debugger.wasCalled.setValue(true)
144 | $0[keyPath: keyPath] = value
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
145 | },
146 | value: value,
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:155:16: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
153 | .init(
154 | keyPath: keyPath,
155 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
156 | value: value,
157 | valueIsEqualTo: { $0 as? Value == value }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:8:29: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
6 | public func alert<Action>(_ item: Binding<Store<AlertState<Action>, Action>?>) -> some View {
7 | let store = item.wrappedValue
8 | let alertState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
9 | return self.alert(
10 | (alertState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:43:42: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
41 | ) -> some View {
42 | let store = item.wrappedValue
43 | let confirmationDialogState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
44 | return self.confirmationDialog(
45 | (confirmationDialogState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:76:14: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
74 | .init(
75 | keyPath: keyPath,
76 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
77 | value: value,
78 | valueIsEqualTo: { $0 as? Value == value }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:143:15: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
141 | keyPath: keyPath,
142 | set: {
143 | debugger.wasCalled.setValue(true)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
144 | $0[keyPath: keyPath] = value
145 | },
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:144:15: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
142 | set: {
143 | debugger.wasCalled.setValue(true)
144 | $0[keyPath: keyPath] = value
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
145 | },
146 | value: value,
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:155:16: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
153 | .init(
154 | keyPath: keyPath,
155 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
156 | value: value,
157 | valueIsEqualTo: { $0 as? Value == value }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:8:29: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
6 | public func alert<Action>(_ item: Binding<Store<AlertState<Action>, Action>?>) -> some View {
7 | let store = item.wrappedValue
8 | let alertState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
9 | return self.alert(
10 | (alertState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:43:42: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
41 | ) -> some View {
42 | let store = item.wrappedValue
43 | let confirmationDialogState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
44 | return self.confirmationDialog(
45 | (confirmationDialogState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:76:14: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
74 | .init(
75 | keyPath: keyPath,
76 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
77 | value: value,
78 | valueIsEqualTo: { $0 as? Value == value }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:143:15: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
141 | keyPath: keyPath,
142 | set: {
143 | debugger.wasCalled.setValue(true)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
144 | $0[keyPath: keyPath] = value
145 | },
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:144:15: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
142 | set: {
143 | debugger.wasCalled.setValue(true)
144 | $0[keyPath: keyPath] = value
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
145 | },
146 | value: value,
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:155:16: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
153 | .init(
154 | keyPath: keyPath,
155 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
156 | value: value,
157 | valueIsEqualTo: { $0 as? Value == value }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:8:29: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
6 | public func alert<Action>(_ item: Binding<Store<AlertState<Action>, Action>?>) -> some View {
7 | let store = item.wrappedValue
8 | let alertState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
9 | return self.alert(
10 | (alertState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:43:42: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
41 | ) -> some View {
42 | let store = item.wrappedValue
43 | let confirmationDialogState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
44 | return self.confirmationDialog(
45 | (confirmationDialogState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:76:14: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
74 | .init(
75 | keyPath: keyPath,
76 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
77 | value: value,
78 | valueIsEqualTo: { $0 as? Value == value }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:143:15: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
141 | keyPath: keyPath,
142 | set: {
143 | debugger.wasCalled.setValue(true)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
144 | $0[keyPath: keyPath] = value
145 | },
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:144:15: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
142 | set: {
143 | debugger.wasCalled.setValue(true)
144 | $0[keyPath: keyPath] = value
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
145 | },
146 | value: value,
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:155:16: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
153 | .init(
154 | keyPath: keyPath,
155 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
156 | value: value,
157 | valueIsEqualTo: { $0 as? Value == value }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:8:29: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
6 | public func alert<Action>(_ item: Binding<Store<AlertState<Action>, Action>?>) -> some View {
7 | let store = item.wrappedValue
8 | let alertState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
9 | return self.alert(
10 | (alertState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Alert+Observation.swift:43:42: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
41 | ) -> some View {
42 | let store = item.wrappedValue
43 | let confirmationDialogState = store?.withState { $0 }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
44 | return self.confirmationDialog(
45 | (confirmationDialogState?.title).map(Text.init) ?? Text(verbatim: ""),
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:76:14: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
74 | .init(
75 | keyPath: keyPath,
76 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
77 | value: value,
78 | valueIsEqualTo: { $0 as? Value == value }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:143:15: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
141 | keyPath: keyPath,
142 | set: {
143 | debugger.wasCalled.setValue(true)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
144 | $0[keyPath: keyPath] = value
145 | },
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:144:15: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
142 | set: {
143 | debugger.wasCalled.setValue(true)
144 | $0[keyPath: keyPath] = value
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
145 | },
146 | value: value,
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Observation/Binding+Observation.swift:155:16: warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
153 | .init(
154 | keyPath: keyPath,
155 | set: { $0[keyPath: keyPath] = value },
| `- warning: capture of non-Sendable type 'Self.State.Type' in an isolated closure [#SendableMetatypes]
156 | value: value,
157 | valueIsEqualTo: { $0 as? Value == value }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:27: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:150:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
148 | callback(
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
152 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Create.swift:151:46: warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
149 | .init(
150 | send: { [weak self] in _ = self?.buffer.buffer(value: $0) },
151 | complete: { [weak self] in self?.buffer.complete(completion: $0) }
| `- warning: capture of non-Sendable type 'Downstream.Type' in an isolated closure [#SendableMetatypes]
152 | )
153 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:1337:55: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1335 | to another case:
1336 |
1337 | \(debugCaseOutput(self.store.wrappedValue.withState { $0 }))
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
1338 |
1339 | This usually happens when there is a mismatch between the case being switched on and the \
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:356:47: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
354 | return core.didSet
355 | .prefix { [weak self] _ in self?.core.isInvalid == false }
356 | .compactMap { [weak self] in (self?.withState(\.self) as? T)?._$id }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
357 | .removeDuplicates()
358 | .dropFirst()
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:421:77: warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
419 | StorePublisher(
420 | store: self,
421 | upstream: self.core.didSet.receive(on: UIScheduler.shared).map { self.withState(\.self) }
| `- warning: 'withState' is deprecated: Use '@ObservableState', instead. See the following migration guide for more information: https://swiftpackageindex.com/pointfreeco/swift-composable-architecture/main/documentation/composablearchitecture/migratingto1.7#Using-ObservableState [#DeprecatedDeclaration]
422 | )
423 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:45:19: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
43 | let keyPath = keyPath.unsafeSendable()
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
47 | )
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:46:23: warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
44 | return AnyCasePath(
45 | embed: { .set(keyPath, $0) },
46 | extract: { $0.keyPath == keyPath ? $0.value as? Value : nil }
| `- warning: capture of non-Sendable type 'Root.Type' in an isolated closure [#SendableMetatypes]
47 | )
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift:106:28: warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
104 | extension BindableAction {
105 | public var binding: BindingAction<State>? {
106 | AnyCasePath(unsafe: { .binding($0) }).extract(from: self)
| `- warning: capture of non-Sendable type 'Self.Type' in an isolated closure [#SendableMetatypes]
107 | }
108 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
Build complete! (93.41s)
Fetching https://github.com/swiftlang/swift-syntax
Fetching https://github.com/pointfreeco/swift-perception
Fetching https://github.com/pointfreeco/swift-sharing
Fetching https://github.com/pointfreeco/swift-macro-testing
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
Fetching https://github.com/pointfreeco/swift-navigation
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2271] Fetching swift-docc-plugin
[229/4237] Fetching swift-docc-plugin, swift-perception
[3103/50614] Fetching swift-docc-plugin, swift-perception, swift-navigation
[3172/56337] Fetching swift-docc-plugin, swift-perception, swift-navigation, xctest-dynamic-overlay
[4411/59948] Fetching swift-docc-plugin, swift-perception, swift-navigation, xctest-dynamic-overlay, swift-sharing
[6724/60909] Fetching swift-docc-plugin, swift-perception, swift-navigation, xctest-dynamic-overlay, swift-sharing, swift-macro-testing
[13991/135881] Fetching swift-docc-plugin, swift-perception, swift-navigation, xctest-dynamic-overlay, swift-sharing, swift-macro-testing, swift-syntax
Fetched https://github.com/pointfreeco/swift-navigation from cache (3.07s)
Fetching https://github.com/pointfreeco/swift-custom-dump
[66263/89504] Fetching swift-docc-plugin, swift-perception, xctest-dynamic-overlay, swift-sharing, swift-macro-testing, swift-syntax
[89505/94968] Fetching swift-docc-plugin, swift-perception, xctest-dynamic-overlay, swift-sharing, swift-macro-testing, swift-syntax, swift-custom-dump
Fetched https://github.com/pointfreeco/swift-custom-dump from cache (1.23s)
Fetching https://github.com/pointfreeco/swift-concurrency-extras
[1/956] Fetching swift-concurrency-extras
Fetched https://github.com/pointfreeco/swift-sharing from cache (5.10s)
Fetched https://github.com/pointfreeco/swift-perception from cache (5.10s)
Fetched https://github.com/pointfreeco/swift-macro-testing from cache (5.10s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (5.10s)
Fetched https://github.com/swiftlang/swift-syntax from cache (5.10s)
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (5.10s)
Fetching https://github.com/apple/swift-collections
Fetching https://github.com/pointfreeco/swift-identified-collections
Fetching https://github.com/pointfreeco/combine-schedulers
Fetching https://github.com/pointfreeco/swift-case-paths
Fetching https://github.com/pointfreeco/swift-dependencies
Fetching https://github.com/pointfreeco/swift-clocks
Fetched https://github.com/pointfreeco/swift-concurrency-extras from cache (0.86s)
[1/1317] Fetching swift-clocks
[28/3886] Fetching swift-clocks, combine-schedulers
[157/8502] Fetching swift-clocks, combine-schedulers, swift-case-paths
[368/15258] Fetching swift-clocks, combine-schedulers, swift-case-paths, swift-dependencies
[369/16800] Fetching swift-clocks, combine-schedulers, swift-case-paths, swift-dependencies, swift-identified-collections
[1422/40337] Fetching swift-clocks, combine-schedulers, swift-case-paths, swift-dependencies, swift-identified-collections, swift-collections
Fetched https://github.com/pointfreeco/combine-schedulers from cache (0.99s)
[10239/37768] Fetching swift-clocks, swift-case-paths, swift-dependencies, swift-identified-collections, swift-collections
Fetched https://github.com/pointfreeco/swift-clocks from cache (1.23s)
Fetched https://github.com/pointfreeco/swift-dependencies from cache (1.23s)
[8041/29695] Fetching swift-case-paths, swift-identified-collections, swift-collections
Fetched https://github.com/pointfreeco/swift-identified-collections from cache (2.07s)
Fetched https://github.com/apple/swift-collections from cache (2.07s)
Fetched https://github.com/pointfreeco/swift-case-paths from cache (2.07s)
Computing version for https://github.com/pointfreeco/swift-navigation
Computed https://github.com/pointfreeco/swift-navigation at 2.8.0 (10.87s)
Computing version for https://github.com/pointfreeco/swift-identified-collections
Computed https://github.com/pointfreeco/swift-identified-collections at 1.1.1 (0.59s)
Computing version for https://github.com/pointfreeco/swift-clocks
Computed https://github.com/pointfreeco/swift-clocks at 1.0.6 (0.57s)
Computing version for https://github.com/pointfreeco/combine-schedulers
Computed https://github.com/pointfreeco/combine-schedulers at 1.1.0 (0.63s)
Computing version for https://github.com/pointfreeco/swift-concurrency-extras
Computed https://github.com/pointfreeco/swift-concurrency-extras at 1.3.2 (0.60s)
Computing version for https://github.com/pointfreeco/swift-custom-dump
Computed https://github.com/pointfreeco/swift-custom-dump at 1.5.0 (0.62s)
Computing version for https://github.com/pointfreeco/swift-case-paths
Computed https://github.com/pointfreeco/swift-case-paths at 1.7.3 (0.76s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (2.21s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.08s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.83s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.9.0 (0.60s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.4.1 (0.68s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 603.0.0 (0.76s)
Computing version for https://github.com/pointfreeco/swift-macro-testing
Computed https://github.com/pointfreeco/swift-macro-testing at 0.6.5 (0.62s)
Fetching https://github.com/pointfreeco/swift-snapshot-testing
[1/16046] Fetching swift-snapshot-testing
Fetched https://github.com/pointfreeco/swift-snapshot-testing from cache (4.15s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing
Computed https://github.com/pointfreeco/swift-snapshot-testing at 1.19.2 (4.76s)
Computing version for https://github.com/pointfreeco/swift-perception
Computed https://github.com/pointfreeco/swift-perception at 2.0.10 (0.56s)
Computing version for https://github.com/pointfreeco/swift-dependencies
Computed https://github.com/pointfreeco/swift-dependencies at 1.12.0 (0.60s)
Computing version for https://github.com/pointfreeco/swift-sharing
Computed https://github.com/pointfreeco/swift-sharing at 2.8.0 (0.59s)
Creating working copy for https://github.com/pointfreeco/swift-perception
Working copy of https://github.com/pointfreeco/swift-perception resolved at 2.0.10
Creating working copy for https://github.com/pointfreeco/swift-sharing
Working copy of https://github.com/pointfreeco/swift-sharing resolved at 2.8.0
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing
Working copy of https://github.com/pointfreeco/swift-snapshot-testing resolved at 1.19.2
Creating working copy for https://github.com/pointfreeco/swift-navigation
Working copy of https://github.com/pointfreeco/swift-navigation resolved at 2.8.0
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 603.0.0
Creating working copy for https://github.com/pointfreeco/swift-dependencies
Working copy of https://github.com/pointfreeco/swift-dependencies resolved at 1.12.0
Creating working copy for https://github.com/pointfreeco/swift-clocks
Working copy of https://github.com/pointfreeco/swift-clocks resolved at 1.0.6
Creating working copy for https://github.com/pointfreeco/swift-concurrency-extras
Working copy of https://github.com/pointfreeco/swift-concurrency-extras resolved at 1.3.2
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.9.0
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-collections
Working copy of https://github.com/apple/swift-collections resolved at 1.4.1
Creating working copy for https://github.com/pointfreeco/combine-schedulers
Working copy of https://github.com/pointfreeco/combine-schedulers resolved at 1.1.0
Creating working copy for https://github.com/pointfreeco/swift-case-paths
Working copy of https://github.com/pointfreeco/swift-case-paths resolved at 1.7.3
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.6
Creating working copy for https://github.com/pointfreeco/swift-custom-dump
Working copy of https://github.com/pointfreeco/swift-custom-dump resolved at 1.5.0
Creating working copy for https://github.com/pointfreeco/swift-identified-collections
Working copy of https://github.com/pointfreeco/swift-identified-collections resolved at 1.1.1
Creating working copy for https://github.com/pointfreeco/swift-macro-testing
Working copy of https://github.com/pointfreeco/swift-macro-testing resolved at 0.6.5
Build complete.
{
"dependencies" : [
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections"
},
{
"identity" : "combine-schedulers",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/combine-schedulers"
},
{
"identity" : "swift-case-paths",
"requirement" : {
"range" : [
{
"lower_bound" : "1.5.4",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-case-paths"
},
{
"identity" : "swift-clocks",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.4",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-clocks"
},
{
"identity" : "swift-concurrency-extras",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-concurrency-extras"
},
{
"identity" : "swift-custom-dump",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-custom-dump"
},
{
"identity" : "swift-dependencies",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-dependencies"
},
{
"identity" : "swift-identified-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-identified-collections"
},
{
"identity" : "swift-macro-testing",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-macro-testing"
},
{
"identity" : "swift-navigation",
"requirement" : {
"range" : [
{
"lower_bound" : "2.7.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-navigation"
},
{
"identity" : "swift-perception",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.4",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-perception"
},
{
"identity" : "swift-sharing",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.4",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-sharing"
},
{
"identity" : "xctest-dynamic-overlay",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/xctest-dynamic-overlay"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-docc-plugin"
},
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "509.0.0",
"upper_bound" : "605.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-syntax"
}
],
"manifest_display_name" : "swift-composable-architecture",
"name" : "swift-composable-architecture",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "ComposableArchitecture",
"targets" : [
"ComposableArchitecture"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ComposableArchitectureMacros",
"targets" : [
"ComposableArchitectureMacros"
],
"type" : {
"macro" : null
}
}
],
"swift_languages_versions" : [
"6"
],
"targets" : [
{
"c99name" : "ComposableArchitectureTests",
"module_type" : "SwiftTarget",
"name" : "ComposableArchitectureTests",
"path" : "Tests/ComposableArchitectureTests",
"product_dependencies" : [
"IssueReportingTestSupport"
],
"sources" : [
"BindableStoreTests.swift",
"BindingLocalTests.swift",
"CompatibilityTests.swift",
"CompileTimeTests.swift",
"ComposableArchitectureTests.swift",
"CurrentValueRelayTests.swift",
"DebugTests.swift",
"DependencyKeyWritingReducerTests.swift",
"EffectCancellationIsolationTests.swift",
"EffectCancellationTests.swift",
"EffectDebounceTests.swift",
"EffectFailureTests.swift",
"EffectOperationTests.swift",
"EffectRunTests.swift",
"EffectTests.swift",
"EnumReducerMacroTests.swift",
"Internal/BaseTCATestCase.swift",
"Internal/TestHelpers.swift",
"MacroConformanceTests.swift",
"MacroTests.swift",
"MemoryManagementTests.swift",
"NestedEnumFeatureTests.swift",
"ObservableStateEnumMacroTests.swift",
"ObservableTests.swift",
"ReducerBuilderTests.swift",
"ReducerTests.swift",
"Reducers/BindingReducerTests.swift",
"Reducers/ForEachReducerTests.swift",
"Reducers/IfCaseLetReducerTests.swift",
"Reducers/IfLetReducerTests.swift",
"Reducers/OnChangeReducerTests.swift",
"Reducers/PresentationReducerTests.swift",
"Reducers/StackReducerTests.swift",
"RuntimeWarningTests.swift",
"ScopeCacheTests.swift",
"ScopeLoggerTests.swift",
"ScopeTests.swift",
"StoreLifetimeTests.swift",
"StorePerceptionTests.swift",
"StoreTests.swift",
"TaskCancellationTests.swift",
"TestStoreFailureTests.swift",
"TestStoreNonExhaustiveTests.swift",
"TestStoreTests.swift",
"ThrottleTests.swift",
"ViewStoreTests.swift"
],
"target_dependencies" : [
"ComposableArchitecture"
],
"type" : "test"
},
{
"c99name" : "ComposableArchitectureMacrosTests",
"module_type" : "SwiftTarget",
"name" : "ComposableArchitectureMacrosTests",
"path" : "Tests/ComposableArchitectureMacrosTests",
"product_dependencies" : [
"MacroTesting"
],
"sources" : [
"MacroBaseTestCase.swift",
"ObservableStateMacroTests.swift",
"PresentsMacroTests.swift",
"ReducerMacroTests.swift",
"ViewActionMacroTests.swift"
],
"target_dependencies" : [
"ComposableArchitectureMacros"
],
"type" : "test"
},
{
"c99name" : "ComposableArchitectureMacros",
"module_type" : "SwiftTarget",
"name" : "ComposableArchitectureMacros",
"path" : "Sources/ComposableArchitectureMacros",
"product_dependencies" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin"
],
"product_memberships" : [
"ComposableArchitecture",
"ComposableArchitectureMacros"
],
"sources" : [
"Availability.swift",
"Extensions.swift",
"ObservableStateMacro.swift",
"Plugins.swift",
"PresentsMacro.swift",
"ReducerMacro.swift",
"ViewActionMacro.swift"
],
"type" : "macro"
},
{
"c99name" : "ComposableArchitecture",
"module_type" : "SwiftTarget",
"name" : "ComposableArchitecture",
"path" : "Sources/ComposableArchitecture",
"product_dependencies" : [
"CasePaths",
"Clocks",
"CombineSchedulers",
"ConcurrencyExtras",
"CustomDump",
"Dependencies",
"DependenciesMacros",
"IdentifiedCollections",
"IssueReporting",
"OrderedCollections",
"Perception",
"Sharing",
"SwiftUINavigation",
"UIKitNavigation"
],
"product_memberships" : [
"ComposableArchitecture"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Resources/PrivacyInfo.xcprivacy",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"CaseReducer.swift",
"Core.swift",
"Dependencies/Dismiss.swift",
"Dependencies/IsPresented.swift",
"Effect.swift",
"Effects/Cancellation.swift",
"Effects/Publisher.swift",
"Internal/AreOrderedSetsDuplicates.swift",
"Internal/Box.swift",
"Internal/Create.swift",
"Internal/CurrentValueRelay.swift",
"Internal/Debug.swift",
"Internal/DefaultSubscript.swift",
"Internal/Deprecations.swift",
"Internal/DispatchQueue.swift",
"Internal/EffectActions.swift",
"Internal/EphemeralState.swift",
"Internal/Exports.swift",
"Internal/HashableStaticString.swift",
"Internal/KeyPath+Sendable.swift",
"Internal/Locking.swift",
"Internal/Logger.swift",
"Internal/NavigationID.swift",
"Internal/NotificationName.swift",
"Internal/OpenExistential.swift",
"Internal/PresentationID.swift",
"Internal/ReturningLastNonNilValue.swift",
"Internal/RuntimeWarnings.swift",
"Internal/StackIDGenerator.swift",
"Macros.swift",
"Observation/Alert+Observation.swift",
"Observation/Binding+Observation.swift",
"Observation/IdentifiedArray+Observation.swift",
"Observation/NavigationStack+Observation.swift",
"Observation/ObservableState.swift",
"Observation/ObservationStateRegistrar.swift",
"Observation/Store+Observation.swift",
"Observation/ViewAction.swift",
"Reducer.swift",
"Reducer/ReducerBuilder.swift",
"Reducer/Reducers/BindingReducer.swift",
"Reducer/Reducers/CombineReducers.swift",
"Reducer/Reducers/DebugReducer.swift",
"Reducer/Reducers/DependencyKeyWritingReducer.swift",
"Reducer/Reducers/EmptyReducer.swift",
"Reducer/Reducers/ForEachReducer.swift",
"Reducer/Reducers/IfCaseLetReducer.swift",
"Reducer/Reducers/IfLetReducer.swift",
"Reducer/Reducers/OnChange.swift",
"Reducer/Reducers/Optional.swift",
"Reducer/Reducers/PresentationReducer.swift",
"Reducer/Reducers/Reduce.swift",
"Reducer/Reducers/Scope.swift",
"Reducer/Reducers/SignpostReducer.swift",
"Reducer/Reducers/StackReducer.swift",
"Sharing/AppStorageKeyPathKey.swift",
"Store.swift",
"SwiftUI/Binding.swift",
"TestStore.swift",
"UIKit/AlertStateUIKit.swift",
"UIKit/NavigationStackControllerUIKit.swift"
],
"target_dependencies" : [
"ComposableArchitectureMacros"
],
"type" : "library"
}
],
"tools_version" : "6.1"
}
Done.