The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Supabase, reference v2.29.3 (09f047), with Swift 6.2 (beta) for Linux on 24 Jun 2025 13:50:53 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

 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:530:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 528 |
 529 |     return stateChangeCallbacks.close.withValue { [delegated] in
 530 |       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 [#SendableClosureCaptures]
 531 |     }
 532 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:530: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 [#SendableClosureCaptures]
 528 |
 529 |     return stateChangeCallbacks.close.withValue { [delegated] in
 530 |       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 [#SendableClosureCaptures]
 531 |     }
 532 |   }
/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:550:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 548 |
 549 |     return stateChangeCallbacks.error.withValue { [delegated] in
 550 |       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 [#SendableClosureCaptures]
 551 |     }
 552 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:550: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 [#SendableClosureCaptures]
 548 |
 549 |     return stateChangeCallbacks.error.withValue { [delegated] in
 550 |       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 [#SendableClosureCaptures]
 551 |     }
 552 |   }
/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:574:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 572 |
 573 |     return stateChangeCallbacks.error.withValue { [delegated] in
 574 |       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 [#SendableClosureCaptures]
 575 |     }
 576 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:574: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 [#SendableClosureCaptures]
 572 |
 573 |     return stateChangeCallbacks.error.withValue { [delegated] in
 574 |       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 [#SendableClosureCaptures]
 575 |     }
 576 |   }
/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:595:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 593 |
 594 |     return stateChangeCallbacks.message.withValue { [delegated] in
 595 |       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 [#SendableClosureCaptures]
 596 |     }
 597 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:595: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 [#SendableClosureCaptures]
 593 |
 594 |     return stateChangeCallbacks.message.withValue { [delegated] in
 595 |       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 [#SendableClosureCaptures]
 596 |     }
 597 |   }
/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:619:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 617 |
 618 |     return stateChangeCallbacks.message.withValue { [delegated] in
 619 |       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 [#SendableClosureCaptures]
 620 |     }
 621 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:619: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 [#SendableClosureCaptures]
 617 |
 618 |     return stateChangeCallbacks.message.withValue { [delegated] in
 619 |       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 [#SendableClosureCaptures]
 620 |     }
 621 |   }
/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:788:31: warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 786 |
 787 |     // Inform all onOpen callbacks that the Socket has opened
 788 |     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
 789 |   }
 790 |
/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:806:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 804 |     }
 805 |
 806 |     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
 807 |   }
 808 |
/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:816: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
 814 |
 815 |     // Inform any state callbacks of the error
 816 |     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
 817 |   }
 818 |
/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:844:34: warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 842 |
 843 |     // Inform all onMessage callbacks of the message
 844 |     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
 845 |   }
 846 |
/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/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
    |              |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |   func queue(timeInterval: TimeInterval, execute: DispatchWorkItem) {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:1006: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 [#DeprecatedDeclaration]
1004 |
1005 | // ----------------------------------------------------------------------
1006 | 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 [#DeprecatedDeclaration]
1007 |   /// - return: True if the RealtimeChannel has been closed
1008 |   public var isClosed: Bool {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:380:36: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 378 |     var accessTokenPayload: Payload = [:]
 379 |     var config: Payload = [
 380 |       "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
 381 |     ]
 382 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:407:52: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 405 |         }
 406 |
 407 |         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
 408 |         let bindingsCount = clientPostgresBindings.count
 409 |         var newPostgresBindings: [Binding] = []
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:445:36: warning: capture of 'newPostgresBindings' with non-Sendable type '[Binding]' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 443 |
 444 |         self.bindings.withValue { [newPostgresBindings] in
 445 |           $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 [#SendableClosureCaptures]
 446 |         }
 447 |         callback?(.subscribed, nil)
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:646:50: warning: capture of 'filter' with non-Sendable type 'ChannelFilter' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  35 | }
  36 |
  37 | public struct ChannelFilter {
     |               `- note: consider making struct 'ChannelFilter' conform to the 'Sendable' protocol
  38 |   public var event: String?
  39 |   public var schema: String?
     :
 644 |     bindings.withValue {
 645 |       $0[type.lowercased(), default: []].append(
 646 |         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 [#SendableClosureCaptures]
 647 |       )
 648 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:646: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 [#SendableClosureCaptures]
 644 |     bindings.withValue {
 645 |       $0[type.lowercased(), default: []].append(
 646 |         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 [#SendableClosureCaptures]
 647 |       )
 648 |     }
/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:918:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 916 |
 917 |     let bindings: [Binding] = if ["insert", "update", "delete"].contains(typeLower) {
 918 |       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
 919 |         bind.filter["event"] == "*" || bind.filter["event"] == typeLower
 920 |       }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:922:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 920 |       }
 921 |     } else {
 922 |       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
 923 |         if ["broadcast", "presence", "postgres_changes"].contains(typeLower) {
 924 |           let bindEvent = bind.filter["event"]?.lowercased()
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1008: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 [#DeprecatedDeclaration]
1006 |
1007 | // ----------------------------------------------------------------------
1008 | 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 [#DeprecatedDeclaration]
1009 |   public enum CloseCode: Int {
1010 |     case abnormal = 999
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1023: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 [#DeprecatedDeclaration]
1021 |
1022 | // ----------------------------------------------------------------------
1023 | 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 [#DeprecatedDeclaration]
1024 |   /// Indicates the different closure states a socket can be in.
1025 |   enum CloseStatus {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:368:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 366 |     // Since the connection's delegate was nil'd out, inform all state
 367 |     // callbacks that the connection has closed
 368 |     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
 369 |     callback?()
 370 |   }
/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:409:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 407 |
 408 |     return stateChangeCallbacks.open.withValue { [delegated] in
 409 |       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 [#SendableClosureCaptures]
 410 |     }
 411 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:409: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 [#SendableClosureCaptures]
 407 |
 408 |     return stateChangeCallbacks.open.withValue { [delegated] in
 409 |       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 [#SendableClosureCaptures]
 410 |     }
 411 |   }
/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:452:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 450 |
 451 |     return stateChangeCallbacks.open.withValue { [delegated] in
 452 |       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 [#SendableClosureCaptures]
 453 |     }
 454 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:452: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 [#SendableClosureCaptures]
 450 |
 451 |     return stateChangeCallbacks.open.withValue { [delegated] in
 452 |       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 [#SendableClosureCaptures]
 453 |     }
 454 |   }
/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:487:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 485 |
 486 |     return stateChangeCallbacks.close.withValue { [delegated] in
 487 |       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 [#SendableClosureCaptures]
 488 |     }
 489 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:487: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 [#SendableClosureCaptures]
 485 |
 486 |     return stateChangeCallbacks.close.withValue { [delegated] in
 487 |       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 [#SendableClosureCaptures]
 488 |     }
 489 |   }
/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:530:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 528 |
 529 |     return stateChangeCallbacks.close.withValue { [delegated] in
 530 |       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 [#SendableClosureCaptures]
 531 |     }
 532 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:530: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 [#SendableClosureCaptures]
 528 |
 529 |     return stateChangeCallbacks.close.withValue { [delegated] in
 530 |       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 [#SendableClosureCaptures]
 531 |     }
 532 |   }
/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:550:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 548 |
 549 |     return stateChangeCallbacks.error.withValue { [delegated] in
 550 |       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 [#SendableClosureCaptures]
 551 |     }
 552 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:550: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 [#SendableClosureCaptures]
 548 |
 549 |     return stateChangeCallbacks.error.withValue { [delegated] in
 550 |       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 [#SendableClosureCaptures]
 551 |     }
 552 |   }
/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:574:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 572 |
 573 |     return stateChangeCallbacks.error.withValue { [delegated] in
 574 |       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 [#SendableClosureCaptures]
 575 |     }
 576 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:574: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 [#SendableClosureCaptures]
 572 |
 573 |     return stateChangeCallbacks.error.withValue { [delegated] in
 574 |       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 [#SendableClosureCaptures]
 575 |     }
 576 |   }
/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:595:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 593 |
 594 |     return stateChangeCallbacks.message.withValue { [delegated] in
 595 |       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 [#SendableClosureCaptures]
 596 |     }
 597 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:595: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 [#SendableClosureCaptures]
 593 |
 594 |     return stateChangeCallbacks.message.withValue { [delegated] in
 595 |       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 [#SendableClosureCaptures]
 596 |     }
 597 |   }
/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:619:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 617 |
 618 |     return stateChangeCallbacks.message.withValue { [delegated] in
 619 |       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 [#SendableClosureCaptures]
 620 |     }
 621 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:619: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 [#SendableClosureCaptures]
 617 |
 618 |     return stateChangeCallbacks.message.withValue { [delegated] in
 619 |       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 [#SendableClosureCaptures]
 620 |     }
 621 |   }
/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:788:31: warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 786 |
 787 |     // Inform all onOpen callbacks that the Socket has opened
 788 |     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
 789 |   }
 790 |
/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:806:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 804 |     }
 805 |
 806 |     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
 807 |   }
 808 |
/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:816: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
 814 |
 815 |     // Inform any state callbacks of the error
 816 |     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
 817 |   }
 818 |
/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:844:34: warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 842 |
 843 |     // Inform all onMessage callbacks of the message
 844 |     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
 845 |   }
 846 |
/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/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
    |              |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |   func queue(timeInterval: TimeInterval, execute: DispatchWorkItem) {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:1006: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 [#DeprecatedDeclaration]
1004 |
1005 | // ----------------------------------------------------------------------
1006 | 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 [#DeprecatedDeclaration]
1007 |   /// - return: True if the RealtimeChannel has been closed
1008 |   public var isClosed: Bool {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:380:36: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 378 |     var accessTokenPayload: Payload = [:]
 379 |     var config: Payload = [
 380 |       "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
 381 |     ]
 382 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:407:52: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 405 |         }
 406 |
 407 |         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
 408 |         let bindingsCount = clientPostgresBindings.count
 409 |         var newPostgresBindings: [Binding] = []
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:445:36: warning: capture of 'newPostgresBindings' with non-Sendable type '[Binding]' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 443 |
 444 |         self.bindings.withValue { [newPostgresBindings] in
 445 |           $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 [#SendableClosureCaptures]
 446 |         }
 447 |         callback?(.subscribed, nil)
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:646:50: warning: capture of 'filter' with non-Sendable type 'ChannelFilter' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  35 | }
  36 |
  37 | public struct ChannelFilter {
     |               `- note: consider making struct 'ChannelFilter' conform to the 'Sendable' protocol
  38 |   public var event: String?
  39 |   public var schema: String?
     :
 644 |     bindings.withValue {
 645 |       $0[type.lowercased(), default: []].append(
 646 |         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 [#SendableClosureCaptures]
 647 |       )
 648 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:646: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 [#SendableClosureCaptures]
 644 |     bindings.withValue {
 645 |       $0[type.lowercased(), default: []].append(
 646 |         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 [#SendableClosureCaptures]
 647 |       )
 648 |     }
/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:918:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 916 |
 917 |     let bindings: [Binding] = if ["insert", "update", "delete"].contains(typeLower) {
 918 |       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
 919 |         bind.filter["event"] == "*" || bind.filter["event"] == typeLower
 920 |       }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:922:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 920 |       }
 921 |     } else {
 922 |       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
 923 |         if ["broadcast", "presence", "postgres_changes"].contains(typeLower) {
 924 |           let bindEvent = bind.filter["event"]?.lowercased()
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1008: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 [#DeprecatedDeclaration]
1006 |
1007 | // ----------------------------------------------------------------------
1008 | 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 [#DeprecatedDeclaration]
1009 |   public enum CloseCode: Int {
1010 |     case abnormal = 999
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1023: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 [#DeprecatedDeclaration]
1021 |
1022 | // ----------------------------------------------------------------------
1023 | 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 [#DeprecatedDeclaration]
1024 |   /// Indicates the different closure states a socket can be in.
1025 |   enum CloseStatus {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:368:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 366 |     // Since the connection's delegate was nil'd out, inform all state
 367 |     // callbacks that the connection has closed
 368 |     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
 369 |     callback?()
 370 |   }
/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:409:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 407 |
 408 |     return stateChangeCallbacks.open.withValue { [delegated] in
 409 |       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 [#SendableClosureCaptures]
 410 |     }
 411 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:409: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 [#SendableClosureCaptures]
 407 |
 408 |     return stateChangeCallbacks.open.withValue { [delegated] in
 409 |       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 [#SendableClosureCaptures]
 410 |     }
 411 |   }
/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:452:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 450 |
 451 |     return stateChangeCallbacks.open.withValue { [delegated] in
 452 |       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 [#SendableClosureCaptures]
 453 |     }
 454 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:452: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 [#SendableClosureCaptures]
 450 |
 451 |     return stateChangeCallbacks.open.withValue { [delegated] in
 452 |       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 [#SendableClosureCaptures]
 453 |     }
 454 |   }
/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:487:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 485 |
 486 |     return stateChangeCallbacks.close.withValue { [delegated] in
 487 |       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 [#SendableClosureCaptures]
 488 |     }
 489 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:487: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 [#SendableClosureCaptures]
 485 |
 486 |     return stateChangeCallbacks.close.withValue { [delegated] in
 487 |       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 [#SendableClosureCaptures]
 488 |     }
 489 |   }
/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:530:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 528 |
 529 |     return stateChangeCallbacks.close.withValue { [delegated] in
 530 |       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 [#SendableClosureCaptures]
 531 |     }
 532 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:530: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 [#SendableClosureCaptures]
 528 |
 529 |     return stateChangeCallbacks.close.withValue { [delegated] in
 530 |       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 [#SendableClosureCaptures]
 531 |     }
 532 |   }
/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:550:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 548 |
 549 |     return stateChangeCallbacks.error.withValue { [delegated] in
 550 |       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 [#SendableClosureCaptures]
 551 |     }
 552 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:550: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 [#SendableClosureCaptures]
 548 |
 549 |     return stateChangeCallbacks.error.withValue { [delegated] in
 550 |       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 [#SendableClosureCaptures]
 551 |     }
 552 |   }
/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:574:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 572 |
 573 |     return stateChangeCallbacks.error.withValue { [delegated] in
 574 |       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 [#SendableClosureCaptures]
 575 |     }
 576 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:574: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 [#SendableClosureCaptures]
 572 |
 573 |     return stateChangeCallbacks.error.withValue { [delegated] in
 574 |       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 [#SendableClosureCaptures]
 575 |     }
 576 |   }
/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:595:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 593 |
 594 |     return stateChangeCallbacks.message.withValue { [delegated] in
 595 |       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 [#SendableClosureCaptures]
 596 |     }
 597 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:595: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 [#SendableClosureCaptures]
 593 |
 594 |     return stateChangeCallbacks.message.withValue { [delegated] in
 595 |       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 [#SendableClosureCaptures]
 596 |     }
 597 |   }
/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:619:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 617 |
 618 |     return stateChangeCallbacks.message.withValue { [delegated] in
 619 |       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 [#SendableClosureCaptures]
 620 |     }
 621 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:619: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 [#SendableClosureCaptures]
 617 |
 618 |     return stateChangeCallbacks.message.withValue { [delegated] in
 619 |       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 [#SendableClosureCaptures]
 620 |     }
 621 |   }
/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:788:31: warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 786 |
 787 |     // Inform all onOpen callbacks that the Socket has opened
 788 |     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
 789 |   }
 790 |
/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:806:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 804 |     }
 805 |
 806 |     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
 807 |   }
 808 |
/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:816: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
 814 |
 815 |     // Inform any state callbacks of the error
 816 |     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
 817 |   }
 818 |
/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:844:34: warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 842 |
 843 |     // Inform all onMessage callbacks of the message
 844 |     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
 845 |   }
 846 |
/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/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
    |              |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |   func queue(timeInterval: TimeInterval, execute: DispatchWorkItem) {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:1006: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 [#DeprecatedDeclaration]
1004 |
1005 | // ----------------------------------------------------------------------
1006 | 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 [#DeprecatedDeclaration]
1007 |   /// - return: True if the RealtimeChannel has been closed
1008 |   public var isClosed: Bool {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:380:36: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 378 |     var accessTokenPayload: Payload = [:]
 379 |     var config: Payload = [
 380 |       "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
 381 |     ]
 382 |
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:407:52: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 405 |         }
 406 |
 407 |         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
 408 |         let bindingsCount = clientPostgresBindings.count
 409 |         var newPostgresBindings: [Binding] = []
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:445:36: warning: capture of 'newPostgresBindings' with non-Sendable type '[Binding]' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 443 |
 444 |         self.bindings.withValue { [newPostgresBindings] in
 445 |           $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 [#SendableClosureCaptures]
 446 |         }
 447 |         callback?(.subscribed, nil)
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:646:50: warning: capture of 'filter' with non-Sendable type 'ChannelFilter' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  35 | }
  36 |
  37 | public struct ChannelFilter {
     |               `- note: consider making struct 'ChannelFilter' conform to the 'Sendable' protocol
  38 |   public var event: String?
  39 |   public var schema: String?
     :
 644 |     bindings.withValue {
 645 |       $0[type.lowercased(), default: []].append(
 646 |         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 [#SendableClosureCaptures]
 647 |       )
 648 |     }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:646: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 [#SendableClosureCaptures]
 644 |     bindings.withValue {
 645 |       $0[type.lowercased(), default: []].append(
 646 |         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 [#SendableClosureCaptures]
 647 |       )
 648 |     }
/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:918:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 916 |
 917 |     let bindings: [Binding] = if ["insert", "update", "delete"].contains(typeLower) {
 918 |       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
 919 |         bind.filter["event"] == "*" || bind.filter["event"] == typeLower
 920 |       }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeChannel.swift:922:21: warning: type 'Binding' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  25 |
  26 | /// Container class of bindings to the channel
  27 | struct Binding {
     |        `- note: consider making struct 'Binding' conform to the 'Sendable' protocol
  28 |   let type: String
  29 |   let filter: [String: String]
     :
 920 |       }
 921 |     } else {
 922 |       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
 923 |         if ["broadcast", "presence", "postgres_changes"].contains(typeLower) {
 924 |           let bindEvent = bind.filter["event"]?.lowercased()
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1008: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 [#DeprecatedDeclaration]
1006 |
1007 | // ----------------------------------------------------------------------
1008 | 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 [#DeprecatedDeclaration]
1009 |   public enum CloseCode: Int {
1010 |     case abnormal = 999
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:1023: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 [#DeprecatedDeclaration]
1021 |
1022 | // ----------------------------------------------------------------------
1023 | 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 [#DeprecatedDeclaration]
1024 |   /// Indicates the different closure states a socket can be in.
1025 |   enum CloseStatus {
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:368:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 366 |     // Since the connection's delegate was nil'd out, inform all state
 367 |     // callbacks that the connection has closed
 368 |     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
 369 |     callback?()
 370 |   }
/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:409:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 407 |
 408 |     return stateChangeCallbacks.open.withValue { [delegated] in
 409 |       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 [#SendableClosureCaptures]
 410 |     }
 411 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:409: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 [#SendableClosureCaptures]
 407 |
 408 |     return stateChangeCallbacks.open.withValue { [delegated] in
 409 |       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 [#SendableClosureCaptures]
 410 |     }
 411 |   }
/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:452:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 450 |
 451 |     return stateChangeCallbacks.open.withValue { [delegated] in
 452 |       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 [#SendableClosureCaptures]
 453 |     }
 454 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:452: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 [#SendableClosureCaptures]
 450 |
 451 |     return stateChangeCallbacks.open.withValue { [delegated] in
 452 |       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 [#SendableClosureCaptures]
 453 |     }
 454 |   }
/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:487:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 485 |
 486 |     return stateChangeCallbacks.close.withValue { [delegated] in
 487 |       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 [#SendableClosureCaptures]
 488 |     }
 489 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:487: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 [#SendableClosureCaptures]
 485 |
 486 |     return stateChangeCallbacks.close.withValue { [delegated] in
 487 |       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 [#SendableClosureCaptures]
 488 |     }
 489 |   }
/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:530:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 528 |
 529 |     return stateChangeCallbacks.close.withValue { [delegated] in
 530 |       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 [#SendableClosureCaptures]
 531 |     }
 532 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:530: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 [#SendableClosureCaptures]
 528 |
 529 |     return stateChangeCallbacks.close.withValue { [delegated] in
 530 |       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 [#SendableClosureCaptures]
 531 |     }
 532 |   }
/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:550:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 548 |
 549 |     return stateChangeCallbacks.error.withValue { [delegated] in
 550 |       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 [#SendableClosureCaptures]
 551 |     }
 552 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:550: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 [#SendableClosureCaptures]
 548 |
 549 |     return stateChangeCallbacks.error.withValue { [delegated] in
 550 |       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 [#SendableClosureCaptures]
 551 |     }
 552 |   }
/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:574:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 572 |
 573 |     return stateChangeCallbacks.error.withValue { [delegated] in
 574 |       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 [#SendableClosureCaptures]
 575 |     }
 576 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:574: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 [#SendableClosureCaptures]
 572 |
 573 |     return stateChangeCallbacks.error.withValue { [delegated] in
 574 |       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 [#SendableClosureCaptures]
 575 |     }
 576 |   }
/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:595:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 593 |
 594 |     return stateChangeCallbacks.message.withValue { [delegated] in
 595 |       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 [#SendableClosureCaptures]
 596 |     }
 597 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:595: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 [#SendableClosureCaptures]
 593 |
 594 |     return stateChangeCallbacks.message.withValue { [delegated] in
 595 |       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 [#SendableClosureCaptures]
 596 |     }
 597 |   }
/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:619:7: warning: capture of 'self' with non-Sendable type 'RealtimeClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
  63 |   message: "Use new RealtimeClientV2 class instead. See migration guide: https://github.com/supabase-community/supabase-swift/blob/main/docs/migrations/RealtimeV2%20Migration%20Guide.md"
  64 | )
  65 | public class RealtimeClient: PhoenixTransportDelegate {
     |              `- note: class 'RealtimeClient' does not conform to the 'Sendable' protocol
  66 |   // ----------------------------------------------------------------------
  67 |
     :
 617 |
 618 |     return stateChangeCallbacks.message.withValue { [delegated] in
 619 |       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 [#SendableClosureCaptures]
 620 |     }
 621 |   }
/host/spi-builder-workspace/Sources/Realtime/Deprecated/RealtimeClient.swift:619: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 [#SendableClosureCaptures]
 617 |
 618 |     return stateChangeCallbacks.message.withValue { [delegated] in
 619 |       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 [#SendableClosureCaptures]
 620 |     }
 621 |   }
/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:788:31: warning: type 'Delegated<URLResponse?, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 786 |
 787 |     // Inform all onOpen callbacks that the Socket has opened
 788 |     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
 789 |   }
 790 |
/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:806:32: warning: type 'Delegated<(Int, String?), Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 804 |     }
 805 |
 806 |     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
 807 |   }
 808 |
/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:816: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
 814 |
 815 |     // Inform any state callbacks of the error
 816 |     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
 817 |   }
 818 |
/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:844:34: warning: type 'Delegated<RealtimeMessage, Void>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 842 |
 843 |     // Inform all onMessage callbacks of the message
 844 |     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
 845 |   }
 846 |
/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/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
    |              |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |   func queue(timeInterval: TimeInterval, execute: DispatchWorkItem) {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:36:21: note: add '@MainActor' to make static property 'reconnectSteppedBackOff' part of global actor 'MainActor'
 34 |
 35 |   /// Default reconnect algorithm for the socket
 36 |   public static let reconnectSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- note: add '@MainActor' to make static property 'reconnectSteppedBackOff' part of global actor 'MainActor'
    |                     `- 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 |   }
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 42 |     tries > 3 ? 10 : [1, 2, 5][tries - 1]
 43 |   }
<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: note: add '@MainActor' to make static property 'rejoinSteppedBackOff' part of global actor 'MainActor'
 39 |
 40 |   /** Default rejoin algorithm for individual channels */
 41 |   public static let rejoinSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- note: add '@MainActor' to make static property 'rejoinSteppedBackOff' part of global actor 'MainActor'
    |                     `- 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/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:48:21: note: add '@MainActor' to make static property 'encode' part of global actor 'MainActor'
 46 |
 47 |   /// Default encode function, utilizing JSONSerialization.data
 48 |   public static let encode: (Any) -> Data = { json in
    |                     |- note: add '@MainActor' to make static property 'encode' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     try! JSONSerialization
 50 |       .data(
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:57:21: note: add '@MainActor' to make static property 'decode' part of global actor 'MainActor'
 55 |
 56 |   /// Default decode function, utilizing JSONSerialization.jsonObject
 57 |   public static let decode: (Data) -> Any? = { data in
    |                     |- note: add '@MainActor' to make static property 'decode' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     guard
 59 |       let json =
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:36:21: note: add '@MainActor' to make static property 'reconnectSteppedBackOff' part of global actor 'MainActor'
 34 |
 35 |   /// Default reconnect algorithm for the socket
 36 |   public static let reconnectSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- note: add '@MainActor' to make static property 'reconnectSteppedBackOff' part of global actor 'MainActor'
    |                     `- 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 |   }
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 42 |     tries > 3 ? 10 : [1, 2, 5][tries - 1]
 43 |   }
<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: note: add '@MainActor' to make static property 'rejoinSteppedBackOff' part of global actor 'MainActor'
 39 |
 40 |   /** Default rejoin algorithm for individual channels */
 41 |   public static let rejoinSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- note: add '@MainActor' to make static property 'rejoinSteppedBackOff' part of global actor 'MainActor'
    |                     `- 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/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:48:21: note: add '@MainActor' to make static property 'encode' part of global actor 'MainActor'
 46 |
 47 |   /// Default encode function, utilizing JSONSerialization.data
 48 |   public static let encode: (Any) -> Data = { json in
    |                     |- note: add '@MainActor' to make static property 'encode' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     try! JSONSerialization
 50 |       .data(
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:57:21: note: add '@MainActor' to make static property 'decode' part of global actor 'MainActor'
 55 |
 56 |   /// Default decode function, utilizing JSONSerialization.jsonObject
 57 |   public static let decode: (Data) -> Any? = { data in
    |                     |- note: add '@MainActor' to make static property 'decode' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     guard
 59 |       let json =
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:36:21: note: add '@MainActor' to make static property 'reconnectSteppedBackOff' part of global actor 'MainActor'
 34 |
 35 |   /// Default reconnect algorithm for the socket
 36 |   public static let reconnectSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- note: add '@MainActor' to make static property 'reconnectSteppedBackOff' part of global actor 'MainActor'
    |                     `- 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 |   }
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 42 |     tries > 3 ? 10 : [1, 2, 5][tries - 1]
 43 |   }
<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: note: add '@MainActor' to make static property 'rejoinSteppedBackOff' part of global actor 'MainActor'
 39 |
 40 |   /** Default rejoin algorithm for individual channels */
 41 |   public static let rejoinSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- note: add '@MainActor' to make static property 'rejoinSteppedBackOff' part of global actor 'MainActor'
    |                     `- 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/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:48:21: note: add '@MainActor' to make static property 'encode' part of global actor 'MainActor'
 46 |
 47 |   /// Default encode function, utilizing JSONSerialization.data
 48 |   public static let encode: (Any) -> Data = { json in
    |                     |- note: add '@MainActor' to make static property 'encode' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     try! JSONSerialization
 50 |       .data(
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:57:21: note: add '@MainActor' to make static property 'decode' part of global actor 'MainActor'
 55 |
 56 |   /// Default decode function, utilizing JSONSerialization.jsonObject
 57 |   public static let decode: (Data) -> Any? = { data in
    |                     |- note: add '@MainActor' to make static property 'decode' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     guard
 59 |       let json =
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:36:21: note: add '@MainActor' to make static property 'reconnectSteppedBackOff' part of global actor 'MainActor'
 34 |
 35 |   /// Default reconnect algorithm for the socket
 36 |   public static let reconnectSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- note: add '@MainActor' to make static property 'reconnectSteppedBackOff' part of global actor 'MainActor'
    |                     `- 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 |   }
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 42 |     tries > 3 ? 10 : [1, 2, 5][tries - 1]
 43 |   }
<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: note: add '@MainActor' to make static property 'rejoinSteppedBackOff' part of global actor 'MainActor'
 39 |
 40 |   /** Default rejoin algorithm for individual channels */
 41 |   public static let rejoinSteppedBackOff: (Int) -> TimeInterval = { tries in
    |                     |- note: add '@MainActor' to make static property 'rejoinSteppedBackOff' part of global actor 'MainActor'
    |                     `- 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/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:48:21: note: add '@MainActor' to make static property 'encode' part of global actor 'MainActor'
 46 |
 47 |   /// Default encode function, utilizing JSONSerialization.data
 48 |   public static let encode: (Any) -> Data = { json in
    |                     |- note: add '@MainActor' to make static property 'encode' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     try! JSONSerialization
 50 |       .data(
/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 [#MutableGlobalVariable]
 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 [#MutableGlobalVariable]
 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:57:21: note: add '@MainActor' to make static property 'decode' part of global actor 'MainActor'
 55 |
 56 |   /// Default decode function, utilizing JSONSerialization.jsonObject
 57 |   public static let decode: (Data) -> Any? = { data in
    |                     |- note: add '@MainActor' to make static property 'decode' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     guard
 59 |       let json =
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[454/700] Compiling v3_utl.cc
[456/701] Compiling v3_skey.cc
[457/701] Compiling v3_pmaps.cc
[458/701] Compiling v3_ncons.cc
[459/701] Compiling v3_pcons.cc
[460/701] Compiling v3_ocsp.cc
[461/701] Compiling v3_lib.cc
[462/701] Compiling v3_genn.cc
[463/701] Compiling v3_int.cc
[464/701] Compiling v3_extku.cc
[465/701] Compiling v3_ia5.cc
[466/701] Compiling v3_cpols.cc
[467/701] Compiling v3_info.cc
[468/701] Compiling v3_enum.cc
[469/701] Compiling v3_bcons.cc
[470/701] Compiling v3_crld.cc
[471/701] Compiling v3_bitst.cc
[472/701] Compiling v3_conf.cc
[473/701] Compiling v3_alt.cc
[474/701] Compiling v3_akeya.cc
[475/701] Compiling v3_akey.cc
[476/701] Compiling t_x509a.cc
[477/701] Compiling t_x509.cc
[478/701] Compiling i2d_pr.cc
[479/701] Compiling t_crl.cc
[480/701] Compiling by_file.cc
[481/701] Compiling t_req.cc
[482/701] Compiling rsa_pss.cc
[483/701] Compiling name_print.cc
[484/701] Compiling policy.cc
[485/701] Compiling algorithm.cc
[486/701] Compiling by_dir.cc
[487/701] Compiling a_sign.cc
[488/701] Compiling voprf.cc
[489/701] Compiling trust_token.cc
[490/701] Compiling thread_win.cc
[491/701] Compiling a_verify.cc
[492/701] Compiling thread_none.cc
[493/701] Compiling a_digest.cc
[494/701] Compiling asn1_gen.cc
[495/701] Compiling thread.cc
[496/701] Compiling thread_pthread.cc
[497/701] Compiling wots.cc
[498/701] Compiling merkle.cc
[499/701] Compiling thash.cc
[500/701] Compiling sha512.cc
[501/701] Compiling fors.cc
[502/701] Compiling siphash.cc
[503/701] Compiling pmbtoken.cc
[504/701] Compiling slhdsa.cc
[505/701] Compiling sha256.cc
[506/701] Compiling stack.cc
[507/701] Compiling rsa_print.cc
[508/701] Compiling sha1.cc
[509/701] Compiling rsa_extra.cc
[510/701] Compiling rc4.cc
[511/701] Compiling refcount.cc
[512/701] Compiling windows.cc
[513/701] Compiling rsa_asn1.cc
[514/701] Compiling urandom.cc
[515/701] Compiling ios.cc
[516/701] Compiling trusty.cc
[517/701] Compiling rsa_crypt.cc
[518/701] Compiling passive.cc
[519/701] Compiling rand_extra.cc
[520/701] Compiling poly1305_arm_asm.S
[521/701] Compiling deterministic.cc
[522/701] Compiling getentropy.cc
[523/701] Compiling fork_detect.cc
[524/701] Compiling forkunsafe.cc
[525/701] Compiling poly1305_arm.cc
[526/701] Compiling pool.cc
[527/701] Compiling poly1305_vec.cc
[528/701] Compiling poly1305.cc
[529/701] Compiling pkcs7.cc
[531/701] Emitting module SwiftSyntax
[531/701] Compiling pkcs8_x509.cc
[532/701] Compiling pem_pkey.cc
[533/701] Compiling p5_pbev2.cc
[534/701] Compiling pkcs8.cc
[535/701] Compiling pkcs7_x509.cc
[536/701] Compiling pem_xaux.cc
[537/701] Compiling pem_pk8.cc
[538/701] Compiling pem_x509.cc
[539/701] Compiling pem_info.cc
[540/701] Compiling obj_xref.cc
[541/701] Compiling pem_lib.cc
[542/701] Compiling pem_oth.cc
[543/701] Compiling mldsa.cc
[544/701] Compiling pem_all.cc
[545/701] Compiling mem.cc
[545/701] Compiling obj.cc
[547/701] Compiling md5.cc
[548/701] Compiling md4.cc
[549/701] Compiling fips_shared_support.cc
[550/701] Compiling mlkem.cc
[551/701] Compiling lhash.cc
[552/701] Compiling poly_rq_mul.S
[553/701] Compiling hpke.cc
[554/701] Compiling sign.cc
[555/701] Compiling kyber.cc
[556/701] Compiling ex_data.cc
[557/701] Compiling hrss.cc
[558/701] Compiling scrypt.cc
[559/701] Compiling pbkdf.cc
[560/701] Compiling print.cc
[561/701] Compiling p_x25519_asn1.cc
[562/701] Compiling p_x25519.cc
[563/701] Compiling p_rsa_asn1.cc
[564/701] Compiling p_rsa.cc
[565/701] Compiling p_hkdf.cc
[566/701] Compiling p_ec_asn1.cc
[567/701] Compiling p_ed25519_asn1.cc
[568/701] Compiling p_ed25519.cc
[569/701] Compiling p_dsa_asn1.cc
[570/701] Compiling p_ec.cc
[571/701] Compiling p_dh_asn1.cc
[572/701] Compiling p_dh.cc
[573/701] Compiling evp_ctx.cc
[574/701] Compiling evp.cc
[575/701] Compiling evp_asn1.cc
[576/701] Compiling err.cc
[577/701] Compiling engine.cc
[578/701] Compiling ecdh_extra.cc
[579/701] Compiling hash_to_curve.cc
[580/701] Compiling ecdsa_asn1.cc
[581/701] Compiling ec_derive.cc
[582/701] Compiling ec_asn1.cc
[584/701] Compiling SwiftSyntax SyntaxEnum.swift
[585/701] Compiling SwiftSyntax SyntaxKind.swift
[586/701] Compiling SwiftSyntax SyntaxRewriter.swift
[587/701] Compiling SwiftSyntax SyntaxTraits.swift
[588/701] Compiling SwiftSyntax SyntaxVisitor.swift
[589/701] Compiling SwiftSyntax TokenKind.swift
[590/701] Compiling SwiftSyntax Tokens.swift
[591/701] Compiling SwiftSyntax TriviaPieces.swift
[592/701] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[592/701] Compiling dsa_asn1.cc
[593/701] Compiling dsa.cc
[594/701] Compiling params.cc
[595/701] Compiling des.cc
[596/701] Compiling digest_extra.cc
[597/701] Compiling dh_asn1.cc
[598/701] Compiling x25519-asm-arm.S
[599/701] Compiling spake25519.cc
[600/701] Compiling cpu_intel.cc
[601/701] Compiling cpu_arm_freebsd.cc
[602/701] Compiling crypto.cc
[603/701] Compiling cpu_arm_linux.cc
[604/701] Compiling curve25519_64_adx.cc
[605/701] Compiling bcm.cc
[606/701] Compiling curve25519.cc
[607/701] Compiling cpu_aarch64_openbsd.cc
[608/701] Compiling cpu_aarch64_linux.cc
[609/701] Compiling cpu_aarch64_win.cc
[610/701] Compiling cpu_aarch64_fuchsia.cc
[611/701] Compiling cpu_aarch64_sysreg.cc
[612/701] Compiling cpu_aarch64_apple.cc
[613/701] Compiling conf.cc
[614/701] Compiling e_rc4.cc
[615/701] Compiling e_tls.cc
[616/701] Compiling e_rc2.cc
[617/701] Compiling tls_cbc.cc
[618/701] Compiling e_null.cc
[619/701] Compiling e_aesctrhmac.cc
[620/701] Compiling derive_key.cc
[620/701] Compiling e_des.cc
[622/701] Compiling e_chacha20poly1305.cc
[623/701] Compiling cipher_extra.cc
[624/701] Compiling chacha.cc
[625/701] Compiling e_aesgcmsiv.cc
[626/701] Compiling unicode.cc
[627/701] Compiling buf.cc
[628/701] Compiling cbs.cc
[629/701] Compiling cbb.cc
[630/701] Compiling bn_asn1.cc
[631/701] Compiling ber.cc
[632/701] Compiling asn1_compat.cc
[633/701] Compiling convert.cc
[634/701] Compiling blake2.cc
[635/701] Compiling fd.cc
[636/701] Compiling printf.cc
[637/701] Compiling file.cc
[638/701] Compiling hexdump.cc
[639/701] Compiling pair.cc
[640/701] Compiling tasn_utl.cc
[641/701] Compiling errno.cc
[642/701] Compiling base64.cc
[643/701] Compiling bio_mem.cc
[644/701] Compiling tasn_typ.cc
[645/701] Compiling tasn_fre.cc
[646/701] Compiling bio.cc
[647/701] Compiling posix_time.cc
[648/701] Compiling tasn_dec.cc
[649/701] Compiling tasn_new.cc
[650/701] Compiling asn_pack.cc
[651/701] Compiling f_string.cc
[652/701] Compiling tasn_enc.cc
[653/701] Compiling f_int.cc
[654/701] Compiling asn1_par.cc
[655/701] Compiling a_strnid.cc
[656/701] Compiling a_octet.cc
[657/701] Compiling a_time.cc
[658/701] Compiling a_strex.cc
[659/701] Compiling a_int.cc
[660/701] Compiling a_object.cc
[661/701] Compiling a_i2d_fp.cc
[662/701] Compiling a_mbstr.cc
[663/701] Compiling a_dup.cc
[664/701] Compiling a_gentm.cc
[666/709] Compiling CryptoBoringWrapper EllipticCurve.swift
[667/709] Compiling CryptoBoringWrapper RandomBytes.swift
[668/709] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[669/709] Emitting module CryptoBoringWrapper
[670/709] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[671/709] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[672/709] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[673/709] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[675/710] Compiling SwiftSyntax RawSyntaxNodesC.swift
[676/710] Compiling SwiftSyntax RawSyntaxNodesD.swift
[677/710] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[678/710] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[679/710] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[680/710] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[681/710] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[682/710] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[683/710] Compiling SwiftSyntax RawSyntaxValidation.swift
[684/781] Compiling Crypto SymmetricKeys.swift
[685/781] Compiling Crypto HMAC.swift
[686/781] Compiling Crypto MACFunctions.swift
[687/781] Compiling Crypto MessageAuthenticationCode.swift
[688/781] Compiling Crypto AES.swift
[689/781] Compiling Crypto ECDSASignature_boring.swift
[690/781] Compiling Crypto ECDSA_boring.swift
[691/781] Compiling Crypto EdDSA_boring.swift
[692/781] Compiling Crypto ECDSA.swift
[693/781] Compiling Crypto Ed25519.swift
[694/790] Compiling Crypto HKDF.swift
[695/790] Compiling Crypto AESWrap.swift
[696/790] Compiling Crypto AESWrap_boring.swift
[697/790] Compiling Crypto Ed25519_boring.swift
[698/790] Compiling Crypto NISTCurvesKeys_boring.swift
[699/790] Compiling Crypto X25519Keys_boring.swift
[700/790] Compiling Crypto Curve25519.swift
[701/790] Compiling Crypto Ed25519Keys.swift
[702/790] Compiling Crypto NISTCurvesKeys.swift
[703/790] Compiling Crypto X25519Keys.swift
[704/790] Compiling Crypto HPKE-Ciphersuite.swift
[705/790] Compiling Crypto HPKE-KDF.swift
[706/790] Compiling Crypto HPKE-KexKeyDerivation.swift
[707/790] Compiling Crypto HPKE-LabeledExtract.swift
[708/790] Compiling Crypto HPKE-Utils.swift
[709/790] Compiling Crypto DHKEM.swift
[710/790] Compiling Crypto HPKE-KEM-Curve25519.swift
[711/790] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[712/790] Compiling Crypto HPKE-KEM.swift
[713/790] Compiling Crypto HPKE-Errors.swift
[714/790] Compiling Crypto HPKE.swift
[715/790] Compiling Crypto HPKE-Context.swift
[716/790] Compiling Crypto HPKE-KeySchedule.swift
[717/790] Compiling Crypto HPKE-Modes.swift
[718/790] Compiling Crypto Insecure.swift
[719/790] Compiling Crypto Insecure_HashFunctions.swift
[720/790] Compiling Crypto KEM.swift
[721/790] Compiling Crypto ECDH_boring.swift
[722/790] Compiling Crypto DH.swift
[723/790] Compiling Crypto ECDH.swift
[724/790] Compiling Crypto PKCS8PrivateKey.swift
[725/790] Compiling Crypto SEC1PrivateKey.swift
[726/790] Compiling Crypto SubjectPublicKeyInfo.swift
[727/790] Compiling Crypto CryptoKitErrors.swift
[728/790] Compiling Crypto Digest_boring.swift
[729/790] Compiling Crypto Digest.swift
[730/790] Compiling Crypto Digests.swift
[731/790] Compiling Crypto HashFunctions.swift
[732/790] Compiling Crypto HashFunctions_SHA2.swift
[733/790] Compiling Crypto HPKE-AEAD.swift
[734/790] Compiling Crypto AES-GCM.swift
[735/790] Compiling Crypto AES-GCM_boring.swift
[736/790] Compiling Crypto ChaChaPoly_boring.swift
[737/790] Compiling Crypto ChaChaPoly.swift
[738/790] Compiling Crypto Cipher.swift
[739/790] Compiling Crypto Nonces.swift
[740/790] Compiling Crypto ASN1.swift
[741/790] Compiling Crypto ASN1Any.swift
[742/790] Compiling Crypto ASN1BitString.swift
[743/790] Compiling Crypto ASN1Boolean.swift
[744/790] Emitting module Crypto
[745/790] Compiling Crypto ASN1Identifier.swift
[746/790] Compiling Crypto ASN1Integer.swift
[747/790] Compiling Crypto ASN1Null.swift
[748/790] Compiling Crypto ASN1OctetString.swift
[749/790] Compiling Crypto ASN1Strings.swift
[750/790] Compiling Crypto ArraySliceBigint.swift
[751/790] Compiling Crypto GeneralizedTime.swift
[752/790] Compiling Crypto ObjectIdentifier.swift
[753/790] Compiling Crypto ECDSASignature.swift
[754/790] Compiling Crypto PEMDocument.swift
[755/790] Compiling Crypto Signature.swift
[756/790] Compiling Crypto CryptoKitErrors_boring.swift
[757/790] Compiling Crypto RNG_boring.swift
[758/790] Compiling Crypto SafeCompare_boring.swift
[759/790] Compiling Crypto Zeroization_boring.swift
[760/790] Compiling Crypto PrettyBytes.swift
[761/790] Compiling Crypto SafeCompare.swift
[762/790] Compiling Crypto SecureBytes.swift
[763/790] Compiling Crypto Zeroization.swift
[765/814] Compiling Auth SessionStorage.swift
[766/814] Compiling Auth URLOpener.swift
[767/814] Compiling Auth AuthLocalStorage.swift
[768/817] Compiling Auth CodeVerifierStorage.swift
[769/817] Compiling Auth Constants.swift
[770/817] Compiling Auth Dependencies.swift
[771/817] Compiling Auth Deprecated.swift
[772/817] Compiling Auth Exports.swift
[773/817] Compiling Auth APIClient.swift
[774/817] Compiling Auth AuthMFA.swift
[775/817] Compiling Auth AuthStateChangeListener.swift
[776/817] Compiling Auth Defaults.swift
[777/817] Compiling Auth Keychain.swift
/host/spi-builder-workspace/Sources/Auth/Internal/SessionManager.swift:88:17: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 86 |               ],
 87 |               body: configuration.encoder.encode(
 88 |                 UserCredentials(refreshToken: refreshToken)
    |                 `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 89 |               )
 90 |             )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[778/817] Compiling Auth PKCE.swift
/host/spi-builder-workspace/Sources/Auth/Internal/SessionManager.swift:88:17: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 86 |               ],
 87 |               body: configuration.encoder.encode(
 88 |                 UserCredentials(refreshToken: refreshToken)
    |                 `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 89 |               )
 90 |             )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[779/817] Compiling Auth SessionManager.swift
/host/spi-builder-workspace/Sources/Auth/Internal/SessionManager.swift:88:17: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 86 |               ],
 87 |               body: configuration.encoder.encode(
 88 |                 UserCredentials(refreshToken: refreshToken)
    |                 `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 89 |               )
 90 |             )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[780/817] Compiling Auth EventEmitter.swift
[781/817] Compiling Auth FixedWidthInteger+Random.swift
[782/817] Compiling Auth Helpers.swift
[783/817] Emitting module Auth
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:34:14: warning: static property 'globalClientID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
  32 |
  33 | public actor AuthClient {
  34 |   static var globalClientID = 0
     |              |- warning: static property 'globalClientID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
     |              |- note: convert 'globalClientID' to a 'let' constant to make 'Sendable' shared state immutable
     |              |- note: add '@MainActor' to make static property 'globalClientID' part of global actor 'MainActor'
     |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  35 |   nonisolated let clientID: AuthClientID
  36 |
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[784/817] Compiling Auth AuthAdmin.swift
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:34:14: warning: static property 'globalClientID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
  32 |
  33 | public actor AuthClient {
  34 |   static var globalClientID = 0
     |              |- warning: static property 'globalClientID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
     |              |- note: convert 'globalClientID' to a 'let' constant to make 'Sendable' shared state immutable
     |              |- note: add '@MainActor' to make static property 'globalClientID' part of global actor 'MainActor'
     |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  35 |   nonisolated let clientID: AuthClientID
  36 |
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:342:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 340 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 341 |         body: configuration.encoder.encode(
 342 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 343 |             email: email,
 344 |             password: password,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:369:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 367 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 368 |         body: configuration.encoder.encode(
 369 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 370 |             password: password,
 371 |             phone: phone,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:1224:15: warning: pattern that the region based isolation checker does not understand how to check. Please file a bug; this is an error in the Swift 6 language mode
1222 |     queryParams: [(name: String, value: String?)] = []
1223 |   ) async throws {
1224 |     try await linkIdentity(
     |               `- warning: pattern that the region based isolation checker does not understand how to check. Please file a bug; this is an error in the Swift 6 language mode
1225 |       provider: provider,
1226 |       scopes: scopes,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[785/817] Compiling Auth AuthClient.swift
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:34:14: warning: static property 'globalClientID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
  32 |
  33 | public actor AuthClient {
  34 |   static var globalClientID = 0
     |              |- warning: static property 'globalClientID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
     |              |- note: convert 'globalClientID' to a 'let' constant to make 'Sendable' shared state immutable
     |              |- note: add '@MainActor' to make static property 'globalClientID' part of global actor 'MainActor'
     |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  35 |   nonisolated let clientID: AuthClientID
  36 |
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:342:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 340 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 341 |         body: configuration.encoder.encode(
 342 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 343 |             email: email,
 344 |             password: password,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:369:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 367 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 368 |         body: configuration.encoder.encode(
 369 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 370 |             password: password,
 371 |             phone: phone,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:1224:15: warning: pattern that the region based isolation checker does not understand how to check. Please file a bug; this is an error in the Swift 6 language mode
1222 |     queryParams: [(name: String, value: String?)] = []
1223 |   ) async throws {
1224 |     try await linkIdentity(
     |               `- warning: pattern that the region based isolation checker does not understand how to check. Please file a bug; this is an error in the Swift 6 language mode
1225 |       provider: provider,
1226 |       scopes: scopes,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[786/817] Compiling Auth AuthClientConfiguration.swift
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:34:14: warning: static property 'globalClientID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
  32 |
  33 | public actor AuthClient {
  34 |   static var globalClientID = 0
     |              |- warning: static property 'globalClientID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
     |              |- note: convert 'globalClientID' to a 'let' constant to make 'Sendable' shared state immutable
     |              |- note: add '@MainActor' to make static property 'globalClientID' part of global actor 'MainActor'
     |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  35 |   nonisolated let clientID: AuthClientID
  36 |
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:342:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 340 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 341 |         body: configuration.encoder.encode(
 342 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 343 |             email: email,
 344 |             password: password,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:369:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 367 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 368 |         body: configuration.encoder.encode(
 369 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 370 |             password: password,
 371 |             phone: phone,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:1224:15: warning: pattern that the region based isolation checker does not understand how to check. Please file a bug; this is an error in the Swift 6 language mode
1222 |     queryParams: [(name: String, value: String?)] = []
1223 |   ) async throws {
1224 |     try await linkIdentity(
     |               `- warning: pattern that the region based isolation checker does not understand how to check. Please file a bug; this is an error in the Swift 6 language mode
1225 |       provider: provider,
1226 |       scopes: scopes,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[787/817] Compiling Auth AuthError.swift
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:34:14: warning: static property 'globalClientID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
  32 |
  33 | public actor AuthClient {
  34 |   static var globalClientID = 0
     |              |- warning: static property 'globalClientID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
     |              |- note: convert 'globalClientID' to a 'let' constant to make 'Sendable' shared state immutable
     |              |- note: add '@MainActor' to make static property 'globalClientID' part of global actor 'MainActor'
     |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  35 |   nonisolated let clientID: AuthClientID
  36 |
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:342:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 340 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 341 |         body: configuration.encoder.encode(
 342 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 343 |             email: email,
 344 |             password: password,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:369:11: warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 367 |         query: [URLQueryItem(name: "grant_type", value: "password")],
 368 |         body: configuration.encoder.encode(
 369 |           UserCredentials(
     |           `- warning: 'UserCredentials' is deprecated: Access to UserCredentials will be removed on the next major release. [#DeprecatedDeclaration]
 370 |             password: password,
 371 |             phone: phone,
/host/spi-builder-workspace/Sources/Auth/AuthClient.swift:1224:15: warning: pattern that the region based isolation checker does not understand how to check. Please file a bug; this is an error in the Swift 6 language mode
1222 |     queryParams: [(name: String, value: String?)] = []
1223 |   ) async throws {
1224 |     try await linkIdentity(
     |               `- warning: pattern that the region based isolation checker does not understand how to check. Please file a bug; this is an error in the Swift 6 language mode
1225 |       provider: provider,
1226 |       scopes: scopes,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[788/817] Compiling Auth KeychainLocalStorage.swift
/host/spi-builder-workspace/Sources/Auth/Types.swift:503:10: warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it. [#DeprecatedDeclaration]
 501 |     self.password = password
 502 |     self.nonce = nonce
 503 |     self.emailChangeToken = emailChangeToken
     |          `- warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it. [#DeprecatedDeclaration]
 504 |     self.data = data
 505 |   }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[789/817] Compiling Auth WinCredLocalStorage.swift
/host/spi-builder-workspace/Sources/Auth/Types.swift:503:10: warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it. [#DeprecatedDeclaration]
 501 |     self.password = password
 502 |     self.nonce = nonce
 503 |     self.emailChangeToken = emailChangeToken
     |          `- warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it. [#DeprecatedDeclaration]
 504 |     self.data = data
 505 |   }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[790/817] Compiling Auth Types.swift
/host/spi-builder-workspace/Sources/Auth/Types.swift:503:10: warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it. [#DeprecatedDeclaration]
 501 |     self.password = password
 502 |     self.nonce = nonce
 503 |     self.emailChangeToken = emailChangeToken
     |          `- warning: 'emailChangeToken' is deprecated: This is an old field, stop relying on it. [#DeprecatedDeclaration]
 504 |     self.data = data
 505 |   }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[792/824] Compiling Supabase Constants.swift
[793/824] Emitting module Supabase
/host/spi-builder-workspace/Sources/Supabase/SupabaseClient.swift:70: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 [#DeprecatedDeclaration]
 68 |   }
 69 |
 70 |   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 [#DeprecatedDeclaration]
 71 |
 72 |   /// Realtime client for Supabase
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[794/824] Compiling Supabase Types.swift
[795/824] Compiling Supabase Exports.swift
[796/824] Compiling Supabase Deprecated.swift
[797/824] Compiling Supabase SupabaseClient.swift
/host/spi-builder-workspace/Sources/Supabase/SupabaseClient.swift:70: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 [#DeprecatedDeclaration]
 68 |   }
 69 |
 70 |   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 [#DeprecatedDeclaration]
 71 |
 72 |   /// Realtime client for Supabase
/host/spi-builder-workspace/Sources/Supabase/SupabaseClient.swift:187: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 [#DeprecatedDeclaration]
185 |
186 |     _realtime = UncheckedSendable(
187 |       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 [#DeprecatedDeclaration]
188 |         supabaseURL.appendingPathComponent("/realtime/v1").absoluteString,
189 |         headers: _headers.dictionary,
/host/spi-builder-workspace/Sources/Supabase/SupabaseClient.swift:246:22: warning: 'subscriptions' is deprecated: renamed to 'channels' [#DeprecatedDeclaration]
244 |   /// Returns all Realtime channels.
245 |   public var channels: [RealtimeChannelV2] {
246 |     Array(realtimeV2.subscriptions.values)
    |                      |- warning: 'subscriptions' is deprecated: renamed to 'channels' [#DeprecatedDeclaration]
    |                      `- note: use 'channels' instead
247 |   }
248 |
/host/spi-builder-workspace/Sources/Supabase/SupabaseClient.swift:389:5: warning: 'realtime' is deprecated: Use realtimeV2 [#DeprecatedDeclaration]
387 |     }
388 |
389 |     realtime.setAuth(accessToken)
    |     `- warning: 'realtime' is deprecated: Use realtimeV2 [#DeprecatedDeclaration]
390 |     await realtimeV2.setAuth(accessToken)
391 |   }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[827/884] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[828/884] Compiling SwiftDiagnostics Message.swift
[829/885] Compiling SwiftBasicFormat Syntax+Extensions.swift
[830/885] Compiling SwiftDiagnostics FixIt.swift
[831/885] Compiling SwiftParser Attributes.swift
[832/885] Compiling SwiftParser Availability.swift
[833/885] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[834/885] Emitting module SwiftDiagnostics
[835/885] Compiling SwiftDiagnostics Note.swift
[836/885] Emitting module SwiftBasicFormat
[837/885] Compiling SwiftBasicFormat InferIndentation.swift
[838/885] Compiling SwiftBasicFormat Indenter.swift
[839/885] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[840/885] Compiling SwiftParser CharacterInfo.swift
[841/885] Compiling SwiftParser CollectionNodes+Parsable.swift
[842/885] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[843/885] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[845/886] Compiling SwiftBasicFormat BasicFormat.swift
[847/887] Compiling SwiftParser LexemeSequence.swift
[848/887] Compiling SwiftParser Lexer.swift
[849/887] Compiling SwiftParser RegexLiteralLexer.swift
[850/887] Compiling SwiftParser UnicodeScalarExtensions.swift
[851/887] Compiling SwiftParser Lookahead.swift
[852/887] Compiling SwiftParser LoopProgressCondition.swift
[853/892] Emitting module SwiftParser
[858/892] Compiling SwiftParser Declarations.swift
[859/892] Compiling SwiftParser Directives.swift
[860/892] Compiling SwiftParser Modifiers.swift
[861/892] Compiling SwiftParser Names.swift
[862/892] Compiling SwiftParser Nominals.swift
[863/892] Compiling SwiftParser Parameters.swift
[864/892] Compiling SwiftParser ParseSourceFile.swift
[865/892] Compiling SwiftParser Parser.swift
[866/892] Compiling SwiftParser Patterns.swift
[867/892] Compiling SwiftParser Recovery.swift
[868/892] Compiling SwiftParser Specifiers.swift
[869/892] Compiling SwiftParser Statements.swift
[870/892] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[871/892] Compiling SwiftParser StringLiterals.swift
[872/892] Compiling SwiftParser SwiftParserCompatibility.swift
[873/892] Compiling SwiftParser SwiftVersion.swift
[874/892] Compiling SwiftParser SyntaxUtils.swift
[875/892] Compiling SwiftParser TokenConsumer.swift
[876/892] Compiling SwiftParser TokenPrecedence.swift
[877/892] Compiling SwiftParser TokenSpec.swift
[878/892] Compiling SwiftParser TokenSpecSet.swift
[879/892] Compiling SwiftParser TopLevel.swift
[880/892] Compiling SwiftParser TriviaParser.swift
[881/892] Compiling SwiftParser Types.swift
[882/892] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[883/892] Compiling SwiftParser Expressions.swift
[884/892] Compiling SwiftParser IncrementalParseTransition.swift
[885/892] Compiling SwiftParser IsValidIdentifier.swift
[886/892] Compiling SwiftParser Cursor.swift
[887/892] Compiling SwiftParser Lexeme.swift
[888/892] Compiling SwiftParser ExperimentalFeatures.swift
[889/892] Compiling SwiftParser IsLexerClassified.swift
[890/892] Compiling SwiftParser LayoutNodes+Parsable.swift
[891/892] Compiling SwiftParser Parser+TokenSpecSet.swift
[892/892] Compiling SwiftParser TokenSpecStaticMembers.swift
[894/906] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[895/907] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[896/907] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[897/907] Compiling SwiftParserDiagnostics Utils.swift
[898/907] Emitting module SwiftParserDiagnostics
[899/907] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[900/907] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[901/907] Compiling SwiftParserDiagnostics PresenceUtils.swift
[902/907] Compiling SwiftParserDiagnostics MissingNodesError.swift
[903/907] Compiling SwiftParserDiagnostics MissingTokenError.swift
[904/907] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[905/907] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[906/907] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[907/907] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[909/923] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[910/923] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[911/924] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[912/924] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[913/924] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[914/924] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[915/924] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[916/924] Emitting module SwiftSyntaxBuilder
[917/924] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[918/924] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[919/924] Compiling SwiftSyntaxBuilder Indenter.swift
[920/924] Compiling SwiftSyntaxBuilder ListBuilder.swift
[921/924] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[922/924] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[923/924] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[924/924] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[926/928] Compiling InlineSnapshotTesting Exports.swift
[927/928] Emitting module InlineSnapshotTesting
[928/928] Compiling InlineSnapshotTesting AssertInlineSnapshot.swift
[930/937] Compiling TestHelpers WithMainSerialExecutor+Windows.swift
[931/937] Compiling TestHelpers AsyncSequence.swift
[932/937] Compiling TestHelpers Exports.swift
[933/937] Emitting module TestHelpers
[934/937] Compiling TestHelpers InMemoryLocalStorage.swift
[935/937] 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(
[936/937] Compiling TestHelpers URLRequestSnapshot.swift
[937/937] Compiling TestHelpers HTTPClientMock.swift
Build complete! (247.66s)
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",
        "Exports.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",
        "Exports.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",
        "Exports.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",
        "Exports.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",
        "Exports.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" : [
        "Exports.swift",
        "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",
        "Exports.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.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.