The Swift Package Index logo.Swift Package Index

Build Information

Failed to build swift-distributed-actors, reference 1.0.0-beta.3 (d816a1), with Swift 6.0 for Linux on 29 Aug 2025 20:33:48 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
584 |             )
585 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:236:21: warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 234 |
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
     |                     `- warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 237 |             Backtrace.install()
 238 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:237:23: warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
 237 |             Backtrace.install()
     |                       `- warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 238 |         }
 239 |
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:526:17: warning: variable 'knownActors' was written to, but never read
 524 |             // We can't have it acquire the same lock, so we copy the refs out and release the last
 525 |             // references to those actors outside of the naming lock.
 526 |             var knownActors = self.namingLock.withLock {
     |                 `- warning: variable 'knownActors' was written to, but never read
 527 |                 self._managedWellKnownDistributedActors // copy references
 528 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:639:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 637 |         try behavior.validateAsInitial()
 638 |
 639 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 640 |
 641 |         // TODO: lock inside provider, not here
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:707:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 705 |     // Reserve an actor address.
 706 |     internal func _reserveName<Act>(type: Act.Type, props: _Props) throws -> ActorID where Act: DistributedActor {
 707 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 708 |         guard let provider = (props._systemActor ? self.systemProvider : self.userProvider) else {
 709 |             fatalError("Unable to obtain system/user actor provider") // TODO(distributed): just throw here instead
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1551:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1549 |
1550 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1551 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1552 |         }
1553 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1566:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1564 |
1565 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1566 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1567 |         }
1568 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1593:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1591 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1592 |             }
1593 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1594 |         }
1595 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
[1509/1522] Compiling DistributedCluster WireMessages.swift
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:163:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
161 | extension _ProtoClusterEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
162 |   public static let protoMessageName: String = "ClusterEvent"
163 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
164 |     1: .same(proto: "snapshot"),
165 |     2: .same(proto: "membershipChange"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:255:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
253 | extension _ProtoClusterMembershipChange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
254 |   public static let protoMessageName: String = "ClusterMembershipChange"
255 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
256 |     1: .same(proto: "node"),
257 |     2: .same(proto: "fromStatus"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:332:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
330 | extension _ProtoClusterLeadershipChange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
331 |   public static let protoMessageName: String = "ClusterLeadershipChange"
332 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
333 |     1: .same(proto: "oldLeader"),
334 |     2: .same(proto: "newLeader"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:278:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
276 |
277 | extension _ProtoClusterMemberReachability: SwiftProtobuf._ProtoNameProviding {
278 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
279 |     0: .same(proto: "CLUSTER_MEMBER_REACHABILITY_UNSPECIFIED"),
280 |     1: .same(proto: "CLUSTER_MEMBER_REACHABILITY_REACHABLE"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:286:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
284 |
285 | extension _ProtoClusterMemberStatus: SwiftProtobuf._ProtoNameProviding {
286 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
287 |     0: .same(proto: "CLUSTER_MEMBER_STATUS_UNSPECIFIED"),
288 |     1: .same(proto: "CLUSTER_MEMBER_STATUS_JOINING"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:298:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
296 | extension _ProtoClusterMembership: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
297 |   public static let protoMessageName: String = "ClusterMembership"
298 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
299 |     1: .same(proto: "members"),
300 |     2: .same(proto: "leaderNode"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:367:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
365 | extension _ProtoClusterMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
366 |   public static let protoMessageName: String = "ClusterMember"
367 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
368 |     1: .same(proto: "node"),
369 |     2: .same(proto: "status"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:452:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
450 | extension _ProtoClusterMembershipGossip: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
451 |   public static let protoMessageName: String = "ClusterMembershipGossip"
452 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
453 |     1: .same(proto: "membership"),
454 |     2: .same(proto: "ownerClusterNodeID"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:529:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
527 | extension _ProtoClusterMembershipSeenTable: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
528 |   public static let protoMessageName: String = "ClusterMembershipSeenTable"
529 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
530 |     1: .same(proto: "rows"),
531 |   ]
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:558:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
556 | extension _ProtoClusterMembershipSeenTableRow: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
557 |   public static let protoMessageName: String = "ClusterMembershipSeenTableRow"
558 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
559 |     1: .same(proto: "nodeID"),
560 |     2: .same(proto: "version"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1018:17: warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
1016 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
1017 |     /// allows us to push more elements
1018 |     final class PushOps: Receptionist.Message {
     |                 `- warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
1019 |         // the "sender" of the push
1020 |         let peer: OpLogDistributedReceptionist
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1076:17: warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
1074 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
1075 |     /// allows us to push more elements
1076 |     final class AckOps: Receptionist.Message, CustomStringConvertible {
     |                 `- warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
1077 |         /// Cumulative ACK of all ops until (and including) this one.
1078 |         ///
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1127:17: warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
1125 |     }
1126 |
1127 |     final class PublishLocalListingsTrigger: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
     |                 `- warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
1128 |         override init() {
1129 |             super.init()
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:706:21: warning: reference to property 'log' in closure requires explicit use of 'self' to make capture semantics explicit; this is an error in the Swift 6 language mode
 704 |                     ()
 705 |                 default:
 706 |                     log.error("Error: \(error)")
     |                     `- warning: reference to property 'log' in closure requires explicit use of 'self' to make capture semantics explicit; this is an error in the Swift 6 language mode
 707 |                 }
 708 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:674:11: warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
672 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
673 |     /// allows us to push more elements
674 |     class PushOps: Receptionist.Message {
    |           `- warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
675 |         // the "sender" of the push
676 |         let peer: _ActorRef<Receptionist.Message>
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:725:11: warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
723 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
724 |     /// allows us to push more elements
725 |     class AckOps: Receptionist.Message, CustomStringConvertible {
    |           `- warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
726 |         /// Cumulative ACK of all ops until (and including) this one.
727 |         ///
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:776:11: warning: class 'PeriodicAckTick' must restate inherited '@unchecked Sendable' conformance
774 |     }
775 |
776 |     class PeriodicAckTick: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
    |           `- warning: class 'PeriodicAckTick' must restate inherited '@unchecked Sendable' conformance
777 |         override init() {
778 |             super.init()
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:790:11: warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
788 |     }
789 |
790 |     class PublishLocalListingsTrigger: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
    |           `- warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
791 |         override init() {
792 |             super.init()
<unknown>:0: note: 'file' declared here
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:820:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
812 |     func tracelog(
813 |         _ context: _ActorContext<Message>, _ type: TraceLogType, message: Any,
814 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
815 |     ) {
816 |         if let level = context.system.settings.receptionist.traceLogLevel {
    :
818 |                 level: level,
819 |                 "[tracelog:receptionist] \(type.description): \(message)",
820 |                 file: file, function: function, line: line
    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
821 |             )
822 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |   public static let protoMessageName: String = "SWIMPingResponse"
269 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
270 |     1: .same(proto: "ack"),
271 |     2: .same(proto: "nack"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |   public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
351 |     1: .same(proto: "target"),
352 |     2: .same(proto: "incarnation"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |   public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
436 |     1: .same(proto: "target"),
437 |     2: .same(proto: "sequenceNumber"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |   public static let protoMessageName: String = "SWIMStatus"
504 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
505 |     1: .same(proto: "type"),
506 |     2: .same(proto: "incarnation"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
545 |     0: .same(proto: "UNSPECIFIED"),
546 |     1: .same(proto: "ALIVE"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |   public static let protoMessageName: String = "SWIMMember"
555 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
556 |     1: .same(proto: "id"),
557 |     2: .same(proto: "status"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |   public static let protoMessageName: String = "SWIMGossipPayload"
632 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
633 |     1: .same(proto: "member"),
634 |   ]
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/SWIMActor.swift:585:66: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
583 | extension ActorID {
584 |     static func _swim(on node: Cluster.Node) -> ActorID {
585 |         .init(remote: node, path: ActorPath._swim, incarnation: .wellKnown)
    |                                                                  `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
586 |     }
587 | }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
105 |         }
106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
    |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
    |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
107 |         return try Wire.HandshakeResponse(proto)
108 |     }
<unknown>:0: note: 'file' declared here
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:583:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
567 |     private func tracelog(
568 |         _ type: TraceLogType, message: Any,
569 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
570 |     ) {
571 |         let level: Logger.Level?
    :
581 |                 level: level,
582 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
583 |                 file: file, function: function, line: line
    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
584 |             )
585 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:236:21: warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 234 |
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
     |                     `- warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 237 |             Backtrace.install()
 238 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:237:23: warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
 237 |             Backtrace.install()
     |                       `- warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 238 |         }
 239 |
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:526:17: warning: variable 'knownActors' was written to, but never read
 524 |             // We can't have it acquire the same lock, so we copy the refs out and release the last
 525 |             // references to those actors outside of the naming lock.
 526 |             var knownActors = self.namingLock.withLock {
     |                 `- warning: variable 'knownActors' was written to, but never read
 527 |                 self._managedWellKnownDistributedActors // copy references
 528 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:639:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 637 |         try behavior.validateAsInitial()
 638 |
 639 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 640 |
 641 |         // TODO: lock inside provider, not here
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:707:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 705 |     // Reserve an actor address.
 706 |     internal func _reserveName<Act>(type: Act.Type, props: _Props) throws -> ActorID where Act: DistributedActor {
 707 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 708 |         guard let provider = (props._systemActor ? self.systemProvider : self.userProvider) else {
 709 |             fatalError("Unable to obtain system/user actor provider") // TODO(distributed): just throw here instead
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1551:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1549 |
1550 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1551 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1552 |         }
1553 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1566:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1564 |
1565 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1566 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1567 |         }
1568 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1593:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1591 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1592 |             }
1593 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1594 |         }
1595 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
[1510/1522] Compiling DistributedCluster ClusterEndpoint.swift
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:163:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
161 | extension _ProtoClusterEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
162 |   public static let protoMessageName: String = "ClusterEvent"
163 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
164 |     1: .same(proto: "snapshot"),
165 |     2: .same(proto: "membershipChange"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:255:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
253 | extension _ProtoClusterMembershipChange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
254 |   public static let protoMessageName: String = "ClusterMembershipChange"
255 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
256 |     1: .same(proto: "node"),
257 |     2: .same(proto: "fromStatus"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:332:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
330 | extension _ProtoClusterLeadershipChange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
331 |   public static let protoMessageName: String = "ClusterLeadershipChange"
332 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
333 |     1: .same(proto: "oldLeader"),
334 |     2: .same(proto: "newLeader"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:278:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
276 |
277 | extension _ProtoClusterMemberReachability: SwiftProtobuf._ProtoNameProviding {
278 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
279 |     0: .same(proto: "CLUSTER_MEMBER_REACHABILITY_UNSPECIFIED"),
280 |     1: .same(proto: "CLUSTER_MEMBER_REACHABILITY_REACHABLE"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:286:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
284 |
285 | extension _ProtoClusterMemberStatus: SwiftProtobuf._ProtoNameProviding {
286 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
287 |     0: .same(proto: "CLUSTER_MEMBER_STATUS_UNSPECIFIED"),
288 |     1: .same(proto: "CLUSTER_MEMBER_STATUS_JOINING"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:298:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
296 | extension _ProtoClusterMembership: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
297 |   public static let protoMessageName: String = "ClusterMembership"
298 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
299 |     1: .same(proto: "members"),
300 |     2: .same(proto: "leaderNode"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:367:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
365 | extension _ProtoClusterMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
366 |   public static let protoMessageName: String = "ClusterMember"
367 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
368 |     1: .same(proto: "node"),
369 |     2: .same(proto: "status"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:452:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
450 | extension _ProtoClusterMembershipGossip: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
451 |   public static let protoMessageName: String = "ClusterMembershipGossip"
452 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
453 |     1: .same(proto: "membership"),
454 |     2: .same(proto: "ownerClusterNodeID"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:529:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
527 | extension _ProtoClusterMembershipSeenTable: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
528 |   public static let protoMessageName: String = "ClusterMembershipSeenTable"
529 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
530 |     1: .same(proto: "rows"),
531 |   ]
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:558:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
556 | extension _ProtoClusterMembershipSeenTableRow: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
557 |   public static let protoMessageName: String = "ClusterMembershipSeenTableRow"
558 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
559 |     1: .same(proto: "nodeID"),
560 |     2: .same(proto: "version"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1018:17: warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
1016 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
1017 |     /// allows us to push more elements
1018 |     final class PushOps: Receptionist.Message {
     |                 `- warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
1019 |         // the "sender" of the push
1020 |         let peer: OpLogDistributedReceptionist
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1076:17: warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
1074 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
1075 |     /// allows us to push more elements
1076 |     final class AckOps: Receptionist.Message, CustomStringConvertible {
     |                 `- warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
1077 |         /// Cumulative ACK of all ops until (and including) this one.
1078 |         ///
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1127:17: warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
1125 |     }
1126 |
1127 |     final class PublishLocalListingsTrigger: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
     |                 `- warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
1128 |         override init() {
1129 |             super.init()
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:706:21: warning: reference to property 'log' in closure requires explicit use of 'self' to make capture semantics explicit; this is an error in the Swift 6 language mode
 704 |                     ()
 705 |                 default:
 706 |                     log.error("Error: \(error)")
     |                     `- warning: reference to property 'log' in closure requires explicit use of 'self' to make capture semantics explicit; this is an error in the Swift 6 language mode
 707 |                 }
 708 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:674:11: warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
672 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
673 |     /// allows us to push more elements
674 |     class PushOps: Receptionist.Message {
    |           `- warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
675 |         // the "sender" of the push
676 |         let peer: _ActorRef<Receptionist.Message>
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:725:11: warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
723 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
724 |     /// allows us to push more elements
725 |     class AckOps: Receptionist.Message, CustomStringConvertible {
    |           `- warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
726 |         /// Cumulative ACK of all ops until (and including) this one.
727 |         ///
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:776:11: warning: class 'PeriodicAckTick' must restate inherited '@unchecked Sendable' conformance
774 |     }
775 |
776 |     class PeriodicAckTick: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
    |           `- warning: class 'PeriodicAckTick' must restate inherited '@unchecked Sendable' conformance
777 |         override init() {
778 |             super.init()
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:790:11: warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
788 |     }
789 |
790 |     class PublishLocalListingsTrigger: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
    |           `- warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
791 |         override init() {
792 |             super.init()
<unknown>:0: note: 'file' declared here
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:820:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
812 |     func tracelog(
813 |         _ context: _ActorContext<Message>, _ type: TraceLogType, message: Any,
814 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
815 |     ) {
816 |         if let level = context.system.settings.receptionist.traceLogLevel {
    :
818 |                 level: level,
819 |                 "[tracelog:receptionist] \(type.description): \(message)",
820 |                 file: file, function: function, line: line
    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
821 |             )
822 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |   public static let protoMessageName: String = "SWIMPingResponse"
269 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
270 |     1: .same(proto: "ack"),
271 |     2: .same(proto: "nack"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |   public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
351 |     1: .same(proto: "target"),
352 |     2: .same(proto: "incarnation"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |   public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
436 |     1: .same(proto: "target"),
437 |     2: .same(proto: "sequenceNumber"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |   public static let protoMessageName: String = "SWIMStatus"
504 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
505 |     1: .same(proto: "type"),
506 |     2: .same(proto: "incarnation"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
545 |     0: .same(proto: "UNSPECIFIED"),
546 |     1: .same(proto: "ALIVE"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |   public static let protoMessageName: String = "SWIMMember"
555 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
556 |     1: .same(proto: "id"),
557 |     2: .same(proto: "status"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |   public static let protoMessageName: String = "SWIMGossipPayload"
632 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
633 |     1: .same(proto: "member"),
634 |   ]
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/SWIMActor.swift:585:66: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
583 | extension ActorID {
584 |     static func _swim(on node: Cluster.Node) -> ActorID {
585 |         .init(remote: node, path: ActorPath._swim, incarnation: .wellKnown)
    |                                                                  `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
586 |     }
587 | }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
105 |         }
106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
    |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
    |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
107 |         return try Wire.HandshakeResponse(proto)
108 |     }
<unknown>:0: note: 'file' declared here
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:583:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
567 |     private func tracelog(
568 |         _ type: TraceLogType, message: Any,
569 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
570 |     ) {
571 |         let level: Logger.Level?
    :
581 |                 level: level,
582 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
583 |                 file: file, function: function, line: line
    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
584 |             )
585 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:236:21: warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 234 |
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
     |                     `- warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 237 |             Backtrace.install()
 238 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:237:23: warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
 237 |             Backtrace.install()
     |                       `- warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 238 |         }
 239 |
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:526:17: warning: variable 'knownActors' was written to, but never read
 524 |             // We can't have it acquire the same lock, so we copy the refs out and release the last
 525 |             // references to those actors outside of the naming lock.
 526 |             var knownActors = self.namingLock.withLock {
     |                 `- warning: variable 'knownActors' was written to, but never read
 527 |                 self._managedWellKnownDistributedActors // copy references
 528 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:639:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 637 |         try behavior.validateAsInitial()
 638 |
 639 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 640 |
 641 |         // TODO: lock inside provider, not here
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:707:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 705 |     // Reserve an actor address.
 706 |     internal func _reserveName<Act>(type: Act.Type, props: _Props) throws -> ActorID where Act: DistributedActor {
 707 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 708 |         guard let provider = (props._systemActor ? self.systemProvider : self.userProvider) else {
 709 |             fatalError("Unable to obtain system/user actor provider") // TODO(distributed): just throw here instead
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1551:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1549 |
1550 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1551 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1552 |         }
1553 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1566:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1564 |
1565 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1566 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1567 |         }
1568 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1593:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1591 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1592 |             }
1593 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1594 |         }
1595 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
[1511/1522] Compiling DistributedCluster ClusterNode.swift
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:163:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
161 | extension _ProtoClusterEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
162 |   public static let protoMessageName: String = "ClusterEvent"
163 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
164 |     1: .same(proto: "snapshot"),
165 |     2: .same(proto: "membershipChange"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:255:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
253 | extension _ProtoClusterMembershipChange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
254 |   public static let protoMessageName: String = "ClusterMembershipChange"
255 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
256 |     1: .same(proto: "node"),
257 |     2: .same(proto: "fromStatus"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:332:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
330 | extension _ProtoClusterLeadershipChange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
331 |   public static let protoMessageName: String = "ClusterLeadershipChange"
332 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
333 |     1: .same(proto: "oldLeader"),
334 |     2: .same(proto: "newLeader"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:278:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
276 |
277 | extension _ProtoClusterMemberReachability: SwiftProtobuf._ProtoNameProviding {
278 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
279 |     0: .same(proto: "CLUSTER_MEMBER_REACHABILITY_UNSPECIFIED"),
280 |     1: .same(proto: "CLUSTER_MEMBER_REACHABILITY_REACHABLE"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:286:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
284 |
285 | extension _ProtoClusterMemberStatus: SwiftProtobuf._ProtoNameProviding {
286 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
287 |     0: .same(proto: "CLUSTER_MEMBER_STATUS_UNSPECIFIED"),
288 |     1: .same(proto: "CLUSTER_MEMBER_STATUS_JOINING"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:298:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
296 | extension _ProtoClusterMembership: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
297 |   public static let protoMessageName: String = "ClusterMembership"
298 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
299 |     1: .same(proto: "members"),
300 |     2: .same(proto: "leaderNode"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:367:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
365 | extension _ProtoClusterMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
366 |   public static let protoMessageName: String = "ClusterMember"
367 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
368 |     1: .same(proto: "node"),
369 |     2: .same(proto: "status"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:452:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
450 | extension _ProtoClusterMembershipGossip: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
451 |   public static let protoMessageName: String = "ClusterMembershipGossip"
452 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
453 |     1: .same(proto: "membership"),
454 |     2: .same(proto: "ownerClusterNodeID"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:529:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
527 | extension _ProtoClusterMembershipSeenTable: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
528 |   public static let protoMessageName: String = "ClusterMembershipSeenTable"
529 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
530 |     1: .same(proto: "rows"),
531 |   ]
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:558:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
556 | extension _ProtoClusterMembershipSeenTableRow: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
557 |   public static let protoMessageName: String = "ClusterMembershipSeenTableRow"
558 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
559 |     1: .same(proto: "nodeID"),
560 |     2: .same(proto: "version"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1018:17: warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
1016 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
1017 |     /// allows us to push more elements
1018 |     final class PushOps: Receptionist.Message {
     |                 `- warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
1019 |         // the "sender" of the push
1020 |         let peer: OpLogDistributedReceptionist
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1076:17: warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
1074 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
1075 |     /// allows us to push more elements
1076 |     final class AckOps: Receptionist.Message, CustomStringConvertible {
     |                 `- warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
1077 |         /// Cumulative ACK of all ops until (and including) this one.
1078 |         ///
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1127:17: warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
1125 |     }
1126 |
1127 |     final class PublishLocalListingsTrigger: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
     |                 `- warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
1128 |         override init() {
1129 |             super.init()
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:706:21: warning: reference to property 'log' in closure requires explicit use of 'self' to make capture semantics explicit; this is an error in the Swift 6 language mode
 704 |                     ()
 705 |                 default:
 706 |                     log.error("Error: \(error)")
     |                     `- warning: reference to property 'log' in closure requires explicit use of 'self' to make capture semantics explicit; this is an error in the Swift 6 language mode
 707 |                 }
 708 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:674:11: warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
672 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
673 |     /// allows us to push more elements
674 |     class PushOps: Receptionist.Message {
    |           `- warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
675 |         // the "sender" of the push
676 |         let peer: _ActorRef<Receptionist.Message>
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:725:11: warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
723 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
724 |     /// allows us to push more elements
725 |     class AckOps: Receptionist.Message, CustomStringConvertible {
    |           `- warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
726 |         /// Cumulative ACK of all ops until (and including) this one.
727 |         ///
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:776:11: warning: class 'PeriodicAckTick' must restate inherited '@unchecked Sendable' conformance
774 |     }
775 |
776 |     class PeriodicAckTick: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
    |           `- warning: class 'PeriodicAckTick' must restate inherited '@unchecked Sendable' conformance
777 |         override init() {
778 |             super.init()
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:790:11: warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
788 |     }
789 |
790 |     class PublishLocalListingsTrigger: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
    |           `- warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
791 |         override init() {
792 |             super.init()
<unknown>:0: note: 'file' declared here
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:820:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
812 |     func tracelog(
813 |         _ context: _ActorContext<Message>, _ type: TraceLogType, message: Any,
814 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
815 |     ) {
816 |         if let level = context.system.settings.receptionist.traceLogLevel {
    :
818 |                 level: level,
819 |                 "[tracelog:receptionist] \(type.description): \(message)",
820 |                 file: file, function: function, line: line
    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
821 |             )
822 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |   public static let protoMessageName: String = "SWIMPingResponse"
269 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
270 |     1: .same(proto: "ack"),
271 |     2: .same(proto: "nack"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |   public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
351 |     1: .same(proto: "target"),
352 |     2: .same(proto: "incarnation"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |   public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
436 |     1: .same(proto: "target"),
437 |     2: .same(proto: "sequenceNumber"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |   public static let protoMessageName: String = "SWIMStatus"
504 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
505 |     1: .same(proto: "type"),
506 |     2: .same(proto: "incarnation"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
545 |     0: .same(proto: "UNSPECIFIED"),
546 |     1: .same(proto: "ALIVE"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |   public static let protoMessageName: String = "SWIMMember"
555 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
556 |     1: .same(proto: "id"),
557 |     2: .same(proto: "status"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |   public static let protoMessageName: String = "SWIMGossipPayload"
632 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
633 |     1: .same(proto: "member"),
634 |   ]
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/SWIMActor.swift:585:66: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
583 | extension ActorID {
584 |     static func _swim(on node: Cluster.Node) -> ActorID {
585 |         .init(remote: node, path: ActorPath._swim, incarnation: .wellKnown)
    |                                                                  `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
586 |     }
587 | }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
105 |         }
106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
    |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
    |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
107 |         return try Wire.HandshakeResponse(proto)
108 |     }
<unknown>:0: note: 'file' declared here
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:583:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
567 |     private func tracelog(
568 |         _ type: TraceLogType, message: Any,
569 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
570 |     ) {
571 |         let level: Logger.Level?
    :
581 |                 level: level,
582 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
583 |                 file: file, function: function, line: line
    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
584 |             )
585 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:236:21: warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 234 |
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
     |                     `- warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 237 |             Backtrace.install()
 238 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:237:23: warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
 237 |             Backtrace.install()
     |                       `- warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 238 |         }
 239 |
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:526:17: warning: variable 'knownActors' was written to, but never read
 524 |             // We can't have it acquire the same lock, so we copy the refs out and release the last
 525 |             // references to those actors outside of the naming lock.
 526 |             var knownActors = self.namingLock.withLock {
     |                 `- warning: variable 'knownActors' was written to, but never read
 527 |                 self._managedWellKnownDistributedActors // copy references
 528 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:639:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 637 |         try behavior.validateAsInitial()
 638 |
 639 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 640 |
 641 |         // TODO: lock inside provider, not here
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:707:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 705 |     // Reserve an actor address.
 706 |     internal func _reserveName<Act>(type: Act.Type, props: _Props) throws -> ActorID where Act: DistributedActor {
 707 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 708 |         guard let provider = (props._systemActor ? self.systemProvider : self.userProvider) else {
 709 |             fatalError("Unable to obtain system/user actor provider") // TODO(distributed): just throw here instead
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1551:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1549 |
1550 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1551 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1552 |         }
1553 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1566:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1564 |
1565 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1566 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1567 |         }
1568 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1593:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1591 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1592 |             }
1593 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1594 |         }
1595 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
[1512/1522] Compiling DistributedCluster ClusterSystem.swift
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:163:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
161 | extension _ProtoClusterEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
162 |   public static let protoMessageName: String = "ClusterEvent"
163 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
164 |     1: .same(proto: "snapshot"),
165 |     2: .same(proto: "membershipChange"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:255:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
253 | extension _ProtoClusterMembershipChange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
254 |   public static let protoMessageName: String = "ClusterMembershipChange"
255 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
256 |     1: .same(proto: "node"),
257 |     2: .same(proto: "fromStatus"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:332:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
330 | extension _ProtoClusterLeadershipChange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
331 |   public static let protoMessageName: String = "ClusterLeadershipChange"
332 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
333 |     1: .same(proto: "oldLeader"),
334 |     2: .same(proto: "newLeader"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:278:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
276 |
277 | extension _ProtoClusterMemberReachability: SwiftProtobuf._ProtoNameProviding {
278 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
279 |     0: .same(proto: "CLUSTER_MEMBER_REACHABILITY_UNSPECIFIED"),
280 |     1: .same(proto: "CLUSTER_MEMBER_REACHABILITY_REACHABLE"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:286:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
284 |
285 | extension _ProtoClusterMemberStatus: SwiftProtobuf._ProtoNameProviding {
286 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
287 |     0: .same(proto: "CLUSTER_MEMBER_STATUS_UNSPECIFIED"),
288 |     1: .same(proto: "CLUSTER_MEMBER_STATUS_JOINING"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:298:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
296 | extension _ProtoClusterMembership: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
297 |   public static let protoMessageName: String = "ClusterMembership"
298 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
299 |     1: .same(proto: "members"),
300 |     2: .same(proto: "leaderNode"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:367:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
365 | extension _ProtoClusterMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
366 |   public static let protoMessageName: String = "ClusterMember"
367 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
368 |     1: .same(proto: "node"),
369 |     2: .same(proto: "status"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:452:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
450 | extension _ProtoClusterMembershipGossip: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
451 |   public static let protoMessageName: String = "ClusterMembershipGossip"
452 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
453 |     1: .same(proto: "membership"),
454 |     2: .same(proto: "ownerClusterNodeID"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:529:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
527 | extension _ProtoClusterMembershipSeenTable: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
528 |   public static let protoMessageName: String = "ClusterMembershipSeenTable"
529 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
530 |     1: .same(proto: "rows"),
531 |   ]
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:558:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
556 | extension _ProtoClusterMembershipSeenTableRow: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
557 |   public static let protoMessageName: String = "ClusterMembershipSeenTableRow"
558 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
559 |     1: .same(proto: "nodeID"),
560 |     2: .same(proto: "version"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1018:17: warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
1016 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
1017 |     /// allows us to push more elements
1018 |     final class PushOps: Receptionist.Message {
     |                 `- warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
1019 |         // the "sender" of the push
1020 |         let peer: OpLogDistributedReceptionist
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1076:17: warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
1074 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
1075 |     /// allows us to push more elements
1076 |     final class AckOps: Receptionist.Message, CustomStringConvertible {
     |                 `- warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
1077 |         /// Cumulative ACK of all ops until (and including) this one.
1078 |         ///
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1127:17: warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
1125 |     }
1126 |
1127 |     final class PublishLocalListingsTrigger: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
     |                 `- warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
1128 |         override init() {
1129 |             super.init()
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:706:21: warning: reference to property 'log' in closure requires explicit use of 'self' to make capture semantics explicit; this is an error in the Swift 6 language mode
 704 |                     ()
 705 |                 default:
 706 |                     log.error("Error: \(error)")
     |                     `- warning: reference to property 'log' in closure requires explicit use of 'self' to make capture semantics explicit; this is an error in the Swift 6 language mode
 707 |                 }
 708 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:674:11: warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
672 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
673 |     /// allows us to push more elements
674 |     class PushOps: Receptionist.Message {
    |           `- warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
675 |         // the "sender" of the push
676 |         let peer: _ActorRef<Receptionist.Message>
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:725:11: warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
723 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
724 |     /// allows us to push more elements
725 |     class AckOps: Receptionist.Message, CustomStringConvertible {
    |           `- warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
726 |         /// Cumulative ACK of all ops until (and including) this one.
727 |         ///
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:776:11: warning: class 'PeriodicAckTick' must restate inherited '@unchecked Sendable' conformance
774 |     }
775 |
776 |     class PeriodicAckTick: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
    |           `- warning: class 'PeriodicAckTick' must restate inherited '@unchecked Sendable' conformance
777 |         override init() {
778 |             super.init()
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:790:11: warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
788 |     }
789 |
790 |     class PublishLocalListingsTrigger: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
    |           `- warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
791 |         override init() {
792 |             super.init()
<unknown>:0: note: 'file' declared here
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:820:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
812 |     func tracelog(
813 |         _ context: _ActorContext<Message>, _ type: TraceLogType, message: Any,
814 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
815 |     ) {
816 |         if let level = context.system.settings.receptionist.traceLogLevel {
    :
818 |                 level: level,
819 |                 "[tracelog:receptionist] \(type.description): \(message)",
820 |                 file: file, function: function, line: line
    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
821 |             )
822 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |   public static let protoMessageName: String = "SWIMPingResponse"
269 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
270 |     1: .same(proto: "ack"),
271 |     2: .same(proto: "nack"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |   public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
351 |     1: .same(proto: "target"),
352 |     2: .same(proto: "incarnation"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |   public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
436 |     1: .same(proto: "target"),
437 |     2: .same(proto: "sequenceNumber"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |   public static let protoMessageName: String = "SWIMStatus"
504 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
505 |     1: .same(proto: "type"),
506 |     2: .same(proto: "incarnation"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
545 |     0: .same(proto: "UNSPECIFIED"),
546 |     1: .same(proto: "ALIVE"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |   public static let protoMessageName: String = "SWIMMember"
555 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
556 |     1: .same(proto: "id"),
557 |     2: .same(proto: "status"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |   public static let protoMessageName: String = "SWIMGossipPayload"
632 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
633 |     1: .same(proto: "member"),
634 |   ]
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/SWIMActor.swift:585:66: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
583 | extension ActorID {
584 |     static func _swim(on node: Cluster.Node) -> ActorID {
585 |         .init(remote: node, path: ActorPath._swim, incarnation: .wellKnown)
    |                                                                  `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
586 |     }
587 | }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
105 |         }
106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
    |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
    |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
107 |         return try Wire.HandshakeResponse(proto)
108 |     }
<unknown>:0: note: 'file' declared here
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:583:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
567 |     private func tracelog(
568 |         _ type: TraceLogType, message: Any,
569 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
570 |     ) {
571 |         let level: Logger.Level?
    :
581 |                 level: level,
582 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
583 |                 file: file, function: function, line: line
    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
584 |             )
585 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:236:21: warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 234 |
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
     |                     `- warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 237 |             Backtrace.install()
 238 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:237:23: warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
 237 |             Backtrace.install()
     |                       `- warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 238 |         }
 239 |
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:526:17: warning: variable 'knownActors' was written to, but never read
 524 |             // We can't have it acquire the same lock, so we copy the refs out and release the last
 525 |             // references to those actors outside of the naming lock.
 526 |             var knownActors = self.namingLock.withLock {
     |                 `- warning: variable 'knownActors' was written to, but never read
 527 |                 self._managedWellKnownDistributedActors // copy references
 528 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:639:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 637 |         try behavior.validateAsInitial()
 638 |
 639 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 640 |
 641 |         // TODO: lock inside provider, not here
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:707:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 705 |     // Reserve an actor address.
 706 |     internal func _reserveName<Act>(type: Act.Type, props: _Props) throws -> ActorID where Act: DistributedActor {
 707 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 708 |         guard let provider = (props._systemActor ? self.systemProvider : self.userProvider) else {
 709 |             fatalError("Unable to obtain system/user actor provider") // TODO(distributed): just throw here instead
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1551:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1549 |
1550 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1551 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1552 |         }
1553 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1566:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1564 |
1565 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1566 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1567 |         }
1568 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1593:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1591 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1592 |             }
1593 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1594 |         }
1595 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
[1513/1522] Compiling DistributedCluster ClusterSystemSettings.swift
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:163:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
161 | extension _ProtoClusterEvent: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
162 |   public static let protoMessageName: String = "ClusterEvent"
163 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
164 |     1: .same(proto: "snapshot"),
165 |     2: .same(proto: "membershipChange"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:255:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
253 | extension _ProtoClusterMembershipChange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
254 |   public static let protoMessageName: String = "ClusterMembershipChange"
255 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
256 |     1: .same(proto: "node"),
257 |     2: .same(proto: "fromStatus"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/ClusterEvents.pb.swift:332:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
330 | extension _ProtoClusterLeadershipChange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
331 |   public static let protoMessageName: String = "ClusterLeadershipChange"
332 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
333 |     1: .same(proto: "oldLeader"),
334 |     2: .same(proto: "newLeader"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:278:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
276 |
277 | extension _ProtoClusterMemberReachability: SwiftProtobuf._ProtoNameProviding {
278 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
279 |     0: .same(proto: "CLUSTER_MEMBER_REACHABILITY_UNSPECIFIED"),
280 |     1: .same(proto: "CLUSTER_MEMBER_REACHABILITY_REACHABLE"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:286:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
284 |
285 | extension _ProtoClusterMemberStatus: SwiftProtobuf._ProtoNameProviding {
286 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
287 |     0: .same(proto: "CLUSTER_MEMBER_STATUS_UNSPECIFIED"),
288 |     1: .same(proto: "CLUSTER_MEMBER_STATUS_JOINING"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:298:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
296 | extension _ProtoClusterMembership: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
297 |   public static let protoMessageName: String = "ClusterMembership"
298 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
299 |     1: .same(proto: "members"),
300 |     2: .same(proto: "leaderNode"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:367:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
365 | extension _ProtoClusterMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
366 |   public static let protoMessageName: String = "ClusterMember"
367 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
368 |     1: .same(proto: "node"),
369 |     2: .same(proto: "status"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:452:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
450 | extension _ProtoClusterMembershipGossip: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
451 |   public static let protoMessageName: String = "ClusterMembershipGossip"
452 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
453 |     1: .same(proto: "membership"),
454 |     2: .same(proto: "ownerClusterNodeID"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:529:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
527 | extension _ProtoClusterMembershipSeenTable: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
528 |   public static let protoMessageName: String = "ClusterMembershipSeenTable"
529 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
530 |     1: .same(proto: "rows"),
531 |   ]
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Protobuf/Membership.pb.swift:558:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
556 | extension _ProtoClusterMembershipSeenTableRow: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
557 |   public static let protoMessageName: String = "ClusterMembershipSeenTableRow"
558 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
559 |     1: .same(proto: "nodeID"),
560 |     2: .same(proto: "version"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1018:17: warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
1016 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
1017 |     /// allows us to push more elements
1018 |     final class PushOps: Receptionist.Message {
     |                 `- warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
1019 |         // the "sender" of the push
1020 |         let peer: OpLogDistributedReceptionist
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1076:17: warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
1074 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
1075 |     /// allows us to push more elements
1076 |     final class AckOps: Receptionist.Message, CustomStringConvertible {
     |                 `- warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
1077 |         /// Cumulative ACK of all ops until (and including) this one.
1078 |         ///
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:1127:17: warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
1125 |     }
1126 |
1127 |     final class PublishLocalListingsTrigger: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
     |                 `- warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
1128 |         override init() {
1129 |             super.init()
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/OperationLogDistributedReceptionist.swift:706:21: warning: reference to property 'log' in closure requires explicit use of 'self' to make capture semantics explicit; this is an error in the Swift 6 language mode
 704 |                     ()
 705 |                 default:
 706 |                     log.error("Error: \(error)")
     |                     `- warning: reference to property 'log' in closure requires explicit use of 'self' to make capture semantics explicit; this is an error in the Swift 6 language mode
 707 |                 }
 708 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:674:11: warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
672 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
673 |     /// allows us to push more elements
674 |     class PushOps: Receptionist.Message {
    |           `- warning: class 'PushOps' must restate inherited '@unchecked Sendable' conformance
675 |         // the "sender" of the push
676 |         let peer: _ActorRef<Receptionist.Message>
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:725:11: warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
723 |     /// Confirms that the remote peer receptionist has received Ops up until the given element,
724 |     /// allows us to push more elements
725 |     class AckOps: Receptionist.Message, CustomStringConvertible {
    |           `- warning: class 'AckOps' must restate inherited '@unchecked Sendable' conformance
726 |         /// Cumulative ACK of all ops until (and including) this one.
727 |         ///
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:776:11: warning: class 'PeriodicAckTick' must restate inherited '@unchecked Sendable' conformance
774 |     }
775 |
776 |     class PeriodicAckTick: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
    |           `- warning: class 'PeriodicAckTick' must restate inherited '@unchecked Sendable' conformance
777 |         override init() {
778 |             super.init()
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:790:11: warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
788 |     }
789 |
790 |     class PublishLocalListingsTrigger: Receptionist.Message, _NotActuallyCodableMessage, CustomStringConvertible {
    |           `- warning: class 'PublishLocalListingsTrigger' must restate inherited '@unchecked Sendable' conformance
791 |         override init() {
792 |             super.init()
<unknown>:0: note: 'file' declared here
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift:820:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
812 |     func tracelog(
813 |         _ context: _ActorContext<Message>, _ type: TraceLogType, message: Any,
814 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
815 |     ) {
816 |         if let level = context.system.settings.receptionist.traceLogLevel {
    :
818 |                 level: level,
819 |                 "[tracelog:receptionist] \(type.description): \(message)",
820 |                 file: file, function: function, line: line
    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
821 |             )
822 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Encodable', 'Decodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |   public static let protoMessageName: String = "SWIMPingResponse"
269 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
270 |     1: .same(proto: "ack"),
271 |     2: .same(proto: "nack"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |   public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
351 |     1: .same(proto: "target"),
352 |     2: .same(proto: "incarnation"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |   public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
436 |     1: .same(proto: "target"),
437 |     2: .same(proto: "sequenceNumber"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |   public static let protoMessageName: String = "SWIMStatus"
504 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
505 |     1: .same(proto: "type"),
506 |     2: .same(proto: "incarnation"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
545 |     0: .same(proto: "UNSPECIFIED"),
546 |     1: .same(proto: "ALIVE"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |   public static let protoMessageName: String = "SWIMMember"
555 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
556 |     1: .same(proto: "id"),
557 |     2: .same(proto: "status"),
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |   public static let protoMessageName: String = "SWIMGossipPayload"
632 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                 `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
633 |     1: .same(proto: "member"),
634 |   ]
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/SWIMActor.swift:585:66: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
583 | extension ActorID {
584 |     static func _swim(on node: Cluster.Node) -> ActorID {
585 |         .init(remote: node, path: ActorPath._swim, incarnation: .wellKnown)
    |                                                                  `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
586 |     }
587 | }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
105 |         }
106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
    |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
    |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
107 |         return try Wire.HandshakeResponse(proto)
108 |     }
<unknown>:0: note: 'file' declared here
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:583:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
567 |     private func tracelog(
568 |         _ type: TraceLogType, message: Any,
569 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
570 |     ) {
571 |         let level: Logger.Level?
    :
581 |                 level: level,
582 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
583 |                 file: file, function: function, line: line
    |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
    |                       `- note: add parentheses to silence this warning
584 |             )
585 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:236:21: warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 234 |
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
     |                     `- warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 237 |             Backtrace.install()
 238 |         }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:237:23: warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 235 |         // rely on swift-backtrace for pretty backtraces on crashes
 236 |         if settings.installSwiftBacktrace {
 237 |             Backtrace.install()
     |                       `- warning: 'install()' is deprecated: This is no longer needed in Swift 5.9
 238 |         }
 239 |
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:526:17: warning: variable 'knownActors' was written to, but never read
 524 |             // We can't have it acquire the same lock, so we copy the refs out and release the last
 525 |             // references to those actors outside of the naming lock.
 526 |             var knownActors = self.namingLock.withLock {
     |                 `- warning: variable 'knownActors' was written to, but never read
 527 |                 self._managedWellKnownDistributedActors // copy references
 528 |             }
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:639:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 637 |         try behavior.validateAsInitial()
 638 |
 639 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 640 |
 641 |         // TODO: lock inside provider, not here
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:707:65: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 705 |     // Reserve an actor address.
 706 |     internal func _reserveName<Act>(type: Act.Type, props: _Props) throws -> ActorID where Act: DistributedActor {
 707 |         let incarnation: ActorIncarnation = props._wellKnown ? .wellKnown : .random()
     |                                                                 `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
 708 |         guard let provider = (props._systemActor ? self.systemProvider : self.userProvider) else {
 709 |             fatalError("Unable to obtain system/user actor provider") // TODO(distributed): just throw here instead
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1551:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1549 |
1550 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1551 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1552 |         }
1553 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1566:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1564 |
1565 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1566 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1567 |         }
1568 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
/host/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1593:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1591 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1592 |             }
1593 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1594 |         }
1595 |     }
/host/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:875:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
873 |
874 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
875 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
876 |     let storage: Storage
877 |     enum Storage {
[1514/1523] Wrapping AST for DistributedCluster for debugging
[1516/1542] Compiling DistributedActorsTestKit SingleClusterSystemXCTestCase.swift
[1517/1542] Compiling MultiNodeTestKit MultiNodeTestSettings.swift
[1518/1543] Emitting module it_Clustered_swim_suspension_reachability
[1519/1543] Compiling it_Clustered_swim_suspension_reachability main.swift
[1520/1543] Compiling DistributedActorsTestKit Task+Testing.swift
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/Task+Testing.swift:33:23: error: type 'Task<Success, any Error>' has no member 'select'
31 |
32 |         defer { timeoutTask.cancel() }
33 |         return await .select(valueTask, timeoutTask)
   |                       `- error: type 'Task<Success, any Error>' has no member 'select'
34 |     }
35 | }
[1521/1543] Compiling DistributedActorsTestKit TestProbes+Receptionist.swift
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes+Receptionist.swift:33:71: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
26 |         expected: Set<_ActorRef<String>>, within timeout: Duration,
27 |         verbose: Bool = false,
28 |         file: StaticString = #filePath, line: UInt = #line, column: UInt = #column
   |                              `- note: did you mean for parameter 'file' to default to '#fileID'?
29 |     ) throws {
30 |         do {
31 |             let listing = try self.fishForMessages(within: timeout, file: file, line: line) {
32 |                 if verbose {
33 |                     pinfo("Received listing: \($0.refs.count)", file: file, line: line)
   |                                                                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
   |                                                                       `- note: add parentheses to silence this warning
34 |                 }
35 |
DistributedCluster.file (private):1:1: note: 'file' declared here
1 | file: StaticString
  | `- note: 'file' declared here
[1523/1544] Compiling MultiNodeTestKit MultiNodeTestKit+Control.swift
[1524/1544] Compiling MultiNodeTestKit MultiNodeTestKit.swift
[1524/1544] Wrapping AST for it_Clustered_swim_suspension_reachability for debugging
[1525/1544] Write Objects.LinkFileList
[1527/1544] Emitting module DistributedActorsTestKit
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/LogCapture.swift:195:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
193 | // MARK: LogCapture LogHandler
194 |
195 | struct LogCaptureLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
196 |     let label: String
197 |     let capture: LogCapture
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:213:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
137 |     ///     - function: The function the log line was emitted from.
138 |     ///     - line: The line the log message was emitted from.
139 |     func log(
    |          `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
140 |         level: Logger.Level,
141 |         message: Logger.Message,
    :
211 | extension LogHandler {
212 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
213 |     public func log(
    |                 `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
214 |         level: Logger.Level,
215 |         message: Logger.Message,
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/ShouldMatchers.swift:36:15: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 24 | private let isTty = isatty(fileno(stdin)) == 0
 25 |
 26 | public struct TestMatchers<T> {
    |                            `- note: 'T' previously declared here
 27 |     private let it: T
 28 |
    :
 34 |     }
 35 |
 36 |     func toBe<T>(_ expected: T.Type) {
    |               `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 37 |         if !(self.it is T) {
 38 |             let error = self.callSite.notEqualError(got: self.it, expected: expected)
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes.swift:699:25: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 34 | ///
 35 | /// - SeeAlso: `ActorableTestProbe` which is the equivalent API for `Actorable`s.
 36 | public final class ActorTestProbe<Message: Codable>: @unchecked Sendable {
    |                                   `- note: 'Message' previously declared here
 37 |     /// Name of the test probe (and underlying actor).
 38 |     public let name: String
    :
697 |     /// and our direct message arrives first, before the watch at the destination, causing potentially confusing behavior
698 |     /// in some very ordering delicate testing scenarios.
699 |     public func forward<Message>(_ message: Message, to target: _ActorRef<Message>, file: String = #filePath, line: UInt = #line) where Message: Codable {
    |                         `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
700 |         self.internalRef.tell(ProbeCommands.forwardCommand(send: { () in target.tell(message, file: file, line: line) }))
701 |     }
[1528/1544] Compiling DistributedActorsTestKit ActorTestKit.swift
[1529/1544] Compiling DistributedActorsTestKit ByteBuffer+Testing.swift
[1530/1544] Compiling MultiNodeTestKit MultiNodeTestConductor.swift
/host/spi-builder-workspace/Sources/MultiNodeTestKit/MultiNodeTestConductor.swift:164:21: warning: dictionary literal of type 'Logger.Metadata' (aka 'Dictionary<String, Logger.MetadataValue>') has duplicate entries for string literal key 'checkPoint/error'
162 |                 self.log.warning("Checkpoint failed, informing node [\(node)]", metadata: [
163 |                     "checkPoint/node": "\(node)",
164 |                     "checkPoint/error": "\(checkPointError)",
    |                     |- warning: dictionary literal of type 'Logger.Metadata' (aka 'Dictionary<String, Logger.MetadataValue>') has duplicate entries for string literal key 'checkPoint/error'
    |                     `- note: duplicate key declared here
165 |                     "checkPoint/error": "\(checkPointError)",
    |                     `- note: duplicate key declared here
166 |                 ])
167 |                 cc.resume(throwing: checkPointError)
[1531/1544] Emitting module MultiNodeTestKit
[1532/1544] Compiling DistributedActorsTestKit TestProbes.swift
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes.swift:699:25: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 34 | ///
 35 | /// - SeeAlso: `ActorableTestProbe` which is the equivalent API for `Actorable`s.
 36 | public final class ActorTestProbe<Message: Codable>: @unchecked Sendable {
    |                                   `- note: 'Message' previously declared here
 37 |     /// Name of the test probe (and underlying actor).
 38 |     public let name: String
    :
697 |     /// and our direct message arrives first, before the watch at the destination, causing potentially confusing behavior
698 |     /// in some very ordering delicate testing scenarios.
699 |     public func forward<Message>(_ message: Message, to target: _ActorRef<Message>, file: String = #filePath, line: UInt = #line) where Message: Codable {
    |                         `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
700 |         self.internalRef.tell(ProbeCommands.forwardCommand(send: { () in target.tell(message, file: file, line: line) }))
701 |     }
[1533/1545] Wrapping AST for MultiNodeTestKit for debugging
[1535/1549] Emitting module DistributedActorsMultiNodeTests
/host/spi-builder-workspace/MultiNodeTests/DistributedActorsMultiNodeTests/MultiNode+ClusterSingletonTests.swift:63:25: warning: no 'async' operations occur within 'await' expression
61 |
62 |         try await multiNode.checkPoint("Hosted singleton") // ----------------------------------------------------------
63 |         let reply = try await ref.greet(name: "Hello from \(multiNode.system.name)")
   |                         `- warning: no 'async' operations occur within 'await' expression
64 |         print("[ON: \(multiNode.system.name)] Got reply: \(reply)")
65 |
[1536/1549] Compiling DistributedActorsMultiNodeTests MultiNode+ClusterSingletonTests.swift
/host/spi-builder-workspace/MultiNodeTests/DistributedActorsMultiNodeTests/MultiNode+ClusterSingletonTests.swift:63:25: warning: no 'async' operations occur within 'await' expression
61 |
62 |         try await multiNode.checkPoint("Hosted singleton") // ----------------------------------------------------------
63 |         let reply = try await ref.greet(name: "Hello from \(multiNode.system.name)")
   |                         `- warning: no 'async' operations occur within 'await' expression
64 |         print("[ON: \(multiNode.system.name)] Got reply: \(reply)")
65 |
[1537/1549] Compiling DistributedActorsMultiNodeTests MultiNode+MultiNodeConductorTests.swift
[1538/1549] Compiling DistributedActorsMultiNodeTests MultiNode+ReceptionistTests.swift
[1539/1550] Wrapping AST for DistributedActorsMultiNodeTests for debugging
[1540/1560] Linking it_Clustered_swim_suspension_reachability
[1542/1560] Compiling MultiNodeTestKitRunner MultiNode+LogCapture.swift
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/MultiNode+LogCapture.swift:21:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
 19 | import MultiNodeTestKit
 20 |
 21 | struct PrettyMultiNodeLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
 22 |     let nodeName: String
 23 |     let settings: MultiNodeTestSettings.MultiNodeLogCaptureSettings
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:213:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
137 |     ///     - function: The function the log line was emitted from.
138 |     ///     - line: The line the log message was emitted from.
139 |     func log(
    |          `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
140 |         level: Logger.Level,
141 |         message: Logger.Message,
    :
211 | extension LogHandler {
212 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
213 |     public func log(
    |                 `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
214 |         level: Logger.Level,
215 |         message: Logger.Message,
[1543/1560] Compiling MultiNodeTestKitRunner MultiNode+TestSuites.swift
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/MultiNode+LogCapture.swift:21:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
 19 | import MultiNodeTestKit
 20 |
 21 | struct PrettyMultiNodeLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
 22 |     let nodeName: String
 23 |     let settings: MultiNodeTestSettings.MultiNodeLogCaptureSettings
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:213:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
137 |     ///     - function: The function the log line was emitted from.
138 |     ///     - line: The line the log message was emitted from.
139 |     func log(
    |          `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
140 |         level: Logger.Level,
141 |         message: Logger.Message,
    :
211 | extension LogHandler {
212 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
213 |     public func log(
    |                 `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
214 |         level: Logger.Level,
215 |         message: Logger.Message,
[1544/1561] Emitting module MultiNodeTestKitRunner
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/MultiNode+LogCapture.swift:21:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
 19 | import MultiNodeTestKit
 20 |
 21 | struct PrettyMultiNodeLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
 22 |     let nodeName: String
 23 |     let settings: MultiNodeTestSettings.MultiNodeLogCaptureSettings
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:213:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
137 |     ///     - function: The function the log line was emitted from.
138 |     ///     - line: The line the log message was emitted from.
139 |     func log(
    |          `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
140 |         level: Logger.Level,
141 |         message: Logger.Message,
    :
211 | extension LogHandler {
212 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
213 |     public func log(
    |                 `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
214 |         level: Logger.Level,
215 |         message: Logger.Message,
[1545/1561] Compiling MultiNodeTestKitRunner Process+Extensions.swift
[1546/1561] Compiling MultiNodeTestKitRunner Time.swift
[1547/1561] Compiling MultiNodeTestKitRunner Terminal+Rainbow.swift
[1548/1561] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner+Exec.swift
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/boot+MultiNodeTestKitRunner+Exec.swift:56:22: warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 54 |
 55 |             /// By default get better backtraces in case we crash:
 56 |             settings.installSwiftBacktrace = true
    |                      `- warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users
 57 |
 58 |             /// Configure a nicer logger, that pretty prints metadata and also includes source location of logs
[1549/1561] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner+Test.swift
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/boot+MultiNodeTestKitRunner+Test.swift:120:22: warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
118 |         let elg = MultiThreadedEventLoopGroup(numberOfThreads: 1)
119 |         defer {
120 |             try! elg.syncShutdownGracefully()
    |                      `- warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
121 |         }
122 |
[1550/1561] Compiling MultiNodeTestKitRunner NaiveLogger.swift
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:42:25: warning: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
 40 |                 channel.pipeline.addHandlers(
 41 |                     [
 42 |                         ByteToMessageHandler(NewlineFramer()),
    |                         `- warning: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
 43 |                         GrepHandler(
 44 |                             nodeName: nodeName,
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Codec.swift:507:1: note: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' has been explicitly marked unavailable here
505 |
506 | @available(*, unavailable)
507 | extension ByteToMessageHandler: Sendable {}
    | `- note: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' has been explicitly marked unavailable here
508 |
509 | // MARK: ByteToMessageHandler: Test Helpers
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:51:14: warning: 'withPipes(inputDescriptor:outputDescriptor:)' is deprecated: renamed to 'takingOwnershipOfDescriptors(input:output:)'
 49 |                 )
 50 |             }
 51 |             .withPipes(
    |              |- warning: 'withPipes(inputDescriptor:outputDescriptor:)' is deprecated: renamed to 'takingOwnershipOfDescriptors(input:output:)'
    |              `- note: use 'takingOwnershipOfDescriptors(input:output:)' instead
 52 |                 inputDescriptor: dup(processToChannel.fileHandleForReading.fileDescriptor),
 53 |                 outputDescriptor: dup(deadPipe.fileHandleForWriting.fileDescriptor)
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:55:33: warning: 'init(descriptor:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
 53 |                 outputDescriptor: dup(deadPipe.fileHandleForWriting.fileDescriptor)
 54 |             )
 55 |         let processOutputPipe = NIOFileHandle(descriptor: dup(processToChannel.fileHandleForWriting.fileDescriptor))
    |                                 `- warning: 'init(descriptor:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
 56 |         processToChannel.fileHandleForReading.closeFile()
 57 |         processToChannel.fileHandleForWriting.closeFile()
[1551/1561] Compiling MultiNodeTestKitRunner OutputGrepper.swift
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:42:25: warning: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
 40 |                 channel.pipeline.addHandlers(
 41 |                     [
 42 |                         ByteToMessageHandler(NewlineFramer()),
    |                         `- warning: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
 43 |                         GrepHandler(
 44 |                             nodeName: nodeName,
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Codec.swift:507:1: note: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' has been explicitly marked unavailable here
505 |
506 | @available(*, unavailable)
507 | extension ByteToMessageHandler: Sendable {}
    | `- note: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' has been explicitly marked unavailable here
508 |
509 | // MARK: ByteToMessageHandler: Test Helpers
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:51:14: warning: 'withPipes(inputDescriptor:outputDescriptor:)' is deprecated: renamed to 'takingOwnershipOfDescriptors(input:output:)'
 49 |                 )
 50 |             }
 51 |             .withPipes(
    |              |- warning: 'withPipes(inputDescriptor:outputDescriptor:)' is deprecated: renamed to 'takingOwnershipOfDescriptors(input:output:)'
    |              `- note: use 'takingOwnershipOfDescriptors(input:output:)' instead
 52 |                 inputDescriptor: dup(processToChannel.fileHandleForReading.fileDescriptor),
 53 |                 outputDescriptor: dup(deadPipe.fileHandleForWriting.fileDescriptor)
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:55:33: warning: 'init(descriptor:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
 53 |                 outputDescriptor: dup(deadPipe.fileHandleForWriting.fileDescriptor)
 54 |             )
 55 |         let processOutputPipe = NIOFileHandle(descriptor: dup(processToChannel.fileHandleForWriting.fileDescriptor))
    |                                 `- warning: 'init(descriptor:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
 56 |         processToChannel.fileHandleForReading.closeFile()
 57 |         processToChannel.fileHandleForWriting.closeFile()
[1552/1561] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner.swift
/host/spi-builder-workspace/Sources/MultiNodeTestKitRunner/boot+MultiNodeTestKitRunner.swift:148:25: warning: variable 'reason' was never used; consider replacing with '_' or removing it
146 |                 switch result {
147 |                 case .failure(let error as MultiNodeProgramError):
148 |                     var reason: String = "MultiNode test failed, output was dumped."
    |                         `- warning: variable 'reason' was never used; consider replacing with '_' or removing it
149 |                     for line in error.completeOutput {
150 |                         log("[\(nodeName)](\(multiNodeTest.testName)) \(line)")
[1553/1562] Wrapping AST for MultiNodeTestKitRunner for debugging
[1554/1562] Write Objects.LinkFileList
[1556/1562] Compiling DistributedActorsTestKit ClusteredActorSystemsXCTestCase.swift
[1557/1562] Compiling DistributedActorsTestKit DistributedActor+Assertions.swift
[1558/1562] Compiling DistributedActorsTestKit Data+Testing.swift
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/InspectKit.swift:30:14: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 28 |
 29 |         let task = Process()
 30 |         task.launchPath = cmd
    |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |              `- note: use 'executableURL' instead
 31 |         task.arguments = args
 32 |
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/InspectKit.swift:38:14: warning: 'launch()' is deprecated: renamed to 'run'
 36 |         task.standardError = errPipe
 37 |
 38 |         task.launch()
    |              |- warning: 'launch()' is deprecated: renamed to 'run'
    |              `- note: use 'run' instead
 39 |
 40 |         let outData = outPipe.fileHandleForReading.readDataToEndOfFile()
[1559/1562] Compiling DistributedActorsTestKit InspectKit.swift
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/InspectKit.swift:30:14: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 28 |
 29 |         let task = Process()
 30 |         task.launchPath = cmd
    |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |              `- note: use 'executableURL' instead
 31 |         task.arguments = args
 32 |
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/InspectKit.swift:38:14: warning: 'launch()' is deprecated: renamed to 'run'
 36 |         task.standardError = errPipe
 37 |
 38 |         task.launch()
    |              |- warning: 'launch()' is deprecated: renamed to 'run'
    |              `- note: use 'run' instead
 39 |
 40 |         let outData = outPipe.fileHandleForReading.readDataToEndOfFile()
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/LogCapture.swift:195:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
193 | // MARK: LogCapture LogHandler
194 |
195 | struct LogCaptureLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
196 |     let label: String
197 |     let capture: LogCapture
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:213:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
137 |     ///     - function: The function the log line was emitted from.
138 |     ///     - line: The line the log message was emitted from.
139 |     func log(
    |          `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
140 |         level: Logger.Level,
141 |         message: Logger.Message,
    :
211 | extension LogHandler {
212 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
213 |     public func log(
    |                 `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
214 |         level: Logger.Level,
215 |         message: Logger.Message,
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/ShouldMatchers.swift:36:15: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 24 | private let isTty = isatty(fileno(stdin)) == 0
 25 |
 26 | public struct TestMatchers<T> {
    |                            `- note: 'T' previously declared here
 27 |     private let it: T
 28 |
    :
 34 |     }
 35 |
 36 |     func toBe<T>(_ expected: T.Type) {
    |               `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 37 |         if !(self.it is T) {
 38 |             let error = self.callSite.notEqualError(got: self.it, expected: expected)
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/LogCapture.swift:195:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
193 | // MARK: LogCapture LogHandler
194 |
195 | struct LogCaptureLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation
196 |     let label: String
197 |     let capture: LogCapture
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:213:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
137 |     ///     - function: The function the log line was emitted from.
138 |     ///     - line: The line the log message was emitted from.
139 |     func log(
    |          `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
140 |         level: Logger.Level,
141 |         message: Logger.Message,
    :
211 | extension LogHandler {
212 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
213 |     public func log(
    |                 `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
214 |         level: Logger.Level,
215 |         message: Logger.Message,
/host/spi-builder-workspace/Sources/DistributedActorsTestKit/ShouldMatchers.swift:36:15: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 24 | private let isTty = isatty(fileno(stdin)) == 0
 25 |
 26 | public struct TestMatchers<T> {
    |                            `- note: 'T' previously declared here
 27 |     private let it: T
 28 |
    :
 34 |     }
 35 |
 36 |     func toBe<T>(_ expected: T.Type) {
    |               `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 37 |         if !(self.it is T) {
 38 |             let error = self.callSite.notEqualError(got: self.it, expected: expected)
[1561/1562] Linking MultiNodeTestKitRunner
BUILD FAILURE 6.0 linux