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.1 for macOS (SPM) on 29 Aug 2025 20:43:29 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64

Build Log

 94 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
 95 |     }
 96 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/DistributedReception.swift:94:16: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 75 | }
 76 |
 77 | struct AnyDistributedReceptionKey: Sendable, Codable, Hashable, CustomStringConvertible {
    |        `- note: add @available attribute to enclosing struct
 78 |     enum CodingKeys: CodingKey {
 79 |         case id
    :
 89 |     }
 90 |
 91 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
 92 |         // Since we don't have the type information here, we can't properly resolve
 93 |         // and the only safe thing to do is to return `deadLetters`.
 94 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
 95 |     }
 96 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/DistributedReception.swift:94:69: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 75 | }
 76 |
 77 | struct AnyDistributedReceptionKey: Sendable, Codable, Hashable, CustomStringConvertible {
    |        `- note: add @available attribute to enclosing struct
 78 |     enum CodingKeys: CodingKey {
 79 |         case id
    :
 89 |     }
 90 |
 91 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
 92 |         // Since we don't have the type information here, we can't properly resolve
 93 |         // and the only safe thing to do is to return `deadLetters`.
 94 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                                                                     |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                     `- note: add 'if #available' version check
 95 |     }
 96 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/DistributedReception.swift:94:69: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 75 | }
 76 |
 77 | struct AnyDistributedReceptionKey: Sendable, Codable, Hashable, CustomStringConvertible {
    |        `- note: add @available attribute to enclosing struct
 78 |     enum CodingKeys: CodingKey {
 79 |         case id
    :
 89 |     }
 90 |
 91 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
 92 |         // Since we don't have the type information here, we can't properly resolve
 93 |         // and the only safe thing to do is to return `deadLetters`.
 94 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                                                                     |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                     `- note: add 'if #available' version check
 95 |     }
 96 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
 37 |     /// INTERNAL API
 38 |     /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
 39 |     public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
    |                  `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
 40 |         public let guest: Guest
 41 |         public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
 72 |     /// INTERNAL API
 73 |     /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
 74 |     public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
    |                  `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
 75 |         public let key: _Reception.Key<Guest>
 76 |         public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
 97 |     /// INTERNAL API
 98 |     /// Subscribe to periodic updates of the specified key
 99 |     public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
    |                  `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 |         public let key: _Reception.Key<Guest>
101 |         public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
    |              `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 |     var _addressableActorRef: _AddressableActorRef { _undefined() }
372 |     var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
    |              `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 |     let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
    |              `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 |     var _key: AnyReceptionKey {
491 |         fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
    |                      `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 |     let key: AnyReceptionKey
551 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:35: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                   |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                   `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:35: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                   |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                   `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:50: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                                  |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                  `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:50: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                                  |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                  `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:53: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                                     |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                     `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:53: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                                     |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                     `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                 `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                 `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:201:63: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
    |                                                               |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                               `- note: add 'if #available' version check
202 |         }
203 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:201:63: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
    |                                                               |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                               `- note: add 'if #available' version check
202 |         }
203 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:325:88: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
323 |         switch type {
324 |         case .actorRefs:
325 |             return ActorPath.actorRefReceptionist.makeRemoteID(on: node, incarnation: .wellKnown)
    |                                                                                        `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
326 |         case .distributedActors:
327 |             let id = ActorPath.distributedActorReceptionist.makeRemoteID(on: node, incarnation: .wellKnown)
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:327:98: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
325 |             return ActorPath.actorRefReceptionist.makeRemoteID(on: node, incarnation: .wellKnown)
326 |         case .distributedActors:
327 |             let id = ActorPath.distributedActorReceptionist.makeRemoteID(on: node, incarnation: .wellKnown)
    |                                                                                                  `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
328 |             id.metadata.wellKnown = ActorPath.distributedActorReceptionist.name
329 |             return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:434:16: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
415 |
416 | // :nodoc:
417 | public struct AnyReceptionKey: ReceptionKeyProtocol, Sendable, Codable, Hashable, CustomStringConvertible {
    |               `- note: add @available attribute to enclosing struct
418 |     enum CodingKeys: CodingKey {
419 |         case id
    :
429 |     }
430 |
431 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
432 |         // Since we don't have the type information here, we can't properly resolve
433 |         // and the only safe thing to do is to return `deadLetters`.
434 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
435 |     }
436 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:434:16: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
415 |
416 | // :nodoc:
417 | public struct AnyReceptionKey: ReceptionKeyProtocol, Sendable, Codable, Hashable, CustomStringConvertible {
    |               `- note: add @available attribute to enclosing struct
418 |     enum CodingKeys: CodingKey {
419 |         case id
    :
429 |     }
430 |
431 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
432 |         // Since we don't have the type information here, we can't properly resolve
433 |         // and the only safe thing to do is to return `deadLetters`.
434 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
435 |     }
436 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:434:69: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
415 |
416 | // :nodoc:
417 | public struct AnyReceptionKey: ReceptionKeyProtocol, Sendable, Codable, Hashable, CustomStringConvertible {
    |               `- note: add @available attribute to enclosing struct
418 |     enum CodingKeys: CodingKey {
419 |         case id
    :
429 |     }
430 |
431 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
432 |         // Since we don't have the type information here, we can't properly resolve
433 |         // and the only safe thing to do is to return `deadLetters`.
434 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                                                                     |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                     `- note: add 'if #available' version check
435 |     }
436 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:434:69: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
415 |
416 | // :nodoc:
417 | public struct AnyReceptionKey: ReceptionKeyProtocol, Sendable, Codable, Hashable, CustomStringConvertible {
    |               `- note: add @available attribute to enclosing struct
418 |     enum CodingKeys: CodingKey {
419 |         case id
    :
429 |     }
430 |
431 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
432 |         // Since we don't have the type information here, we can't properly resolve
433 |         // and the only safe thing to do is to return `deadLetters`.
434 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                                                                     |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                     `- note: add 'if #available' version check
435 |     }
436 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:573:9: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
575 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:573:9: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
575 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:727:10: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:727:10: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:564:91: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
562 |
563 |         do {
564 |             self._id = try ActorPath(root: name).makeLocalID(on: localNode, incarnation: .wellKnown)
    |                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
565 |         } catch {
566 |             fatalError("Illegal Guardian path, as those are only to be created by ClusterSystem startup, considering this fatal.")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:574:10: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
    |          |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |          `- note: add 'if #available' version check
575 |     }
576 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:574:10: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
    |          |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |          `- note: add 'if #available' version check
575 |     }
576 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:574:16: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
    |                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
575 |     }
576 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:574:16: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
    |                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
575 |     }
576 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:700:49: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
    |          `- note: add @available attribute to enclosing instance method
697 |         let children: _Children = self.children
698 |
699 |         var c = context.deeper
700 |         let directive = visit(context, self.ref.asAddressable)
    |                                                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                 `- note: add 'if #available' version check
701 |         switch directive {
702 |         case .continue:
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:700:49: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
    |          `- note: add @available attribute to enclosing instance method
697 |         let children: _Children = self.children
698 |
699 |         var c = context.deeper
700 |         let directive = visit(context, self.ref.asAddressable)
    |                                                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                 `- note: add 'if #available' version check
701 |         switch directive {
702 |         case .continue:
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:728:38: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
    |                                      |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                      `- note: add 'if #available' version check
729 |             fatalError("Expected selector in guardian._resolve()!")
730 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:728:38: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
    |                                      |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                      `- note: add 'if #available' version check
729 |             fatalError("Expected selector in guardian._resolve()!")
730 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:733:67: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
731 |
732 |         if self.name == selector.value {
733 |             return self.children._resolveUntyped(context: context.deeper)
    |                                                                   |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                   `- note: add 'if #available' version check
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:733:67: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
731 |
732 |         if self.name == selector.value {
733 |             return self.children._resolveUntyped(context: context.deeper)
    |                                                                   |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                   `- note: add 'if #available' version check
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:735:28: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
733 |             return self.children._resolveUntyped(context: context.deeper)
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
    |                            |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                            `- note: add 'if #available' version check
736 |         }
737 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:735:28: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
733 |             return self.children._resolveUntyped(context: context.deeper)
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
    |                            |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                            `- note: add 'if #available' version check
736 |         }
737 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:735:48: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
733 |             return self.children._resolveUntyped(context: context.deeper)
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
    |                                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                `- note: add 'if #available' version check
736 |         }
737 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:735:48: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
733 |             return self.children._resolveUntyped(context: context.deeper)
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
    |                                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                `- note: add 'if #available' version check
736 |         }
737 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Protobuf/Serialization.pb.swift:54:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
52 | extension _ProtoManifest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
53 |   public static let protoMessageName: String = "Manifest"
54 |   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.
55 |     1: .same(proto: "serializerID"),
56 |     2: .same(proto: "hint"),
[965/988] Compiling DistributedCluster Serialization.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:345:58: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
343 | extension _ProtoHandshakeOffer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
344 |   static let protoMessageName: String = "HandshakeOffer"
345 |   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.
346 |     1: .same(proto: "version"),
347 |     2: .same(proto: "originNode"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:422:58: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
420 | extension _ProtoHandshakeResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
421 |   static let protoMessageName: String = "HandshakeResponse"
422 |   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.
423 |     1: .same(proto: "accept"),
424 |     2: .same(proto: "reject"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:503:58: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
501 | extension _ProtoHandshakeAccept: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
502 |   static let protoMessageName: String = "HandshakeAccept"
503 |   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.
504 |     1: .same(proto: "version"),
505 |     2: .same(proto: "originNode"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:580:58: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
578 | extension _ProtoHandshakeReject: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
579 |   static let protoMessageName: String = "HandshakeReject"
580 |   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.
581 |     1: .same(proto: "version"),
582 |     2: .same(proto: "originNode"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:665:58: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
663 | extension _ProtoEnvelope: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
664 |   static let protoMessageName: String = "Envelope"
665 |   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.
666 |     1: .same(proto: "recipient"),
667 |     2: .same(proto: "manifest"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:674:49: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
672 |     var _recipient: _ProtoActorID? = nil
673 |     var _manifest: _ProtoManifest? = nil
674 |     var _payload: Data = SwiftProtobuf.Internal.emptyData
    |                                                 `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
675 |
676 |     static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:742:58: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
740 | extension _ProtoSystemEnvelope: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
741 |   static let protoMessageName: String = "SystemEnvelope"
742 |   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.
743 |     1: .same(proto: "sequenceNr"),
744 |     2: .same(proto: "from"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:753:49: warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
751 |     var _from: _ProtoClusterNode? = nil
752 |     var _manifest: _ProtoManifest? = nil
753 |     var _payload: Data = SwiftProtobuf.Internal.emptyData
    |                                                 `- warning: 'emptyData' is deprecated: Internal.emptyData isn't used any longer in newer versions of the generator. Generate code with a version later than 1.10.2 to get performance improvements. See https://github.com/apple/swift-protobuf/pull/1028 for more information.
754 |
755 |     static let defaultInstance = _StorageClass()
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:827:58: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
825 | extension _ProtoSystemAck: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
826 |   static let protoMessageName: String = "SystemAck"
827 |   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.
828 |     1: .same(proto: "sequenceNr"),
829 |     2: .same(proto: "from"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Protobuf/WireProtocol.pb.swift:896:58: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
894 | extension _ProtoProtocolVersion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
895 |   static let protoMessageName: String = "ProtocolVersion"
896 |   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.
897 |     1: .same(proto: "reserved"),
898 |     2: .same(proto: "major"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/DistributedReception.swift:94:16: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 75 | }
 76 |
 77 | struct AnyDistributedReceptionKey: Sendable, Codable, Hashable, CustomStringConvertible {
    |        `- note: add @available attribute to enclosing struct
 78 |     enum CodingKeys: CodingKey {
 79 |         case id
    :
 89 |     }
 90 |
 91 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
 92 |         // Since we don't have the type information here, we can't properly resolve
 93 |         // and the only safe thing to do is to return `deadLetters`.
 94 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
 95 |     }
 96 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/DistributedReception.swift:94:16: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 75 | }
 76 |
 77 | struct AnyDistributedReceptionKey: Sendable, Codable, Hashable, CustomStringConvertible {
    |        `- note: add @available attribute to enclosing struct
 78 |     enum CodingKeys: CodingKey {
 79 |         case id
    :
 89 |     }
 90 |
 91 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
 92 |         // Since we don't have the type information here, we can't properly resolve
 93 |         // and the only safe thing to do is to return `deadLetters`.
 94 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
 95 |     }
 96 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/DistributedReception.swift:94:69: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 75 | }
 76 |
 77 | struct AnyDistributedReceptionKey: Sendable, Codable, Hashable, CustomStringConvertible {
    |        `- note: add @available attribute to enclosing struct
 78 |     enum CodingKeys: CodingKey {
 79 |         case id
    :
 89 |     }
 90 |
 91 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
 92 |         // Since we don't have the type information here, we can't properly resolve
 93 |         // and the only safe thing to do is to return `deadLetters`.
 94 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                                                                     |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                     `- note: add 'if #available' version check
 95 |     }
 96 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/DistributedReception.swift:94:69: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 75 | }
 76 |
 77 | struct AnyDistributedReceptionKey: Sendable, Codable, Hashable, CustomStringConvertible {
    |        `- note: add @available attribute to enclosing struct
 78 |     enum CodingKeys: CodingKey {
 79 |         case id
    :
 89 |     }
 90 |
 91 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
 92 |         // Since we don't have the type information here, we can't properly resolve
 93 |         // and the only safe thing to do is to return `deadLetters`.
 94 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                                                                     |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                     `- note: add 'if #available' version check
 95 |     }
 96 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:39:18: warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
 37 |     /// INTERNAL API
 38 |     /// When sent to receptionist will register the specified `_ActorRef` under the given `_Reception.Key`
 39 |     public class Register<Guest: _ReceptionistGuest>: _AnyRegister {
    |                  `- warning: class 'Register' must restate inherited '@unchecked Sendable' conformance
 40 |         public let guest: Guest
 41 |         public let key: _Reception.Key<Guest>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:74:18: warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
 72 |     /// INTERNAL API
 73 |     /// Used to lookup `_ActorRef`s for the given `_Reception.Key`
 74 |     public class Lookup<Guest: _ReceptionistGuest>: _Lookup, ListingRequest, CustomStringConvertible {
    |                  `- warning: class 'Lookup' must restate inherited '@unchecked Sendable' conformance
 75 |         public let key: _Reception.Key<Guest>
 76 |         public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:99:18: warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
 97 |     /// INTERNAL API
 98 |     /// Subscribe to periodic updates of the specified key
 99 |     public class Subscribe<Guest: _ReceptionistGuest>: _Subscribe, ListingRequest, CustomStringConvertible {
    |                  `- warning: class 'Subscribe' must restate inherited '@unchecked Sendable' conformance
100 |         public let key: _Reception.Key<Guest>
101 |         public let subscriber: _ActorRef<_Reception.Listing<Guest>>
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:370:14: warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
368 |
369 | /// INTERNAL API
370 | public class _AnyRegister: _ReceptionistMessage, _NotActuallyCodableMessage, CustomStringConvertible {
    |              `- warning: class '_AnyRegister' must restate inherited '@unchecked Sendable' conformance
371 |     var _addressableActorRef: _AddressableActorRef { _undefined() }
372 |     var _key: AnyReceptionKey { _undefined() }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:383:14: warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
381 | }
382 |
383 | public class _Lookup: _ReceptionistMessage, _NotActuallyCodableMessage {
    |              `- warning: class '_Lookup' must restate inherited '@unchecked Sendable' conformance
384 |     let _key: AnyReceptionKey
385 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:489:14: warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
487 | }
488 |
489 | public class _Subscribe: _ReceptionistMessage, _NotActuallyCodableMessage {
    |              `- warning: class '_Subscribe' must restate inherited '@unchecked Sendable' conformance
490 |     var _key: AnyReceptionKey {
491 |         fatalErrorBacktrace("failed \(#function)")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:549:22: warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
547 | }
548 |
549 | internal final class _ReceptionistDelayedListingFlushTick: _ReceptionistMessage, _NotActuallyCodableMessage {
    |                      `- warning: class '_ReceptionistDelayedListingFlushTick' must restate inherited '@unchecked Sendable' conformance
550 |     let key: AnyReceptionKey
551 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:35: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                   |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                   `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:35: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                   |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                   `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:50: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                                  |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                  `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:50: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                                  |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                  `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:53: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                                     |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                     `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:53: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                                                     |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                     `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                 `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:200:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
    |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                 `- note: add 'if #available' version check
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
202 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:201:63: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
    |                                                               |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                               `- note: add 'if #available' version check
202 |         }
203 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:201:63: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
133 |
134 |     /// Storage container for a receptionist's registrations and subscriptions
135 |     internal final class Storage {
    |                          `- note: add @available attribute to enclosing class
136 |         internal var _registrations: [AnyReceptionKey: Set<_AddressableActorRef>] = [:]
137 |         internal var _subscriptions: [AnyReceptionKey: Set<AnySubscribe>] = [:]
    :
197 |         // FIXME: improve this to always pass around _AddressableActorRef rather than just address (in receptionist Subscribe message), remove this trick then
198 |         /// - Returns: set of keys that this actor was REGISTERED under, and thus listings associated with it should be updated
199 |         func removeFromKeyMappings(id: ActorID) -> RefMappingRemovalResult {
    |              `- note: add @available attribute to enclosing instance method
200 |             let equalityHackRef = _ActorRef<Never>(.deadLetters(.init(Logger(label: ""), id: id, system: nil)))
201 |             return self.removeFromKeyMappings(equalityHackRef.asAddressable)
    |                                                               |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                               `- note: add 'if #available' version check
202 |         }
203 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:325:88: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
323 |         switch type {
324 |         case .actorRefs:
325 |             return ActorPath.actorRefReceptionist.makeRemoteID(on: node, incarnation: .wellKnown)
    |                                                                                        `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
326 |         case .distributedActors:
327 |             let id = ActorPath.distributedActorReceptionist.makeRemoteID(on: node, incarnation: .wellKnown)
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:327:98: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
325 |             return ActorPath.actorRefReceptionist.makeRemoteID(on: node, incarnation: .wellKnown)
326 |         case .distributedActors:
327 |             let id = ActorPath.distributedActorReceptionist.makeRemoteID(on: node, incarnation: .wellKnown)
    |                                                                                                  `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
328 |             id.metadata.wellKnown = ActorPath.distributedActorReceptionist.name
329 |             return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:434:16: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
415 |
416 | // :nodoc:
417 | public struct AnyReceptionKey: ReceptionKeyProtocol, Sendable, Codable, Hashable, CustomStringConvertible {
    |               `- note: add @available attribute to enclosing struct
418 |     enum CodingKeys: CodingKey {
419 |         case id
    :
429 |     }
430 |
431 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
432 |         // Since we don't have the type information here, we can't properly resolve
433 |         // and the only safe thing to do is to return `deadLetters`.
434 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
435 |     }
436 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:434:16: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
415 |
416 | // :nodoc:
417 | public struct AnyReceptionKey: ReceptionKeyProtocol, Sendable, Codable, Hashable, CustomStringConvertible {
    |               `- note: add @available attribute to enclosing struct
418 |     enum CodingKeys: CodingKey {
419 |         case id
    :
429 |     }
430 |
431 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
432 |         // Since we don't have the type information here, we can't properly resolve
433 |         // and the only safe thing to do is to return `deadLetters`.
434 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
435 |     }
436 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:434:69: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
415 |
416 | // :nodoc:
417 | public struct AnyReceptionKey: ReceptionKeyProtocol, Sendable, Codable, Hashable, CustomStringConvertible {
    |               `- note: add @available attribute to enclosing struct
418 |     enum CodingKeys: CodingKey {
419 |         case id
    :
429 |     }
430 |
431 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
432 |         // Since we don't have the type information here, we can't properly resolve
433 |         // and the only safe thing to do is to return `deadLetters`.
434 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                                                                     |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                     `- note: add 'if #available' version check
435 |     }
436 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Receptionist/Receptionist.swift:434:69: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
415 |
416 | // :nodoc:
417 | public struct AnyReceptionKey: ReceptionKeyProtocol, Sendable, Codable, Hashable, CustomStringConvertible {
    |               `- note: add @available attribute to enclosing struct
418 |     enum CodingKeys: CodingKey {
419 |         case id
    :
429 |     }
430 |
431 |     func resolve(system: ClusterSystem, id: ActorID) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
432 |         // Since we don't have the type information here, we can't properly resolve
433 |         // and the only safe thing to do is to return `deadLetters`.
434 |         system.personalDeadLetters(type: Never.self, recipient: id).asAddressable
    |                                                                     |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                     `- note: add 'if #available' version check
435 |     }
436 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:573:9: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
575 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:573:9: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
575 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:727:10: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:727:10: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:564:91: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
562 |
563 |         do {
564 |             self._id = try ActorPath(root: name).makeLocalID(on: localNode, incarnation: .wellKnown)
    |                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
565 |         } catch {
566 |             fatalError("Illegal Guardian path, as those are only to be created by ClusterSystem startup, considering this fatal.")
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:574:10: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
    |          |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |          `- note: add 'if #available' version check
575 |     }
576 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:574:10: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
    |          |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |          `- note: add 'if #available' version check
575 |     }
576 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:574:16: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
    |                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
575 |     }
576 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:574:16: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
532 | /// Represents the an "top level" actor which is the parent of all actors spawned on by the system itself
533 | /// (unlike actors spawned from within other actors, by using `context._spawn`).
534 | public class _Guardian {
    |              `- note: add @available attribute to enclosing class
535 |     @usableFromInline
536 |     let _id: ActorID
    :
571 |     }
572 |
573 |     var ref: _ActorRef<Never> {
    |         `- note: add @available attribute to enclosing property
574 |         .init(.guardian(self))
    |                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                `- note: add 'if #available' version check
575 |     }
576 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:700:49: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
    |          `- note: add @available attribute to enclosing instance method
697 |         let children: _Children = self.children
698 |
699 |         var c = context.deeper
700 |         let directive = visit(context, self.ref.asAddressable)
    |                                                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                 `- note: add 'if #available' version check
701 |         switch directive {
702 |         case .continue:
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:700:49: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
    |          `- note: add @available attribute to enclosing instance method
697 |         let children: _Children = self.children
698 |
699 |         var c = context.deeper
700 |         let directive = visit(context, self.ref.asAddressable)
    |                                                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                 `- note: add 'if #available' version check
701 |         switch directive {
702 |         case .continue:
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:728:38: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
    |                                      |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                      `- note: add 'if #available' version check
729 |             fatalError("Expected selector in guardian._resolve()!")
730 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:728:38: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
    |                                      |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                      `- note: add 'if #available' version check
729 |             fatalError("Expected selector in guardian._resolve()!")
730 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:733:67: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
731 |
732 |         if self.name == selector.value {
733 |             return self.children._resolveUntyped(context: context.deeper)
    |                                                                   |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                   `- note: add 'if #available' version check
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:733:67: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
731 |
732 |         if self.name == selector.value {
733 |             return self.children._resolveUntyped(context: context.deeper)
    |                                                                   |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                                   `- note: add 'if #available' version check
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:735:28: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
733 |             return self.children._resolveUntyped(context: context.deeper)
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
    |                            |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                            `- note: add 'if #available' version check
736 |         }
737 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:735:28: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
733 |             return self.children._resolveUntyped(context: context.deeper)
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
    |                            |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                            `- note: add 'if #available' version check
736 |         }
737 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:735:48: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
733 |             return self.children._resolveUntyped(context: context.deeper)
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
    |                                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                `- note: add 'if #available' version check
736 |         }
737 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Refs.swift:735:48: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
693 | }
694 |
695 | extension _Guardian: _ActorTreeTraversable {
    | `- note: add @available attribute to enclosing extension
696 |     func _traverse<T>(context: _TraversalContext<T>, _ visit: (_TraversalContext<T>, _AddressableActorRef) -> _TraversalDirective<T>) -> _TraversalResult<T> {
697 |         let children: _Children = self.children
    :
725 |     }
726 |
727 |     func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
    |          `- note: add @available attribute to enclosing instance method
728 |         guard let selector = context.selectorSegments.first else {
729 |             fatalError("Expected selector in guardian._resolve()!")
    :
733 |             return self.children._resolveUntyped(context: context.deeper)
734 |         } else {
735 |             return context.personalDeadLetters.asAddressable
    |                                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
    |                                                `- note: add 'if #available' version check
736 |         }
737 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Protobuf/Serialization.pb.swift:54:65: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin.
52 | extension _ProtoManifest: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
53 |   public static let protoMessageName: String = "Manifest"
54 |   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.
55 |     1: .same(proto: "serializerID"),
56 |     2: .same(proto: "hint"),
[966/988] Compiling DistributedCluster VersionVector.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[967/988] Compiling DistributedCluster Association.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[968/988] Compiling DistributedCluster FaultyNetworkSimulatingHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[969/988] Compiling DistributedCluster Cluster+Event.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[970/988] Compiling DistributedCluster Cluster+Member.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[971/988] Compiling DistributedCluster Cluster+Membership.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[972/988] Compiling DistributedCluster ClusterControl.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[973/988] Compiling DistributedCluster ClusterEventStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[974/988] Compiling DistributedCluster ClusterShell+LeaderActions.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[975/988] Compiling DistributedCluster ClusterShell+Logging.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[976/988] Compiling DistributedCluster ClusterShell.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[977/988] Compiling DistributedCluster ClusterShellState.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[978/988] Compiling DistributedCluster DiscoveryShell.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[979/988] Compiling DistributedCluster DistributedNodeDeathWatcher.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[980/988] Compiling DistributedCluster DowningSettings.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[981/988] Compiling DistributedCluster DowningStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[982/988] Compiling DistributedCluster TimeoutBasedDowningStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:46:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 26 |     func tracelog(
 27 |         _ type: TraceLogType, message: Any,
 28 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 29 |     ) {
 30 |         let level: Logger.Level?
    :
 44 |                 level: level,
 45 |                 "[tracelog:cluster] \(type.description)(\(self.settings.endpoint.port)): \(message)",
 46 |                 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
 47 |             )
 48 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell+Logging.swift:79:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 71 |     func tracelog(
 72 |         _ context: _ActorContext<ClusterShell.Message>, _ type: TraceLogType, message: Any,
 73 |         file: String = #filePath, function: String = #function, line: UInt = #line
    |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 74 |     ) {
 75 |         if let level = context.system.settings.traceLogLevel {
    :
 77 |                 level: level,
 78 |                 "[tracelog:cluster] \(type.description): \(message)",
 79 |                 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
 80 |             )
 81 |         }
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1316:79: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1314 | extension ActorID {
1315 |     static func _clusterShell(on node: Cluster.Node) -> ActorID {
1316 |         let id = ActorPath._clusterShell.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                               `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1317 |         // id.metadata.wellKnown = "$cluster"
1318 |         return id
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/ClusterShell.swift:1322:80: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1320 |
1321 |     static func _clusterGossip(on node: Cluster.Node) -> ActorID {
1322 |         let id = ActorPath._clusterGossip.makeRemoteID(on: node, incarnation: .wellKnown)
     |                                                                                `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely
1323 |         // id.metadata.wellKnown = "$gossip"
1324 |         return id
[983/1007] Emitting module it_Clustered_swim_suspension_reachability
[984/1007] Compiling it_Clustered_swim_suspension_reachability main.swift
[985/1007] Compiling MultiNodeTestKit MultiNodeTestSettings.swift
[986/1007] Compiling MultiNodeTestKit MultiNodeTestKit.swift
[986/1007] Write Objects.LinkFileList
[988/1007] Compiling MultiNodeTestKit MultiNodeTestKit+Control.swift
[989/1007] Emitting module MultiNodeTestKit
[990/1007] Compiling MultiNodeTestKit MultiNodeTestConductor.swift
/Users/admin/builder/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)
[991/1011] Compiling DistributedActorsMultiNodeTests MultiNode+ClusterSingletonTests.swift
[992/1011] Emitting module DistributedActorsMultiNodeTests
[993/1011] Compiling DistributedActorsMultiNodeTests MultiNode+MultiNodeConductorTests.swift
[994/1011] Compiling DistributedActorsMultiNodeTests MultiNode+ReceptionistTests.swift
[995/1021] Compiling MultiNodeTestKitRunner Time.swift
[996/1021] Compiling MultiNodeTestKitRunner OutputGrepper.swift
/Users/admin/builder/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,
/Users/admin/builder/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
/Users/admin/builder/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)
/Users/admin/builder/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()
[997/1021] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner+Exec.swift
/Users/admin/builder/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
[998/1021] Compiling MultiNodeTestKitRunner Terminal+Rainbow.swift
[999/1021] Compiling MultiNodeTestKitRunner Process+Extensions.swift
[1000/1021] Compiling MultiNodeTestKitRunner MultiNode+LogCapture.swift
/Users/admin/builder/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
/Users/admin/builder/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,
[1001/1021] Emitting module MultiNodeTestKitRunner
/Users/admin/builder/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
/Users/admin/builder/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,
[1002/1021] Compiling MultiNodeTestKitRunner NaiveLogger.swift
[1003/1021] Compiling MultiNodeTestKitRunner MultiNode+TestSuites.swift
[1004/1021] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner+Test.swift
/Users/admin/builder/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; 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; this is an error in the Swift 6 language mode
121 |         }
122 |
[1005/1022] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner.swift
/Users/admin/builder/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)")
[1005/1022] Write Objects.LinkFileList
[1006/1022] Linking it_Clustered_swim_suspension_reachability
[1007/1022] Applying it_Clustered_swim_suspension_reachability
[1008/1022] Linking MultiNodeTestKitRunner
[1009/1022] Applying MultiNodeTestKitRunner
[1011/1022] Compiling DistributedActorsTestKit TestProbes+Receptionist.swift
/Users/admin/builder/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.pinfo.file:1:1: note: 'file' declared here
1 | file: StaticString
  | `- note: 'file' declared here
[1012/1023] Compiling DistributedActorsTestKit ShouldMatchers.swift
/Users/admin/builder/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)
[1013/1023] Compiling DistributedActorsTestKit Task+Testing.swift
/Users/admin/builder/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 | }
[1014/1023] Compiling DistributedActorsTestKit TestProbes.swift
/Users/admin/builder/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 |     }
[1015/1023] Compiling DistributedActorsTestKit SingleClusterSystemXCTestCase.swift
[1016/1023] Compiling DistributedActorsTestKit ClusteredActorSystemsXCTestCase.swift
[1017/1023] Compiling DistributedActorsTestKit DistributedActor+Assertions.swift
[1018/1023] Compiling DistributedActorsTestKit Data+Testing.swift
[1019/1023] Compiling DistributedActorsTestKit InspectKit.swift
[1020/1023] Compiling DistributedActorsTestKit ActorTestKit.swift
[1021/1023] Compiling DistributedActorsTestKit ByteBuffer+Testing.swift
[1022/1023] Compiling DistributedActorsTestKit LogCapture.swift
/Users/admin/builder/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
/Users/admin/builder/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,
[1023/1023] Emitting module DistributedActorsTestKit
/Users/admin/builder/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
/Users/admin/builder/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,
/Users/admin/builder/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)
/Users/admin/builder/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 |     }
BUILD FAILURE 6.1 macosSpm