The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Supabase, reference main (ad031c), with Swift 6.0 for Linux on 3 May 2025 10:30:25 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

116 |     public static let defaults = Options(events: [
    |                       |- warning: static property 'defaults' is not concurrency-safe because non-'Sendable' type 'Presence.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |       .state: "presence_state",
118 |       .diff: "presence_diff",
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Push.swift:26:28: warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
 24 | public class Push {
 25 |   /// The channel sending the Push
 26 |   public weak var channel: RealtimeChannel?
    |                            `- warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
 27 |
 28 |   /// The event, for example `phx_join`
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Push.swift:65:14: warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
 63 |   /// - parameter timeout: Optional. The push timeout. Default is 10.0s
 64 |   init(
 65 |     channel: RealtimeChannel,
    |              `- warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
 66 |     event: String,
 67 |     payload: Payload = [:],
/host/spi-builder-workspace/Sources/Realtime/Deprecated/TimeoutTimer.swift:98:14: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 | class TimerQueue {
 97 |   // Can be overriden in tests
 98 |   static var main = TimerQueue()
    |              |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |   func queue(timeInterval: TimeInterval, execute: DispatchWorkItem) {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Presence.swift:116:23: warning: static property 'defaults' is not concurrency-safe because non-'Sendable' type 'Presence.Options' may have shared mutable state; this is an error in the Swift 6 language mode
109 |   ///     let options = Options(events: [.state: "my_state", .diff: "my_diff"])
110 |   ///     let presence = Presence(channel, opts: options)
111 |   public struct Options {
    |                 `- note: consider making struct 'Options' conform to the 'Sendable' protocol
112 |     let events: [Events: String]
113 |
114 |     /// Default set of Options used when creating Presence. Uses the
115 |     /// phoenix events "presence_state" and "presence_diff"
116 |     public static let defaults = Options(events: [
    |                       |- warning: static property 'defaults' is not concurrency-safe because non-'Sendable' type 'Presence.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |       .state: "presence_state",
118 |       .diff: "presence_diff",
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:1007:11: warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1005 |
1006 | // ----------------------------------------------------------------------
1007 | extension RealtimeChannel {
     |           `- warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1008 |   /// - return: True if the RealtimeChannel has been closed
1009 |   public var isClosed: Bool {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/TimeoutTimer.swift:98:14: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 | class TimerQueue {
 97 |   // Can be overriden in tests
 98 |   static var main = TimerQueue()
    |              |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |   func queue(timeInterval: TimeInterval, execute: DispatchWorkItem) {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:381:36: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 379 |     var accessTokenPayload: Payload = [:]
 380 |     var config: Payload = [
 381 |       "postgres_changes": bindings.value["postgres_changes"]?.map(\.filter) ?? [],
     |                                    `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 382 |     ]
 383 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:408:52: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 406 |         }
 407 |
 408 |         let clientPostgresBindings = self.bindings.value["postgres_changes"] ?? []
     |                                                    `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 409 |         let bindingsCount = clientPostgresBindings.count
 410 |         var newPostgresBindings: [Binding] = []
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:446:36: warning: capture of 'newPostgresBindings' with non-sendable type '[Binding]' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 444 |
 445 |         self.bindings.withValue { [newPostgresBindings] in
 446 |           $0["postgres_changes"] = newPostgresBindings
     |                                    `- warning: capture of 'newPostgresBindings' with non-sendable type '[Binding]' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 447 |         }
 448 |         callback?(.subscribed, nil)
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:647:50: warning: capture of 'filter' with non-sendable type 'ChannelFilter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  36 | }
  37 |
  38 | public struct ChannelFilter {
     |               `- note: consider making struct 'ChannelFilter' conform to the 'Sendable' protocol
  39 |   public var event: String?
  40 |   public var schema: String?
     :
 645 |     bindings.withValue {
 646 |       $0[type.lowercased(), default: []].append(
 647 |         Binding(type: type.lowercased(), filter: filter.asDictionary, callback: delegated, id: nil)
     |                                                  `- warning: capture of 'filter' with non-sendable type 'ChannelFilter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 648 |       )
 649 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:647:81: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 645 |     bindings.withValue {
 646 |       $0[type.lowercased(), default: []].append(
 647 |         Binding(type: type.lowercased(), filter: filter.asDictionary, callback: delegated, id: nil)
     |                                                                                 `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 648 |       )
 649 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:919:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 917 |
 918 |     let bindings: [Binding] = if ["insert", "update", "delete"].contains(typeLower) {
 919 |       self.bindings.value["postgres_changes", default: []].filter { bind in
     |                     `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 920 |         bind.filter["event"] == "*" || bind.filter["event"] == typeLower
 921 |       }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:923:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 921 |       }
 922 |     } else {
 923 |       self.bindings.value[typeLower, default: []].filter { bind in
     |                     `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 924 |         if ["broadcast", "presence", "postgres_changes"].contains(typeLower) {
 925 |           let bindEvent = bind.filter["event"]?.lowercased()
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:48:21: warning: static property 'encode' is not concurrency-safe because non-'Sendable' type '(Any) -> Data' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Default encode function, utilizing JSONSerialization.data
 48 |   public static let encode: (Any) -> Data = { json in
    |                     |- warning: static property 'encode' is not concurrency-safe because non-'Sendable' type '(Any) -> Data' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'encode' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     try! JSONSerialization
 50 |       .data(
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:57:21: warning: static property 'decode' is not concurrency-safe because non-'Sendable' type '(Data) -> Any?' may have shared mutable state; this is an error in the Swift 6 language mode
 55 |
 56 |   /// Default decode function, utilizing JSONSerialization.jsonObject
 57 |   public static let decode: (Data) -> Any? = { data in
    |                     |- warning: static property 'decode' is not concurrency-safe because non-'Sendable' type '(Data) -> Any?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'decode' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     guard
 59 |       let json =
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:36:21: warning: static property 'reconnectSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
 34 |
 35 |   /// Default reconnect algorithm for the socket
 36 |   public static let reconnectSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- warning: static property 'reconnectSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'reconnectSteppedBackOff' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     tries > 9 ? 5.0 : [0.01, 0.05, 0.1, 0.15, 0.2, 0.25, 0.5, 1.0, 2.0][tries - 1]
 38 |   }
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:41:21: warning: static property 'rejoinSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
 39 |
 40 |   /** Default rejoin algorithm for individual channels */
 41 |   public static let rejoinSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- warning: static property 'rejoinSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rejoinSteppedBackOff' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |     tries > 3 ? 10 : [1, 2, 5][tries - 1]
 43 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1009:11: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1007 |
1008 | // ----------------------------------------------------------------------
1009 | extension RealtimeClient {
     |           `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1010 |   public enum CloseCode: Int {
1011 |     case abnormal = 999
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1024:11: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1022 |
1023 | // ----------------------------------------------------------------------
1024 | extension RealtimeClient {
     |           `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1025 |   /// Indicates the different closure states a socket can be in.
1026 |   enum CloseStatus {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:369:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 367 |     // Since the connection's delegate was nil'd out, inform all state
 368 |     // callbacks that the connection has closed
 369 |     stateChangeCallbacks.close.value.forEach { $0.callback.call((code.rawValue, reason)) }
     |                                `- warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 370 |     callback?()
 371 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:410:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 408 |
 409 |     return stateChangeCallbacks.open.withValue { [delegated] in
 410 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 411 |     }
 412 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:410:29: warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 408 |
 409 |     return stateChangeCallbacks.open.withValue { [delegated] in
 410 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 411 |     }
 412 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:453:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 451 |
 452 |     return stateChangeCallbacks.open.withValue { [delegated] in
 453 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 454 |     }
 455 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:453:29: warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 451 |
 452 |     return stateChangeCallbacks.open.withValue { [delegated] in
 453 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 454 |     }
 455 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:488:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 486 |
 487 |     return stateChangeCallbacks.close.withValue { [delegated] in
 488 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 489 |     }
 490 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:488:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 486 |
 487 |     return stateChangeCallbacks.close.withValue { [delegated] in
 488 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 489 |     }
 490 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:531:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 529 |
 530 |     return stateChangeCallbacks.close.withValue { [delegated] in
 531 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 532 |     }
 533 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:531:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 529 |
 530 |     return stateChangeCallbacks.close.withValue { [delegated] in
 531 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 532 |     }
 533 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:551:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 549 |
 550 |     return stateChangeCallbacks.error.withValue { [delegated] in
 551 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 552 |     }
 553 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:551:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 549 |
 550 |     return stateChangeCallbacks.error.withValue { [delegated] in
 551 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 552 |     }
 553 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:575:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 573 |
 574 |     return stateChangeCallbacks.error.withValue { [delegated] in
 575 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 576 |     }
 577 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:575:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 573 |
 574 |     return stateChangeCallbacks.error.withValue { [delegated] in
 575 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 576 |     }
 577 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:596:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 594 |
 595 |     return stateChangeCallbacks.message.withValue { [delegated] in
 596 |       append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 597 |     }
 598 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:596:24: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 594 |
 595 |     return stateChangeCallbacks.message.withValue { [delegated] in
 596 |       append(callback: delegated, to: &$0)
     |                        `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 597 |     }
 598 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:620:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 618 |
 619 |     return stateChangeCallbacks.message.withValue { [delegated] in
 620 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 621 |     }
 622 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:620:29: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 618 |
 619 |     return stateChangeCallbacks.message.withValue { [delegated] in
 620 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 621 |     }
 622 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:789:31: warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 787 |
 788 |     // Inform all onOpen callbacks that the Socket has opened
 789 |     stateChangeCallbacks.open.value.forEach { $0.callback.call(response) }
     |                               `- warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 790 |   }
 791 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:807:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 805 |     }
 806 |
 807 |     stateChangeCallbacks.close.value.forEach { $0.callback.call((code, reason)) }
     |                                `- warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 808 |   }
 809 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:817:32: warning: type 'Delegated<(any Error, URLResponse?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 815 |
 816 |     // Inform any state callbacks of the error
 817 |     stateChangeCallbacks.error.value.forEach { $0.callback.call((error, response)) }
     |                                `- warning: type 'Delegated<(any Error, URLResponse?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 818 |   }
 819 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:845:34: warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 843 |
 844 |     // Inform all onMessage callbacks of the message
 845 |     stateChangeCallbacks.message.value.forEach { $0.callback.call(message) }
     |                                  `- warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 846 |   }
 847 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Presence.swift:116:23: warning: static property 'defaults' is not concurrency-safe because non-'Sendable' type 'Presence.Options' may have shared mutable state; this is an error in the Swift 6 language mode
109 |   ///     let options = Options(events: [.state: "my_state", .diff: "my_diff"])
110 |   ///     let presence = Presence(channel, opts: options)
111 |   public struct Options {
    |                 `- note: consider making struct 'Options' conform to the 'Sendable' protocol
112 |     let events: [Events: String]
113 |
114 |     /// Default set of Options used when creating Presence. Uses the
115 |     /// phoenix events "presence_state" and "presence_diff"
116 |     public static let defaults = Options(events: [
    |                       |- warning: static property 'defaults' is not concurrency-safe because non-'Sendable' type 'Presence.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |       .state: "presence_state",
118 |       .diff: "presence_diff",
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:1007:11: warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1005 |
1006 | // ----------------------------------------------------------------------
1007 | extension RealtimeChannel {
     |           `- warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1008 |   /// - return: True if the RealtimeChannel has been closed
1009 |   public var isClosed: Bool {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/TimeoutTimer.swift:98:14: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 | class TimerQueue {
 97 |   // Can be overriden in tests
 98 |   static var main = TimerQueue()
    |              |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |   func queue(timeInterval: TimeInterval, execute: DispatchWorkItem) {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:381:36: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 379 |     var accessTokenPayload: Payload = [:]
 380 |     var config: Payload = [
 381 |       "postgres_changes": bindings.value["postgres_changes"]?.map(\.filter) ?? [],
     |                                    `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 382 |     ]
 383 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:408:52: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 406 |         }
 407 |
 408 |         let clientPostgresBindings = self.bindings.value["postgres_changes"] ?? []
     |                                                    `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 409 |         let bindingsCount = clientPostgresBindings.count
 410 |         var newPostgresBindings: [Binding] = []
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:446:36: warning: capture of 'newPostgresBindings' with non-sendable type '[Binding]' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 444 |
 445 |         self.bindings.withValue { [newPostgresBindings] in
 446 |           $0["postgres_changes"] = newPostgresBindings
     |                                    `- warning: capture of 'newPostgresBindings' with non-sendable type '[Binding]' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 447 |         }
 448 |         callback?(.subscribed, nil)
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:647:50: warning: capture of 'filter' with non-sendable type 'ChannelFilter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  36 | }
  37 |
  38 | public struct ChannelFilter {
     |               `- note: consider making struct 'ChannelFilter' conform to the 'Sendable' protocol
  39 |   public var event: String?
  40 |   public var schema: String?
     :
 645 |     bindings.withValue {
 646 |       $0[type.lowercased(), default: []].append(
 647 |         Binding(type: type.lowercased(), filter: filter.asDictionary, callback: delegated, id: nil)
     |                                                  `- warning: capture of 'filter' with non-sendable type 'ChannelFilter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 648 |       )
 649 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:647:81: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 645 |     bindings.withValue {
 646 |       $0[type.lowercased(), default: []].append(
 647 |         Binding(type: type.lowercased(), filter: filter.asDictionary, callback: delegated, id: nil)
     |                                                                                 `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 648 |       )
 649 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:919:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 917 |
 918 |     let bindings: [Binding] = if ["insert", "update", "delete"].contains(typeLower) {
 919 |       self.bindings.value["postgres_changes", default: []].filter { bind in
     |                     `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 920 |         bind.filter["event"] == "*" || bind.filter["event"] == typeLower
 921 |       }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:923:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 921 |       }
 922 |     } else {
 923 |       self.bindings.value[typeLower, default: []].filter { bind in
     |                     `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 924 |         if ["broadcast", "presence", "postgres_changes"].contains(typeLower) {
 925 |           let bindEvent = bind.filter["event"]?.lowercased()
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:48:21: warning: static property 'encode' is not concurrency-safe because non-'Sendable' type '(Any) -> Data' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Default encode function, utilizing JSONSerialization.data
 48 |   public static let encode: (Any) -> Data = { json in
    |                     |- warning: static property 'encode' is not concurrency-safe because non-'Sendable' type '(Any) -> Data' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'encode' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     try! JSONSerialization
 50 |       .data(
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:57:21: warning: static property 'decode' is not concurrency-safe because non-'Sendable' type '(Data) -> Any?' may have shared mutable state; this is an error in the Swift 6 language mode
 55 |
 56 |   /// Default decode function, utilizing JSONSerialization.jsonObject
 57 |   public static let decode: (Data) -> Any? = { data in
    |                     |- warning: static property 'decode' is not concurrency-safe because non-'Sendable' type '(Data) -> Any?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'decode' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     guard
 59 |       let json =
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:36:21: warning: static property 'reconnectSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
 34 |
 35 |   /// Default reconnect algorithm for the socket
 36 |   public static let reconnectSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- warning: static property 'reconnectSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'reconnectSteppedBackOff' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     tries > 9 ? 5.0 : [0.01, 0.05, 0.1, 0.15, 0.2, 0.25, 0.5, 1.0, 2.0][tries - 1]
 38 |   }
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:41:21: warning: static property 'rejoinSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
 39 |
 40 |   /** Default rejoin algorithm for individual channels */
 41 |   public static let rejoinSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- warning: static property 'rejoinSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rejoinSteppedBackOff' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |     tries > 3 ? 10 : [1, 2, 5][tries - 1]
 43 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1009:11: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1007 |
1008 | // ----------------------------------------------------------------------
1009 | extension RealtimeClient {
     |           `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1010 |   public enum CloseCode: Int {
1011 |     case abnormal = 999
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1024:11: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1022 |
1023 | // ----------------------------------------------------------------------
1024 | extension RealtimeClient {
     |           `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1025 |   /// Indicates the different closure states a socket can be in.
1026 |   enum CloseStatus {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:369:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 367 |     // Since the connection's delegate was nil'd out, inform all state
 368 |     // callbacks that the connection has closed
 369 |     stateChangeCallbacks.close.value.forEach { $0.callback.call((code.rawValue, reason)) }
     |                                `- warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 370 |     callback?()
 371 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:410:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 408 |
 409 |     return stateChangeCallbacks.open.withValue { [delegated] in
 410 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 411 |     }
 412 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:410:29: warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 408 |
 409 |     return stateChangeCallbacks.open.withValue { [delegated] in
 410 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 411 |     }
 412 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:453:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 451 |
 452 |     return stateChangeCallbacks.open.withValue { [delegated] in
 453 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 454 |     }
 455 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:453:29: warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 451 |
 452 |     return stateChangeCallbacks.open.withValue { [delegated] in
 453 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 454 |     }
 455 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:488:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 486 |
 487 |     return stateChangeCallbacks.close.withValue { [delegated] in
 488 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 489 |     }
 490 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:488:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 486 |
 487 |     return stateChangeCallbacks.close.withValue { [delegated] in
 488 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 489 |     }
 490 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:531:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 529 |
 530 |     return stateChangeCallbacks.close.withValue { [delegated] in
 531 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 532 |     }
 533 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:531:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 529 |
 530 |     return stateChangeCallbacks.close.withValue { [delegated] in
 531 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 532 |     }
 533 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:551:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 549 |
 550 |     return stateChangeCallbacks.error.withValue { [delegated] in
 551 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 552 |     }
 553 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:551:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 549 |
 550 |     return stateChangeCallbacks.error.withValue { [delegated] in
 551 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 552 |     }
 553 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:575:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 573 |
 574 |     return stateChangeCallbacks.error.withValue { [delegated] in
 575 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 576 |     }
 577 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:575:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 573 |
 574 |     return stateChangeCallbacks.error.withValue { [delegated] in
 575 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 576 |     }
 577 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:596:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 594 |
 595 |     return stateChangeCallbacks.message.withValue { [delegated] in
 596 |       append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 597 |     }
 598 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:596:24: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 594 |
 595 |     return stateChangeCallbacks.message.withValue { [delegated] in
 596 |       append(callback: delegated, to: &$0)
     |                        `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 597 |     }
 598 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:620:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 618 |
 619 |     return stateChangeCallbacks.message.withValue { [delegated] in
 620 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 621 |     }
 622 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:620:29: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 618 |
 619 |     return stateChangeCallbacks.message.withValue { [delegated] in
 620 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 621 |     }
 622 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:789:31: warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 787 |
 788 |     // Inform all onOpen callbacks that the Socket has opened
 789 |     stateChangeCallbacks.open.value.forEach { $0.callback.call(response) }
     |                               `- warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 790 |   }
 791 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:807:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 805 |     }
 806 |
 807 |     stateChangeCallbacks.close.value.forEach { $0.callback.call((code, reason)) }
     |                                `- warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 808 |   }
 809 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:817:32: warning: type 'Delegated<(any Error, URLResponse?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 815 |
 816 |     // Inform any state callbacks of the error
 817 |     stateChangeCallbacks.error.value.forEach { $0.callback.call((error, response)) }
     |                                `- warning: type 'Delegated<(any Error, URLResponse?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 818 |   }
 819 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:845:34: warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 843 |
 844 |     // Inform all onMessage callbacks of the message
 845 |     stateChangeCallbacks.message.value.forEach { $0.callback.call(message) }
     |                                  `- warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 846 |   }
 847 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
[423/687] Compiling Realtime RealtimeMessage.swift
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Presence.swift:116:23: warning: static property 'defaults' is not concurrency-safe because non-'Sendable' type 'Presence.Options' may have shared mutable state; this is an error in the Swift 6 language mode
109 |   ///     let options = Options(events: [.state: "my_state", .diff: "my_diff"])
110 |   ///     let presence = Presence(channel, opts: options)
111 |   public struct Options {
    |                 `- note: consider making struct 'Options' conform to the 'Sendable' protocol
112 |     let events: [Events: String]
113 |
114 |     /// Default set of Options used when creating Presence. Uses the
115 |     /// phoenix events "presence_state" and "presence_diff"
116 |     public static let defaults = Options(events: [
    |                       |- warning: static property 'defaults' is not concurrency-safe because non-'Sendable' type 'Presence.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |       .state: "presence_state",
118 |       .diff: "presence_diff",
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:1007:11: warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1005 |
1006 | // ----------------------------------------------------------------------
1007 | extension RealtimeChannel {
     |           `- warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1008 |   /// - return: True if the RealtimeChannel has been closed
1009 |   public var isClosed: Bool {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/TimeoutTimer.swift:98:14: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 | class TimerQueue {
 97 |   // Can be overriden in tests
 98 |   static var main = TimerQueue()
    |              |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |   func queue(timeInterval: TimeInterval, execute: DispatchWorkItem) {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:381:36: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 379 |     var accessTokenPayload: Payload = [:]
 380 |     var config: Payload = [
 381 |       "postgres_changes": bindings.value["postgres_changes"]?.map(\.filter) ?? [],
     |                                    `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 382 |     ]
 383 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:408:52: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 406 |         }
 407 |
 408 |         let clientPostgresBindings = self.bindings.value["postgres_changes"] ?? []
     |                                                    `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 409 |         let bindingsCount = clientPostgresBindings.count
 410 |         var newPostgresBindings: [Binding] = []
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:446:36: warning: capture of 'newPostgresBindings' with non-sendable type '[Binding]' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 444 |
 445 |         self.bindings.withValue { [newPostgresBindings] in
 446 |           $0["postgres_changes"] = newPostgresBindings
     |                                    `- warning: capture of 'newPostgresBindings' with non-sendable type '[Binding]' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 447 |         }
 448 |         callback?(.subscribed, nil)
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:647:50: warning: capture of 'filter' with non-sendable type 'ChannelFilter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  36 | }
  37 |
  38 | public struct ChannelFilter {
     |               `- note: consider making struct 'ChannelFilter' conform to the 'Sendable' protocol
  39 |   public var event: String?
  40 |   public var schema: String?
     :
 645 |     bindings.withValue {
 646 |       $0[type.lowercased(), default: []].append(
 647 |         Binding(type: type.lowercased(), filter: filter.asDictionary, callback: delegated, id: nil)
     |                                                  `- warning: capture of 'filter' with non-sendable type 'ChannelFilter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 648 |       )
 649 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:647:81: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 645 |     bindings.withValue {
 646 |       $0[type.lowercased(), default: []].append(
 647 |         Binding(type: type.lowercased(), filter: filter.asDictionary, callback: delegated, id: nil)
     |                                                                                 `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 648 |       )
 649 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:919:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 917 |
 918 |     let bindings: [Binding] = if ["insert", "update", "delete"].contains(typeLower) {
 919 |       self.bindings.value["postgres_changes", default: []].filter { bind in
     |                     `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 920 |         bind.filter["event"] == "*" || bind.filter["event"] == typeLower
 921 |       }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:923:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 921 |       }
 922 |     } else {
 923 |       self.bindings.value[typeLower, default: []].filter { bind in
     |                     `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 924 |         if ["broadcast", "presence", "postgres_changes"].contains(typeLower) {
 925 |           let bindEvent = bind.filter["event"]?.lowercased()
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:48:21: warning: static property 'encode' is not concurrency-safe because non-'Sendable' type '(Any) -> Data' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Default encode function, utilizing JSONSerialization.data
 48 |   public static let encode: (Any) -> Data = { json in
    |                     |- warning: static property 'encode' is not concurrency-safe because non-'Sendable' type '(Any) -> Data' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'encode' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     try! JSONSerialization
 50 |       .data(
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:57:21: warning: static property 'decode' is not concurrency-safe because non-'Sendable' type '(Data) -> Any?' may have shared mutable state; this is an error in the Swift 6 language mode
 55 |
 56 |   /// Default decode function, utilizing JSONSerialization.jsonObject
 57 |   public static let decode: (Data) -> Any? = { data in
    |                     |- warning: static property 'decode' is not concurrency-safe because non-'Sendable' type '(Data) -> Any?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'decode' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     guard
 59 |       let json =
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:36:21: warning: static property 'reconnectSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
 34 |
 35 |   /// Default reconnect algorithm for the socket
 36 |   public static let reconnectSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- warning: static property 'reconnectSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'reconnectSteppedBackOff' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     tries > 9 ? 5.0 : [0.01, 0.05, 0.1, 0.15, 0.2, 0.25, 0.5, 1.0, 2.0][tries - 1]
 38 |   }
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:41:21: warning: static property 'rejoinSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
 39 |
 40 |   /** Default rejoin algorithm for individual channels */
 41 |   public static let rejoinSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- warning: static property 'rejoinSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rejoinSteppedBackOff' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |     tries > 3 ? 10 : [1, 2, 5][tries - 1]
 43 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1009:11: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1007 |
1008 | // ----------------------------------------------------------------------
1009 | extension RealtimeClient {
     |           `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1010 |   public enum CloseCode: Int {
1011 |     case abnormal = 999
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1024:11: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1022 |
1023 | // ----------------------------------------------------------------------
1024 | extension RealtimeClient {
     |           `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1025 |   /// Indicates the different closure states a socket can be in.
1026 |   enum CloseStatus {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:369:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 367 |     // Since the connection's delegate was nil'd out, inform all state
 368 |     // callbacks that the connection has closed
 369 |     stateChangeCallbacks.close.value.forEach { $0.callback.call((code.rawValue, reason)) }
     |                                `- warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 370 |     callback?()
 371 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:410:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 408 |
 409 |     return stateChangeCallbacks.open.withValue { [delegated] in
 410 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 411 |     }
 412 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:410:29: warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 408 |
 409 |     return stateChangeCallbacks.open.withValue { [delegated] in
 410 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 411 |     }
 412 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:453:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 451 |
 452 |     return stateChangeCallbacks.open.withValue { [delegated] in
 453 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 454 |     }
 455 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:453:29: warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 451 |
 452 |     return stateChangeCallbacks.open.withValue { [delegated] in
 453 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 454 |     }
 455 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:488:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 486 |
 487 |     return stateChangeCallbacks.close.withValue { [delegated] in
 488 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 489 |     }
 490 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:488:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 486 |
 487 |     return stateChangeCallbacks.close.withValue { [delegated] in
 488 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 489 |     }
 490 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:531:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 529 |
 530 |     return stateChangeCallbacks.close.withValue { [delegated] in
 531 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 532 |     }
 533 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:531:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 529 |
 530 |     return stateChangeCallbacks.close.withValue { [delegated] in
 531 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 532 |     }
 533 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:551:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 549 |
 550 |     return stateChangeCallbacks.error.withValue { [delegated] in
 551 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 552 |     }
 553 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:551:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 549 |
 550 |     return stateChangeCallbacks.error.withValue { [delegated] in
 551 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 552 |     }
 553 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:575:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 573 |
 574 |     return stateChangeCallbacks.error.withValue { [delegated] in
 575 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 576 |     }
 577 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:575:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 573 |
 574 |     return stateChangeCallbacks.error.withValue { [delegated] in
 575 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 576 |     }
 577 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:596:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 594 |
 595 |     return stateChangeCallbacks.message.withValue { [delegated] in
 596 |       append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 597 |     }
 598 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:596:24: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 594 |
 595 |     return stateChangeCallbacks.message.withValue { [delegated] in
 596 |       append(callback: delegated, to: &$0)
     |                        `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 597 |     }
 598 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:620:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 618 |
 619 |     return stateChangeCallbacks.message.withValue { [delegated] in
 620 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 621 |     }
 622 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:620:29: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 618 |
 619 |     return stateChangeCallbacks.message.withValue { [delegated] in
 620 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 621 |     }
 622 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:789:31: warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 787 |
 788 |     // Inform all onOpen callbacks that the Socket has opened
 789 |     stateChangeCallbacks.open.value.forEach { $0.callback.call(response) }
     |                               `- warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 790 |   }
 791 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:807:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 805 |     }
 806 |
 807 |     stateChangeCallbacks.close.value.forEach { $0.callback.call((code, reason)) }
     |                                `- warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 808 |   }
 809 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:817:32: warning: type 'Delegated<(any Error, URLResponse?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 815 |
 816 |     // Inform any state callbacks of the error
 817 |     stateChangeCallbacks.error.value.forEach { $0.callback.call((error, response)) }
     |                                `- warning: type 'Delegated<(any Error, URLResponse?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 818 |   }
 819 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:845:34: warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 843 |
 844 |     // Inform all onMessage callbacks of the message
 845 |     stateChangeCallbacks.message.value.forEach { $0.callback.call(message) }
     |                                  `- warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 846 |   }
 847 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
[424/687] Compiling Realtime TimeoutTimer.swift
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Presence.swift:116:23: warning: static property 'defaults' is not concurrency-safe because non-'Sendable' type 'Presence.Options' may have shared mutable state; this is an error in the Swift 6 language mode
109 |   ///     let options = Options(events: [.state: "my_state", .diff: "my_diff"])
110 |   ///     let presence = Presence(channel, opts: options)
111 |   public struct Options {
    |                 `- note: consider making struct 'Options' conform to the 'Sendable' protocol
112 |     let events: [Events: String]
113 |
114 |     /// Default set of Options used when creating Presence. Uses the
115 |     /// phoenix events "presence_state" and "presence_diff"
116 |     public static let defaults = Options(events: [
    |                       |- warning: static property 'defaults' is not concurrency-safe because non-'Sendable' type 'Presence.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |       .state: "presence_state",
118 |       .diff: "presence_diff",
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:1007:11: warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1005 |
1006 | // ----------------------------------------------------------------------
1007 | extension RealtimeChannel {
     |           `- warning: 'RealtimeChannel' is deprecated: Use new RealtimeChannelV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1008 |   /// - return: True if the RealtimeChannel has been closed
1009 |   public var isClosed: Bool {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/TimeoutTimer.swift:98:14: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 96 | class TimerQueue {
 97 |   // Can be overriden in tests
 98 |   static var main = TimerQueue()
    |              |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |   func queue(timeInterval: TimeInterval, execute: DispatchWorkItem) {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:381:36: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 379 |     var accessTokenPayload: Payload = [:]
 380 |     var config: Payload = [
 381 |       "postgres_changes": bindings.value["postgres_changes"]?.map(\.filter) ?? [],
     |                                    `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 382 |     ]
 383 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:408:52: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 406 |         }
 407 |
 408 |         let clientPostgresBindings = self.bindings.value["postgres_changes"] ?? []
     |                                                    `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 409 |         let bindingsCount = clientPostgresBindings.count
 410 |         var newPostgresBindings: [Binding] = []
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:446:36: warning: capture of 'newPostgresBindings' with non-sendable type '[Binding]' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 444 |
 445 |         self.bindings.withValue { [newPostgresBindings] in
 446 |           $0["postgres_changes"] = newPostgresBindings
     |                                    `- warning: capture of 'newPostgresBindings' with non-sendable type '[Binding]' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 447 |         }
 448 |         callback?(.subscribed, nil)
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:647:50: warning: capture of 'filter' with non-sendable type 'ChannelFilter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  36 | }
  37 |
  38 | public struct ChannelFilter {
     |               `- note: consider making struct 'ChannelFilter' conform to the 'Sendable' protocol
  39 |   public var event: String?
  40 |   public var schema: String?
     :
 645 |     bindings.withValue {
 646 |       $0[type.lowercased(), default: []].append(
 647 |         Binding(type: type.lowercased(), filter: filter.asDictionary, callback: delegated, id: nil)
     |                                                  `- warning: capture of 'filter' with non-sendable type 'ChannelFilter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 648 |       )
 649 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:647:81: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 645 |     bindings.withValue {
 646 |       $0[type.lowercased(), default: []].append(
 647 |         Binding(type: type.lowercased(), filter: filter.asDictionary, callback: delegated, id: nil)
     |                                                                                 `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 648 |       )
 649 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:919:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 917 |
 918 |     let bindings: [Binding] = if ["insert", "update", "delete"].contains(typeLower) {
 919 |       self.bindings.value["postgres_changes", default: []].filter { bind in
     |                     `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 920 |         bind.filter["event"] == "*" || bind.filter["event"] == typeLower
 921 |       }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:923:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  26 |
  27 | /// Container class of bindings to the channel
  28 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  29 |   let type: String
  30 |   let filter: [String: String]
     :
 921 |       }
 922 |     } else {
 923 |       self.bindings.value[typeLower, default: []].filter { bind in
     |                     `- warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 924 |         if ["broadcast", "presence", "postgres_changes"].contains(typeLower) {
 925 |           let bindEvent = bind.filter["event"]?.lowercased()
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:48:21: warning: static property 'encode' is not concurrency-safe because non-'Sendable' type '(Any) -> Data' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Default encode function, utilizing JSONSerialization.data
 48 |   public static let encode: (Any) -> Data = { json in
    |                     |- warning: static property 'encode' is not concurrency-safe because non-'Sendable' type '(Any) -> Data' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'encode' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     try! JSONSerialization
 50 |       .data(
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:57:21: warning: static property 'decode' is not concurrency-safe because non-'Sendable' type '(Data) -> Any?' may have shared mutable state; this is an error in the Swift 6 language mode
 55 |
 56 |   /// Default decode function, utilizing JSONSerialization.jsonObject
 57 |   public static let decode: (Data) -> Any? = { data in
    |                     |- warning: static property 'decode' is not concurrency-safe because non-'Sendable' type '(Data) -> Any?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'decode' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     guard
 59 |       let json =
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:36:21: warning: static property 'reconnectSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
 34 |
 35 |   /// Default reconnect algorithm for the socket
 36 |   public static let reconnectSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- warning: static property 'reconnectSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'reconnectSteppedBackOff' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     tries > 9 ? 5.0 : [0.01, 0.05, 0.1, 0.15, 0.2, 0.25, 0.5, 1.0, 2.0][tries - 1]
 38 |   }
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Defaults.swift:41:21: warning: static property 'rejoinSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
 39 |
 40 |   /** Default rejoin algorithm for individual channels */
 41 |   public static let rejoinSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- warning: static property 'rejoinSteppedBackOff' is not concurrency-safe because non-'Sendable' type '(Int) -> TimeInterval' (aka '(Int) -> Double') may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rejoinSteppedBackOff' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |     tries > 3 ? 10 : [1, 2, 5][tries - 1]
 43 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1009:11: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1007 |
1008 | // ----------------------------------------------------------------------
1009 | extension RealtimeClient {
     |           `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1010 |   public enum CloseCode: Int {
1011 |     case abnormal = 999
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1024:11: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1022 |
1023 | // ----------------------------------------------------------------------
1024 | extension RealtimeClient {
     |           `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
1025 |   /// Indicates the different closure states a socket can be in.
1026 |   enum CloseStatus {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:369:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 367 |     // Since the connection's delegate was nil'd out, inform all state
 368 |     // callbacks that the connection has closed
 369 |     stateChangeCallbacks.close.value.forEach { $0.callback.call((code.rawValue, reason)) }
     |                                `- warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 370 |     callback?()
 371 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:410:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 408 |
 409 |     return stateChangeCallbacks.open.withValue { [delegated] in
 410 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 411 |     }
 412 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:410:29: warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 408 |
 409 |     return stateChangeCallbacks.open.withValue { [delegated] in
 410 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 411 |     }
 412 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:453:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 451 |
 452 |     return stateChangeCallbacks.open.withValue { [delegated] in
 453 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 454 |     }
 455 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:453:29: warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 451 |
 452 |     return stateChangeCallbacks.open.withValue { [delegated] in
 453 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<URLResponse?, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 454 |     }
 455 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:488:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 486 |
 487 |     return stateChangeCallbacks.close.withValue { [delegated] in
 488 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 489 |     }
 490 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:488:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 486 |
 487 |     return stateChangeCallbacks.close.withValue { [delegated] in
 488 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 489 |     }
 490 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:531:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 529 |
 530 |     return stateChangeCallbacks.close.withValue { [delegated] in
 531 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 532 |     }
 533 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:531:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 529 |
 530 |     return stateChangeCallbacks.close.withValue { [delegated] in
 531 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(Int, String?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 532 |     }
 533 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:551:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 549 |
 550 |     return stateChangeCallbacks.error.withValue { [delegated] in
 551 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 552 |     }
 553 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:551:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 549 |
 550 |     return stateChangeCallbacks.error.withValue { [delegated] in
 551 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 552 |     }
 553 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:575:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 573 |
 574 |     return stateChangeCallbacks.error.withValue { [delegated] in
 575 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 576 |     }
 577 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:575:29: warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 573 |
 574 |     return stateChangeCallbacks.error.withValue { [delegated] in
 575 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<(any Error, URLResponse?), Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 576 |     }
 577 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:596:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 594 |
 595 |     return stateChangeCallbacks.message.withValue { [delegated] in
 596 |       append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 597 |     }
 598 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:596:24: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 594 |
 595 |     return stateChangeCallbacks.message.withValue { [delegated] in
 596 |       append(callback: delegated, to: &$0)
     |                        `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 597 |     }
 598 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:620:7: warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  64 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  65 | )
  66 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  67 |   // ----------------------------------------------------------------------
  68 |
     :
 618 |
 619 |     return stateChangeCallbacks.message.withValue { [delegated] in
 620 |       self.append(callback: delegated, to: &$0)
     |       `- warning: capture of 'self' with non-sendable type 'RealtimeClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 621 |     }
 622 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:620:29: warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 618 |
 619 |     return stateChangeCallbacks.message.withValue { [delegated] in
 620 |       self.append(callback: delegated, to: &$0)
     |                             `- warning: capture of 'delegated' with non-sendable type 'Delegated<RealtimeMessage, Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 621 |     }
 622 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:789:31: warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 787 |
 788 |     // Inform all onOpen callbacks that the Socket has opened
 789 |     stateChangeCallbacks.open.value.forEach { $0.callback.call(response) }
     |                               `- warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 790 |   }
 791 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:807:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 805 |     }
 806 |
 807 |     stateChangeCallbacks.close.value.forEach { $0.callback.call((code, reason)) }
     |                                `- warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 808 |   }
 809 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:817:32: warning: type 'Delegated<(any Error, URLResponse?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 815 |
 816 |     // Inform any state callbacks of the error
 817 |     stateChangeCallbacks.error.value.forEach { $0.callback.call((error, response)) }
     |                                `- warning: type 'Delegated<(any Error, URLResponse?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 818 |   }
 819 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:845:34: warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 843 |
 844 |     // Inform all onMessage callbacks of the message
 845 |     stateChangeCallbacks.message.value.forEach { $0.callback.call(message) }
     |                                  `- warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 846 |   }
 847 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/Delegated.swift:25:15: note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 23 | /// instead of added as a dependency to reduce the number of packages that
 24 | /// ship with SwiftPhoenixClient
 25 | public struct Delegated<Input, Output> {
    |               `- note: consider making generic struct 'Delegated' conform to the 'Sendable' protocol
 26 |   private(set) var callback: ((Input) -> Output?)?
 27 |
[425/688] Compiling v3_pcons.cc
[426/688] Compiling v3_ocsp.cc
[427/688] Compiling v3_int.cc
[428/688] Compiling v3_ncons.cc
[429/688] Compiling v3_lib.cc
[430/688] Compiling v3_info.cc
[431/688] Compiling v3_ia5.cc
[432/688] Compiling v3_genn.cc
[433/688] Compiling v3_extku.cc
[434/688] Compiling v3_enum.cc
[435/688] Compiling v3_crld.cc
[436/688] Compiling v3_cpols.cc
[437/688] Compiling v3_conf.cc
[438/688] Compiling v3_bcons.cc
[439/688] Compiling v3_bitst.cc
[440/688] Compiling v3_alt.cc
[441/688] Compiling v3_akeya.cc
[442/688] Compiling t_x509a.cc
[443/688] Compiling v3_akey.cc
[444/688] Compiling t_x509.cc
[445/688] Compiling t_req.cc
[446/688] Compiling i2d_pr.cc
[447/688] Compiling t_crl.cc
[448/688] Compiling rsa_pss.cc
[449/688] Compiling policy.cc
[450/688] Compiling name_print.cc
[451/688] Compiling by_file.cc
[452/688] Compiling by_dir.cc
[453/688] Compiling asn1_gen.cc
[455/688] Emitting module SwiftSyntax
[455/697] Compiling algorithm.cc
[456/697] Compiling a_sign.cc
[457/697] Compiling a_verify.cc
[458/697] Compiling a_digest.cc
[459/697] Compiling thread_win.cc
[460/697] Compiling trust_token.cc
[461/697] Compiling voprf.cc
[462/697] Compiling pmbtoken.cc
[463/697] Compiling thread.cc
[464/697] Compiling thread_pthread.cc
[465/697] Compiling thread_none.cc
[466/697] Compiling stack.cc
[467/697] Compiling wots.cc
[468/697] Compiling thash.cc
[469/697] Compiling sha512.cc
[470/697] Compiling merkle.cc
[471/697] Compiling siphash.cc
[472/697] Compiling fors.cc
[473/697] Compiling slhdsa.cc
[474/697] Compiling sha256.cc
[475/697] Compiling sha1.cc
[476/697] Compiling rsa_print.cc
[477/697] Compiling rsa_extra.cc
[478/697] Compiling rc4.cc
[479/697] Compiling refcount.cc
[480/697] Compiling rsa_crypt.cc
[481/697] Compiling rsa_asn1.cc
[482/697] Compiling windows.cc
[483/697] Compiling poly1305_arm_asm.S
[484/697] Compiling getentropy.cc
[485/697] Compiling forkunsafe.cc
[486/697] Compiling fork_detect.cc
[487/697] Compiling deterministic.cc
[488/697] Compiling poly1305.cc
[489/697] Compiling poly1305_arm.cc
[490/697] Compiling pool.cc
[491/697] Compiling poly1305_vec.cc
[492/697] Compiling pkcs7.cc
[493/697] Compiling p5_pbev2.cc
[494/697] Compiling pkcs8.cc
[495/697] Compiling pem_xaux.cc
[496/697] Compiling pkcs8_x509.cc
[497/697] Compiling pkcs7_x509.cc
[498/697] Compiling pem_x509.cc
[499/697] Compiling pem_pkey.cc
[500/697] Compiling obj_xref.cc
[501/697] Compiling pem_oth.cc
[502/697] Compiling pem_pk8.cc
[503/697] Compiling pem_lib.cc
[504/697] Compiling pem_info.cc
[505/697] Compiling pem_all.cc
[506/697] Compiling mldsa.cc
[507/697] Compiling obj.cc
[508/697] Compiling md5.cc
[509/697] Compiling mem.cc
[510/697] Compiling md4.cc
[511/697] Compiling fips_shared_support.cc
[512/697] Compiling poly_rq_mul.S
[513/697] Compiling mlkem.cc
[514/697] Compiling lhash.cc
[515/697] Compiling kyber.cc
[516/697] Compiling ex_data.cc
[517/697] Compiling sign.cc
[518/697] Compiling hrss.cc
[519/697] Compiling scrypt.cc
[520/697] Compiling hpke.cc
[521/697] Compiling pbkdf.cc
[522/697] Compiling p_x25519.cc
[523/697] Compiling print.cc
[524/697] Compiling p_x25519_asn1.cc
[525/697] Compiling p_rsa_asn1.cc
[526/697] Compiling p_rsa.cc
[527/697] Compiling p_hkdf.cc
[528/697] Compiling p_ed25519.cc
[529/697] Compiling p_ed25519_asn1.cc
[530/697] Compiling p_ec_asn1.cc
[531/697] Compiling p_dsa_asn1.cc
[532/697] Compiling p_ec.cc
[533/697] Compiling p_dh.cc
[534/697] Compiling p_dh_asn1.cc
[535/697] Compiling err.cc
[536/697] Compiling evp_ctx.cc
[537/697] Compiling evp.cc
[538/697] Compiling evp_asn1.cc
[539/697] Compiling ecdsa_asn1.cc
[540/697] Compiling ecdh_extra.cc
[541/697] Compiling engine.cc
[542/697] Compiling hash_to_curve.cc
[543/697] Compiling ec_derive.cc
[544/697] Compiling ec_asn1.cc
[545/697] Compiling dsa_asn1.cc
[546/697] Compiling dsa.cc
[547/697] Compiling params.cc
[548/697] Compiling digest_extra.cc
[549/697] Compiling x25519-asm-arm.S
[550/697] Compiling dh_asn1.cc
[551/697] Compiling des.cc
[552/697] Compiling spake25519.cc
[553/697] Compiling crypto.cc
[554/697] Compiling cpu_intel.cc
[555/697] Compiling curve25519.cc
[556/697] Compiling cpu_arm_linux.cc
[557/697] Compiling cpu_arm_freebsd.cc
[558/697] Compiling cpu_aarch64_win.cc
[559/697] Compiling cpu_aarch64_openbsd.cc
[560/697] Compiling cpu_aarch64_sysreg.cc
[561/697] Compiling curve25519_64_adx.cc
[562/697] Compiling cpu_aarch64_linux.cc
[563/697] Compiling bcm.cc
[564/697] Compiling cpu_aarch64_fuchsia.cc
[565/697] Compiling cpu_aarch64_apple.cc
[566/697] Compiling tls_cbc.cc
[567/697] Compiling e_rc4.cc
[568/697] Compiling e_tls.cc
[569/697] Compiling conf.cc
[570/697] Compiling e_rc2.cc
[571/697] Compiling e_null.cc
[572/697] Compiling e_des.cc
[573/697] Compiling e_aesgcmsiv.cc
[574/697] Compiling e_chacha20poly1305.cc
[575/697] Compiling chacha.cc
[576/697] Compiling derive_key.cc
[577/697] Compiling e_aesctrhmac.cc
[578/697] Compiling cipher_extra.cc
[579/697] Compiling unicode.cc
[580/697] Compiling ber.cc
[581/697] Compiling cbs.cc
[582/697] Compiling cbb.cc
[583/697] Compiling buf.cc
[584/697] Compiling asn1_compat.cc
[585/697] Compiling printf.cc
[586/697] Compiling bn_asn1.cc
[587/697] Compiling blake2.cc
[588/697] Compiling convert.cc
[589/697] Compiling errno.cc
[590/697] Compiling fd.cc
[591/697] Compiling hexdump.cc
[592/697] Compiling pair.cc
[593/697] Compiling file.cc
[594/697] Compiling bio_mem.cc
[595/697] Compiling bio.cc
[596/697] Compiling base64.cc
[597/697] Compiling tasn_fre.cc
[598/697] Compiling tasn_typ.cc
[599/697] Compiling tasn_new.cc
[600/697] Compiling tasn_utl.cc
[601/697] Compiling tasn_enc.cc
[602/697] Compiling tasn_dec.cc
[603/697] Compiling posix_time.cc
[604/697] Compiling f_string.cc
[605/697] Compiling f_int.cc
[606/697] Compiling asn_pack.cc
[607/697] Compiling asn1_par.cc
[608/697] Compiling asn1_lib.cc
[609/697] Compiling a_time.cc
[610/697] Compiling a_utctm.cc
[611/697] Compiling a_type.cc
[612/697] Compiling a_octet.cc
[613/697] Compiling a_strnid.cc
[614/697] Compiling a_strex.cc
[615/697] Compiling a_i2d_fp.cc
[616/697] Compiling a_mbstr.cc
[617/697] Compiling a_object.cc
[618/697] Write sources
[619/697] Compiling a_int.cc
[620/697] Compiling a_dup.cc
[621/697] Compiling a_gentm.cc
[622/697] Compiling a_d2i_fp.cc
[623/697] Compiling a_bool.cc
[624/697] Compiling a_bitstr.cc
[626/697] Compiling SwiftSyntax RawSyntaxNodesC.swift
[627/697] Compiling SwiftSyntax RawSyntaxNodesD.swift
[628/697] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[629/697] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[630/697] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[631/697] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[632/697] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[633/697] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[634/697] Compiling SwiftSyntax RawSyntaxValidation.swift
[635/697] Compiling SwiftSyntax SyntaxEnum.swift
[636/697] Compiling SwiftSyntax SyntaxKind.swift
[637/697] Compiling SwiftSyntax SyntaxRewriter.swift
[638/697] Compiling SwiftSyntax SyntaxTraits.swift
[639/697] Compiling SwiftSyntax SyntaxVisitor.swift
[640/697] Compiling SwiftSyntax TokenKind.swift
[641/697] Compiling SwiftSyntax Tokens.swift
[642/697] Compiling SwiftSyntax TriviaPieces.swift
[643/697] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[644/705] Compiling CryptoBoringWrapper RandomBytes.swift
[645/705] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[646/705] Emitting module CryptoBoringWrapper
[647/705] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[648/705] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[649/705] Compiling CryptoBoringWrapper EllipticCurve.swift
[650/705] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[651/705] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[653/777] Compiling Crypto SymmetricKeys.swift
[654/777] Compiling Crypto HMAC.swift
[655/777] Compiling Crypto MACFunctions.swift
[656/777] Compiling Crypto MessageAuthenticationCode.swift
[657/777] Compiling Crypto AES.swift
[658/777] Compiling Crypto ECDSASignature_boring.swift
[659/777] Compiling Crypto ECDSA_boring.swift
[660/777] Compiling Crypto EdDSA_boring.swift
[661/777] Compiling Crypto ECDSA.swift
[662/777] Compiling Crypto Ed25519.swift
[663/786] Compiling Crypto HKDF.swift
[664/786] Compiling Crypto AESWrap.swift
[665/786] Compiling Crypto AESWrap_boring.swift
[666/786] Compiling Crypto Ed25519_boring.swift
[667/786] Compiling Crypto NISTCurvesKeys_boring.swift
[668/786] Compiling Crypto X25519Keys_boring.swift
[669/786] Compiling Crypto Curve25519.swift
[670/786] Compiling Crypto Ed25519Keys.swift
[671/786] Compiling Crypto NISTCurvesKeys.swift
[672/786] Compiling Crypto X25519Keys.swift
[673/786] Emitting module Crypto
[674/786] Compiling Crypto PKCS8PrivateKey.swift
[675/786] Compiling Crypto SEC1PrivateKey.swift
[676/786] Compiling Crypto SubjectPublicKeyInfo.swift
[677/786] Compiling Crypto CryptoKitErrors.swift
[678/786] Compiling Crypto Digest_boring.swift
[679/786] Compiling Crypto Digest.swift
[680/786] Compiling Crypto Digests.swift
[681/786] Compiling Crypto HashFunctions.swift
[682/786] Compiling Crypto HashFunctions_SHA2.swift
[683/786] Compiling Crypto HPKE-AEAD.swift
[684/786] Compiling Crypto HPKE-Ciphersuite.swift
[685/786] Compiling Crypto HPKE-KDF.swift
[686/786] Compiling Crypto HPKE-KexKeyDerivation.swift
[687/786] Compiling Crypto HPKE-LabeledExtract.swift
[688/786] Compiling Crypto HPKE-Utils.swift
[689/786] Compiling Crypto DHKEM.swift
[690/786] Compiling Crypto HPKE-KEM-Curve25519.swift
[691/786] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[692/786] Compiling Crypto HPKE-KEM.swift
[693/786] Compiling Crypto HPKE-Errors.swift
[694/786] Compiling Crypto HPKE.swift
[695/786] Compiling Crypto HPKE-Context.swift
[696/786] Compiling Crypto HPKE-KeySchedule.swift
[697/786] Compiling Crypto HPKE-Modes.swift
[698/786] Compiling Crypto Insecure.swift
[699/786] Compiling Crypto Insecure_HashFunctions.swift
[700/786] Compiling Crypto KEM.swift
[701/786] Compiling Crypto ECDH_boring.swift
[702/786] Compiling Crypto DH.swift
[703/786] Compiling Crypto ECDH.swift
[704/786] Compiling Crypto ASN1Identifier.swift
[705/786] Compiling Crypto ASN1Integer.swift
[706/786] Compiling Crypto ASN1Null.swift
[707/786] Compiling Crypto ASN1OctetString.swift
[708/786] Compiling Crypto ASN1Strings.swift
[709/786] Compiling Crypto ArraySliceBigint.swift
[710/786] Compiling Crypto GeneralizedTime.swift
[711/786] Compiling Crypto ObjectIdentifier.swift
[712/786] Compiling Crypto ECDSASignature.swift
[713/786] Compiling Crypto PEMDocument.swift
[714/786] Compiling Crypto AES-GCM.swift
[715/786] Compiling Crypto AES-GCM_boring.swift
[716/786] Compiling Crypto ChaChaPoly_boring.swift
[717/786] Compiling Crypto ChaChaPoly.swift
[718/786] Compiling Crypto Cipher.swift
[719/786] Compiling Crypto Nonces.swift
[720/786] Compiling Crypto ASN1.swift
[721/786] Compiling Crypto ASN1Any.swift
[722/786] Compiling Crypto ASN1BitString.swift
[723/786] Compiling Crypto ASN1Boolean.swift
[724/786] Compiling Crypto Signature.swift
[725/786] Compiling Crypto CryptoKitErrors_boring.swift
[726/786] Compiling Crypto RNG_boring.swift
[727/786] Compiling Crypto SafeCompare_boring.swift
[728/786] Compiling Crypto Zeroization_boring.swift
[729/786] Compiling Crypto PrettyBytes.swift
[730/786] Compiling Crypto SafeCompare.swift
[731/786] Compiling Crypto SecureBytes.swift
[732/786] Compiling Crypto Zeroization.swift
[734/809] Compiling Auth CodeVerifierStorage.swift
[735/809] Compiling Auth Constants.swift
[736/809] Compiling Auth Dependencies.swift
[737/812] Compiling Auth Keychain.swift
/host/spi-builder-workspace/Sources/Auth/Internal/SessionManager.swift:89:17: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 87 |               ],
 88 |               body: configuration.encoder.encode(
 89 |                 UserCredentials(refreshToken: refreshToken)
    |                 `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 90 |               )
 91 |             )
[738/812] Compiling Auth PKCE.swift
/host/spi-builder-workspace/Sources/Auth/Internal/SessionManager.swift:89:17: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 87 |               ],
 88 |               body: configuration.encoder.encode(
 89 |                 UserCredentials(refreshToken: refreshToken)
    |                 `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 90 |               )
 91 |             )
[739/812] Compiling Auth SessionManager.swift
/host/spi-builder-workspace/Sources/Auth/Internal/SessionManager.swift:89:17: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 87 |               ],
 88 |               body: configuration.encoder.encode(
 89 |                 UserCredentials(refreshToken: refreshToken)
    |                 `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 90 |               )
 91 |             )
[740/812] Compiling Auth SessionStorage.swift
[741/812] Compiling Auth URLOpener.swift
[742/812] Compiling Auth AuthLocalStorage.swift
[743/812] Compiling Auth EventEmitter.swift
[744/812] Compiling Auth FixedWidthInteger+Random.swift
[745/812] Compiling Auth Helpers.swift
[746/812] Compiling Auth Defaults.swift
[747/812] Compiling Auth Deprecated.swift
[748/812] Compiling Auth APIClient.swift
[749/812] Emitting module Auth
[750/812] Compiling Auth AuthError.swift
[751/812] Compiling Auth AuthMFA.swift
[752/812] Compiling Auth AuthStateChangeListener.swift
[753/812] Compiling Auth AuthAdmin.swift
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:343:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 341 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 342 |         body: configuration.encoder.encode(
 343 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 344 |             email: email,
 345 |             password: password,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:370:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 368 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 369 |         body: configuration.encoder.encode(
 370 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 371 |             password: password,
 372 |             phone: phone,
[754/812] Compiling Auth AuthClient.swift
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:343:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 341 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 342 |         body: configuration.encoder.encode(
 343 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 344 |             email: email,
 345 |             password: password,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:370:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 368 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 369 |         body: configuration.encoder.encode(
 370 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 371 |             password: password,
 372 |             phone: phone,
[755/812] Compiling Auth AuthClientConfiguration.swift
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:343:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 341 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 342 |         body: configuration.encoder.encode(
 343 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 344 |             email: email,
 345 |             password: password,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:370:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 368 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 369 |         body: configuration.encoder.encode(
 370 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release.
 371 |             password: password,
 372 |             phone: phone,
[777/812] Compiling Auth KeychainLocalStorage.swift
[778/812] Compiling Auth WinCredLocalStorage.swift
[779/812] Compiling Auth Types.swift
/host/spi-builder-workspace/Sources/Auth/Types.swift:505:10: warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it.
503 |     self.password = password
504 |     self.nonce = nonce
505 |     self.emailChangeToken = emailChangeToken
    |          `- warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it.
506 |     self.data = data
507 |   }
/host/spi-builder-workspace/Sources/Auth/Types.swift:505:10: warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it.
503 |     self.password = password
504 |     self.nonce = nonce
505 |     self.emailChangeToken = emailChangeToken
    |          `- warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it.
506 |     self.data = data
507 |   }
/host/spi-builder-workspace/Sources/Auth/Types.swift:505:10: warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it.
503 |     self.password = password
504 |     self.nonce = nonce
505 |     self.emailChangeToken = emailChangeToken
    |          `- warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it.
506 |     self.data = data
507 |   }
[805/818] Compiling Supabase Types.swift
[806/818] Compiling Supabase Deprecated.swift
[807/818] Compiling Supabase Constants.swift
[808/818] Emitting module Supabase
/host/spi-builder-workspace/Sources/Supabase/SupabaseClient.swift:79:36: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
 77 |   }
 78 |
 79 |   let _realtime: UncheckedSendable<RealtimeClient>
    |                                    `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
 80 |
 81 |   /// Realtime client for Supabase
[809/818] Compiling Supabase SupabaseClient.swift
/host/spi-builder-workspace/Sources/Supabase/SupabaseClient.swift:79:36: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
 77 |   }
 78 |
 79 |   let _realtime: UncheckedSendable<RealtimeClient>
    |                                    `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
 80 |
 81 |   /// Realtime client for Supabase
/host/spi-builder-workspace/Sources/Supabase/SupabaseClient.swift:196:7: warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
194 |
195 |     _realtime = UncheckedSendable(
196 |       RealtimeClient(
    |       `- warning: 'RealtimeClient' is deprecated: Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md
197 |         supabaseURL.appendingPathComponent("/realtime/v1").absoluteString,
198 |         headers: _headers.dictionary,
/host/spi-builder-workspace/Sources/Supabase/SupabaseClient.swift:255:22: warning: 'subscriptions' is deprecated: renamed to 'channels'
253 |   /// Returns all Realtime channels.
254 |   public var channels: [RealtimeChannelV2] {
255 |     Array(realtimeV2.subscriptions.values)
    |                      |- warning: 'subscriptions' is deprecated: renamed to 'channels'
    |                      `- note: use 'channels' instead
256 |   }
257 |
/host/spi-builder-workspace/Sources/Supabase/SupabaseClient.swift:398:5: warning: 'realtime' is deprecated: Use realtimeV2
396 |     }
397 |
398 |     realtime.setAuth(accessToken)
    |     `- warning: 'realtime' is deprecated: Use realtimeV2
399 |     await realtimeV2.setAuth(accessToken)
400 |   }
[821/878] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[822/879] Compiling SwiftDiagnostics Note.swift
[823/879] Compiling SwiftDiagnostics Message.swift
[824/879] Emitting module SwiftDiagnostics
[825/879] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[826/879] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[827/879] Compiling SwiftBasicFormat Syntax+Extensions.swift
[828/879] Compiling SwiftDiagnostics FixIt.swift
[829/879] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[830/879] Compiling SwiftBasicFormat InferIndentation.swift
[831/879] Compiling SwiftBasicFormat Indenter.swift
[832/879] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[833/879] Compiling SwiftParser Expressions.swift
[834/879] Compiling SwiftParser IncrementalParseTransition.swift
[835/879] Compiling SwiftParser IsValidIdentifier.swift
[836/879] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[837/880] Emitting module SwiftBasicFormat
[838/880] Compiling SwiftBasicFormat BasicFormat.swift
[841/881] Compiling SwiftParser SwiftParserCompatibility.swift
[842/881] Compiling SwiftParser SwiftVersion.swift
[843/881] Compiling SwiftParser SyntaxUtils.swift
[844/881] Compiling SwiftParser TokenConsumer.swift
[845/881] Compiling SwiftParser TokenPrecedence.swift
[846/886] Compiling SwiftParser LexemeSequence.swift
[847/886] Compiling SwiftParser Lexer.swift
[848/886] Compiling SwiftParser RegexLiteralLexer.swift
[849/886] Compiling SwiftParser UnicodeScalarExtensions.swift
[850/886] Compiling SwiftParser Lookahead.swift
[851/886] Compiling SwiftParser LoopProgressCondition.swift
[852/886] Compiling SwiftParser TokenSpec.swift
[853/886] Compiling SwiftParser TokenSpecSet.swift
[854/886] Compiling SwiftParser TopLevel.swift
[855/886] Compiling SwiftParser TriviaParser.swift
[856/886] Compiling SwiftParser Types.swift
[857/886] Compiling SwiftParser Modifiers.swift
[858/886] Compiling SwiftParser Names.swift
[859/886] Compiling SwiftParser Nominals.swift
[860/886] Compiling SwiftParser Parameters.swift
[861/886] Compiling SwiftParser ParseSourceFile.swift
[862/886] Compiling SwiftParser Parser.swift
[863/886] Compiling SwiftParser Patterns.swift
[864/886] Compiling SwiftParser Recovery.swift
[865/886] Compiling SwiftParser Specifiers.swift
[866/886] Compiling SwiftParser Statements.swift
[867/886] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[868/886] Compiling SwiftParser StringLiterals.swift
[869/886] Emitting module SwiftParser
[870/886] Compiling SwiftParser Attributes.swift
[871/886] Compiling SwiftParser Availability.swift
[872/886] Compiling SwiftParser CharacterInfo.swift
[873/886] Compiling SwiftParser CollectionNodes+Parsable.swift
[874/886] Compiling SwiftParser Declarations.swift
[875/886] Compiling SwiftParser Directives.swift
[880/886] Compiling SwiftParser Cursor.swift
[881/886] Compiling SwiftParser Lexeme.swift
[882/886] Compiling SwiftParser ExperimentalFeatures.swift
[883/886] Compiling SwiftParser IsLexerClassified.swift
[884/886] Compiling SwiftParser LayoutNodes+Parsable.swift
[885/886] Compiling SwiftParser Parser+TokenSpecSet.swift
[886/886] Compiling SwiftParser TokenSpecStaticMembers.swift
[888/900] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[889/900] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[890/901] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[891/901] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[892/901] Compiling SwiftParserDiagnostics PresenceUtils.swift
[893/901] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[894/901] Compiling SwiftParserDiagnostics Utils.swift
[895/901] Compiling SwiftParserDiagnostics MissingNodesError.swift
[896/901] Compiling SwiftParserDiagnostics MissingTokenError.swift
[897/901] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[898/901] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[899/901] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[900/901] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[901/901] Emitting module SwiftParserDiagnostics
[903/917] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[904/917] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[905/917] Emitting module SwiftSyntaxBuilder
[906/918] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[907/918] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[908/918] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[909/918] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[910/918] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[911/918] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[912/918] Compiling SwiftSyntaxBuilder Indenter.swift
[913/918] Compiling SwiftSyntaxBuilder ListBuilder.swift
[914/918] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[915/918] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[916/918] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[917/918] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[918/918] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[920/922] Compiling InlineSnapshotTesting Exports.swift
[921/922] Emitting module InlineSnapshotTesting
[922/922] Compiling InlineSnapshotTesting AssertInlineSnapshot.swift
[924/930] Compiling TestHelpers AsyncSequence.swift
[925/930] Compiling TestHelpers InMemoryLocalStorage.swift
[926/930] Compiling TestHelpers HTTPClientMock.swift
[927/930] Emitting module TestHelpers
[928/930] Compiling TestHelpers WithMainSerialExecutor+Windows.swift
[929/930] Compiling TestHelpers MockExtensions.swift
/host/spi-builder-workspace/Sources/TestHelpers/MockExtensions.swift:29:5: warning: code after 'return' will never be executed
27 |     return self
28 |     #endif
29 |     var copy = self
   |     `- warning: code after 'return' will never be executed
30 |     copy.onRequestHandler = OnRequestHandler {
31 |       assertInlineSnapshot(
[930/930] Compiling TestHelpers URLRequestSnapshot.swift
Build complete! (229.19s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    },
    {
      "identity" : "swift-http-types",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-http-types.git"
    },
    {
      "identity" : "swift-clocks",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-clocks"
    },
    {
      "identity" : "swift-concurrency-extras",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-concurrency-extras"
    },
    {
      "identity" : "swift-custom-dump",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-custom-dump"
    },
    {
      "identity" : "swift-snapshot-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.17.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-snapshot-testing"
    },
    {
      "identity" : "xctest-dynamic-overlay",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/xctest-dynamic-overlay"
    },
    {
      "identity" : "mocker",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/WeTransfer/Mocker"
    }
  ],
  "manifest_display_name" : "Supabase",
  "name" : "Supabase",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "Auth",
      "targets" : [
        "Auth"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Functions",
      "targets" : [
        "Functions"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PostgREST",
      "targets" : [
        "PostgREST"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Realtime",
      "targets" : [
        "Realtime"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Storage",
      "targets" : [
        "Storage"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Supabase",
      "targets" : [
        "Supabase",
        "Functions",
        "PostgREST",
        "Auth",
        "Realtime",
        "Storage"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TestHelpers",
      "module_type" : "SwiftTarget",
      "name" : "TestHelpers",
      "path" : "Sources/TestHelpers",
      "product_dependencies" : [
        "ConcurrencyExtras",
        "InlineSnapshotTesting",
        "XCTestDynamicOverlay",
        "Mocker"
      ],
      "sources" : [
        "AsyncSequence.swift",
        "HTTPClientMock.swift",
        "InMemoryLocalStorage.swift",
        "MockExtensions.swift",
        "URLRequestSnapshot.swift",
        "WithMainSerialExecutor+Windows.swift"
      ],
      "target_dependencies" : [
        "Auth"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SupabaseTests",
      "module_type" : "SwiftTarget",
      "name" : "SupabaseTests",
      "path" : "Tests/SupabaseTests",
      "product_dependencies" : [
        "CustomDump",
        "InlineSnapshotTesting"
      ],
      "sources" : [
        "SupabaseClientTests.swift"
      ],
      "target_dependencies" : [
        "Supabase"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Supabase",
      "module_type" : "SwiftTarget",
      "name" : "Supabase",
      "path" : "Sources/Supabase",
      "product_dependencies" : [
        "ConcurrencyExtras",
        "IssueReporting"
      ],
      "product_memberships" : [
        "Supabase"
      ],
      "sources" : [
        "Constants.swift",
        "Deprecated.swift",
        "SupabaseClient.swift",
        "Types.swift"
      ],
      "target_dependencies" : [
        "Auth",
        "Functions",
        "PostgREST",
        "Realtime",
        "Storage"
      ],
      "type" : "library"
    },
    {
      "c99name" : "StorageTests",
      "module_type" : "SwiftTarget",
      "name" : "StorageTests",
      "path" : "Tests/StorageTests",
      "product_dependencies" : [
        "CustomDump",
        "InlineSnapshotTesting",
        "XCTestDynamicOverlay",
        "Mocker"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/StorageTests/Fixtures/file.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/StorageTests/sadcat.jpg",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "BucketOptionsTests.swift",
        "FileOptionsTests.swift",
        "MultipartFormDataTests.swift",
        "StorageBucketAPITests.swift",
        "StorageErrorTests.swift",
        "StorageFileAPITests.swift",
        "SupabaseStorageClient+Test.swift",
        "SupabaseStorageTests.swift",
        "TransformOptionsTests.swift"
      ],
      "target_dependencies" : [
        "TestHelpers",
        "Storage"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Storage",
      "module_type" : "SwiftTarget",
      "name" : "Storage",
      "path" : "Sources/Storage",
      "product_memberships" : [
        "Storage",
        "Supabase"
      ],
      "sources" : [
        "BucketOptions.swift",
        "Codable.swift",
        "Deprecated.swift",
        "Helpers.swift",
        "MultipartFormData.swift",
        "StorageApi.swift",
        "StorageBucketApi.swift",
        "StorageError.swift",
        "StorageFileApi.swift",
        "StorageHTTPClient.swift",
        "SupabaseStorage.swift",
        "TransformOptions.swift",
        "Types.swift"
      ],
      "target_dependencies" : [
        "Helpers"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RealtimeTests",
      "module_type" : "SwiftTarget",
      "name" : "RealtimeTests",
      "path" : "Tests/RealtimeTests",
      "product_dependencies" : [
        "CustomDump",
        "InlineSnapshotTesting",
        "XCTestDynamicOverlay"
      ],
      "sources" : [
        "CallbackManagerTests.swift",
        "FakeWebSocket.swift",
        "PostgresJoinConfigTests.swift",
        "RealtimeChannelTests.swift",
        "RealtimeMessageV2Tests.swift",
        "RealtimePostgresFilterTests.swift",
        "RealtimePostgresFilterValueTests.swift",
        "RealtimeTests.swift",
        "_PushTests.swift"
      ],
      "target_dependencies" : [
        "PostgREST",
        "Realtime",
        "TestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Realtime",
      "module_type" : "SwiftTarget",
      "name" : "Realtime",
      "path" : "Sources/Realtime",
      "product_dependencies" : [
        "ConcurrencyExtras",
        "IssueReporting"
      ],
      "product_memberships" : [
        "Realtime",
        "Supabase"
      ],
      "sources" : [
        "CallbackManager.swift",
        "Deprecated/Defaults.swift",
        "Deprecated/Delegated.swift",
        "Deprecated/Deprecated.swift",
        "Deprecated/HeartbeatTimer.swift",
        "Deprecated/PhoenixTransport.swift",
        "Deprecated/Presence.swift",
        "Deprecated/Push.swift",
        "Deprecated/RealtimeChannel.swift",
        "Deprecated/RealtimeClient.swift",
        "Deprecated/RealtimeMessage.swift",
        "Deprecated/TimeoutTimer.swift",
        "PostgresAction.swift",
        "PostgresActionData.swift",
        "PresenceAction.swift",
        "PushV2.swift",
        "RealtimeChannel+AsyncAwait.swift",
        "RealtimeChannelV2.swift",
        "RealtimeClientV2.swift",
        "RealtimeError.swift",
        "RealtimeJoinConfig.swift",
        "RealtimeMessageV2.swift",
        "RealtimePostgresFilter.swift",
        "RealtimePostgresFilterValue.swift",
        "Types.swift",
        "WebSocket/URLSessionWebSocket.swift",
        "WebSocket/WebSocket.swift"
      ],
      "target_dependencies" : [
        "Helpers"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PostgRESTTests",
      "module_type" : "SwiftTarget",
      "name" : "PostgRESTTests",
      "path" : "Tests/PostgRESTTests",
      "product_dependencies" : [
        "InlineSnapshotTesting",
        "SnapshotTesting",
        "Mocker"
      ],
      "sources" : [
        "BuildURLRequestTests.swift",
        "JSONTests.swift",
        "PostgresQueryTests.swift",
        "PostgrestBuilderTests.swift",
        "PostgrestFilterBuilderTests.swift",
        "PostgrestFilterValueTests.swift",
        "PostgrestQueryBuilderTests.swift",
        "PostgrestResponseTests.swift",
        "PostgrestRpcBuilderTests.swift",
        "PostgrestTransformBuilderTests.swift"
      ],
      "target_dependencies" : [
        "Helpers",
        "PostgREST",
        "TestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PostgREST",
      "module_type" : "SwiftTarget",
      "name" : "PostgREST",
      "path" : "Sources/PostgREST",
      "product_dependencies" : [
        "ConcurrencyExtras"
      ],
      "product_memberships" : [
        "PostgREST",
        "Supabase"
      ],
      "sources" : [
        "Defaults.swift",
        "Deprecated.swift",
        "PostgrestBuilder.swift",
        "PostgrestClient.swift",
        "PostgrestFilterBuilder.swift",
        "PostgrestFilterValue.swift",
        "PostgrestQueryBuilder.swift",
        "PostgrestTransformBuilder.swift",
        "Types.swift"
      ],
      "target_dependencies" : [
        "Helpers"
      ],
      "type" : "library"
    },
    {
      "c99name" : "IntegrationTests",
      "module_type" : "SwiftTarget",
      "name" : "IntegrationTests",
      "path" : "Tests/IntegrationTests",
      "product_dependencies" : [
        "CustomDump",
        "InlineSnapshotTesting",
        "XCTestDynamicOverlay"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/IntegrationTests/Fixtures/Upload/file-2.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/IntegrationTests/Fixtures/Upload/sadcat.jpg",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/IntegrationTests/supabase/config.toml",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "AuthClientIntegrationTests.swift",
        "DotEnv.swift",
        "Postgrest/PostgresTransformsTests.swift",
        "Postgrest/PostgrestBasicTests.swift",
        "Postgrest/PostgrestFilterTests.swift",
        "Postgrest/PostgrestResourceEmbeddingTests.swift",
        "PostgrestIntegrationTests.swift",
        "RealtimeIntegrationTests.swift",
        "StorageClientIntegrationTests.swift",
        "StorageFileIntegrationTests.swift"
      ],
      "target_dependencies" : [
        "Helpers",
        "Supabase",
        "TestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HelpersTests",
      "module_type" : "SwiftTarget",
      "name" : "HelpersTests",
      "path" : "Tests/HelpersTests",
      "product_dependencies" : [
        "CustomDump"
      ],
      "sources" : [
        "AnyJSONTests.swift",
        "AsyncValueSubjectTests.swift",
        "EventEmitterTests.swift",
        "JWTTests.swift",
        "ObservationTokenTests.swift",
        "WithTimeoutTests.swift"
      ],
      "target_dependencies" : [
        "Helpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Helpers",
      "module_type" : "SwiftTarget",
      "name" : "Helpers",
      "path" : "Sources/Helpers",
      "product_dependencies" : [
        "ConcurrencyExtras",
        "HTTPTypes",
        "Clocks",
        "XCTestDynamicOverlay"
      ],
      "product_memberships" : [
        "Auth",
        "Functions",
        "PostgREST",
        "Realtime",
        "Storage",
        "Supabase"
      ],
      "sources" : [
        "AnyJSON/AnyJSON+Codable.swift",
        "AnyJSON/AnyJSON.swift",
        "AsyncValueSubject.swift",
        "Codable.swift",
        "DateFormatter.swift",
        "EventEmitter.swift",
        "FoundationExtensions.swift",
        "HTTP/HTTPClient.swift",
        "HTTP/HTTPFields.swift",
        "HTTP/HTTPRequest.swift",
        "HTTP/HTTPResponse.swift",
        "HTTP/LoggerInterceptor.swift",
        "HTTP/RetryRequestInterceptor.swift",
        "JWT.swift",
        "SharedModels/HTTPError.swift",
        "SharedModels/PostgrestError.swift",
        "SupabaseLogger.swift",
        "Task+withTimeout.swift",
        "TaskLocalHelpers.swift",
        "URLSession+AsyncAwait.swift",
        "Version.swift",
        "_Clock.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FunctionsTests",
      "module_type" : "SwiftTarget",
      "name" : "FunctionsTests",
      "path" : "Tests/FunctionsTests",
      "product_dependencies" : [
        "ConcurrencyExtras",
        "InlineSnapshotTesting",
        "SnapshotTesting",
        "XCTestDynamicOverlay",
        "Mocker"
      ],
      "sources" : [
        "FunctionInvokeOptionsTests.swift",
        "FunctionsClientTests.swift",
        "FunctionsErrorTests.swift",
        "RequestTests.swift"
      ],
      "target_dependencies" : [
        "Functions",
        "TestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Functions",
      "module_type" : "SwiftTarget",
      "name" : "Functions",
      "path" : "Sources/Functions",
      "product_memberships" : [
        "Functions",
        "Supabase"
      ],
      "sources" : [
        "FunctionsClient.swift",
        "Types.swift"
      ],
      "target_dependencies" : [
        "Helpers"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AuthTests",
      "module_type" : "SwiftTarget",
      "name" : "AuthTests",
      "path" : "Tests/AuthTests",
      "product_dependencies" : [
        "CustomDump",
        "InlineSnapshotTesting",
        "SnapshotTesting",
        "XCTestDynamicOverlay"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/AuthTests/Resources/anonymous-sign-in-response.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/AuthTests/Resources/list-users-response.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/AuthTests/Resources/local-storage.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/AuthTests/Resources/session.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/AuthTests/Resources/signup-response.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/AuthTests/Resources/user.json",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "AuthClientMultipleInstancesTests.swift",
        "AuthClientTests.swift",
        "AuthErrorTests.swift",
        "AuthResponseTests.swift",
        "ExtractParamsTests.swift",
        "MockHelpers.swift",
        "Mocks/Mocks.swift",
        "PKCETests.swift",
        "RequestsTests.swift",
        "SessionManagerTests.swift",
        "StoredSessionTests.swift"
      ],
      "target_dependencies" : [
        "Auth",
        "Helpers",
        "TestHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Auth",
      "module_type" : "SwiftTarget",
      "name" : "Auth",
      "path" : "Sources/Auth",
      "product_dependencies" : [
        "ConcurrencyExtras",
        "Crypto"
      ],
      "product_memberships" : [
        "Auth",
        "Supabase"
      ],
      "sources" : [
        "AuthAdmin.swift",
        "AuthClient.swift",
        "AuthClientConfiguration.swift",
        "AuthError.swift",
        "AuthMFA.swift",
        "AuthStateChangeListener.swift",
        "Defaults.swift",
        "Deprecated.swift",
        "Internal/APIClient.swift",
        "Internal/CodeVerifierStorage.swift",
        "Internal/Constants.swift",
        "Internal/Dependencies.swift",
        "Internal/EventEmitter.swift",
        "Internal/FixedWidthInteger+Random.swift",
        "Internal/Helpers.swift",
        "Internal/Keychain.swift",
        "Internal/PKCE.swift",
        "Internal/SessionManager.swift",
        "Internal/SessionStorage.swift",
        "Internal/URLOpener.swift",
        "Storage/AuthLocalStorage.swift",
        "Storage/KeychainLocalStorage.swift",
        "Storage/WinCredLocalStorage.swift",
        "Types.swift"
      ],
      "target_dependencies" : [
        "Helpers"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:9029076bb687edc160a3d5201c89e92dd9fa7309f33f090c4234365c83366c31
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.