Build Information
Failed to build swift-api-client, reference 1.44.0 (b098f1
), with Swift 6.2 (beta) for Android on 23 Jun 2025 08:23:56 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
Build Log
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
[382/510] Compiling SwiftAPIClient WithSynchronizedAccess.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
17 | task: @escaping @Sendable () async throws -> T
18 | ) async throws -> T {
19 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
20 | if let task = cached as? Task<T, Error> {
21 | return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
56 | task: @escaping @Sendable () async -> T
57 | ) async -> T {
58 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
59 | if let task = cached as? Task<T, Error> {
60 | // logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
94 | @discardableResult
95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
96 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
97 | return nil
98 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
17 | task: @escaping @Sendable () async throws -> T
18 | ) async throws -> T {
19 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
20 | if let task = cached as? Task<T, Error> {
21 | return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
56 | task: @escaping @Sendable () async -> T
57 | ) async -> T {
58 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
59 | if let task = cached as? Task<T, Error> {
60 | // logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
94 | @discardableResult
95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
96 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
97 | return nil
98 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
17 | task: @escaping @Sendable () async throws -> T
18 | ) async throws -> T {
19 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
20 | if let task = cached as? Task<T, Error> {
21 | return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
56 | task: @escaping @Sendable () async -> T
57 | ) async -> T {
58 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
59 | if let task = cached as? Task<T, Error> {
60 | // logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
94 | @discardableResult
95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
96 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
97 | return nil
98 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
17 | task: @escaping @Sendable () async throws -> T
18 | ) async throws -> T {
19 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
20 | if let task = cached as? Task<T, Error> {
21 | return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
56 | task: @escaping @Sendable () async -> T
57 | ) async -> T {
58 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
59 | if let task = cached as? Task<T, Error> {
60 | // logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
94 | @discardableResult
95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
96 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
97 | return nil
98 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
17 | task: @escaping @Sendable () async throws -> T
18 | ) async throws -> T {
19 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
20 | if let task = cached as? Task<T, Error> {
21 | return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
56 | task: @escaping @Sendable () async -> T
57 | ) async -> T {
58 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
59 | if let task = cached as? Task<T, Error> {
60 | // logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
94 | @discardableResult
95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
96 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
97 | return nil
98 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
17 | task: @escaping @Sendable () async throws -> T
18 | ) async throws -> T {
19 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
20 | if let task = cached as? Task<T, Error> {
21 | return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
56 | task: @escaping @Sendable () async -> T
57 | ) async -> T {
58 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
59 | if let task = cached as? Task<T, Error> {
60 | // logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
94 | @discardableResult
95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
96 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
97 | return nil
98 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
17 | task: @escaping @Sendable () async throws -> T
18 | ) async throws -> T {
19 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
20 | if let task = cached as? Task<T, Error> {
21 | return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
56 | task: @escaping @Sendable () async -> T
57 | ) async -> T {
58 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
59 | if let task = cached as? Task<T, Error> {
60 | // logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
94 | @discardableResult
95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
96 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
97 | return nil
98 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
17 | task: @escaping @Sendable () async throws -> T
18 | ) async throws -> T {
19 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
20 | if let task = cached as? Task<T, Error> {
21 | return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
56 | task: @escaping @Sendable () async -> T
57 | ) async -> T {
58 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
59 | if let task = cached as? Task<T, Error> {
60 | // logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
94 | @discardableResult
95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
96 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
97 | return nil
98 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
17 | task: @escaping @Sendable () async throws -> T
18 | ) async throws -> T {
19 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
20 | if let task = cached as? Task<T, Error> {
21 | return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
56 | task: @escaping @Sendable () async -> T
57 | ) async -> T {
58 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
59 | if let task = cached as? Task<T, Error> {
60 | // logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
94 | @discardableResult
95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
96 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
97 | return nil
98 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
17 | task: @escaping @Sendable () async throws -> T
18 | ) async throws -> T {
19 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
20 | if let task = cached as? Task<T, Error> {
21 | return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
56 | task: @escaping @Sendable () async -> T
57 | ) async -> T {
58 | if let cached = await Barriers.shared.tasks[taskIdentifier] {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
59 | if let task = cached as? Task<T, Error> {
60 | // logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
94 | @discardableResult
95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
96 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
97 | return nil
98 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
| `- warning: non-sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | return nil
125 | }
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
| `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 | public typealias Element = (key: Key, value: Value)
3 | @inlinable public init()
[392/510] Emitting module SwiftAPIClient
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
42 | final class SessionDelegateProxy: NSObject {
43 |
44 | var configs: APIClient.Configs?
| `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
45 | var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
46 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
[403/510] Compiling SwiftAPIClient APIClient.swift
[404/510] Compiling SwiftAPIClient APIClientCaller.swift
[405/510] Compiling SwiftAPIClient APIClientConfigs.swift
[406/510] Compiling SwiftAPIClient HTTPClient.swift
[407/510] Compiling SwiftAPIClient HTTPDownloadClient.swift
[408/510] Compiling SwiftAPIClient HTTPPublisher.swift
[409/510] Compiling SwiftAPIClient HTTPUploadClient.swift
[410/510] Compiling SwiftAPIClient URLSession+Client.swift
[411/510] Compiling SwiftAPIClient Async++.swift
[412/510] Compiling SwiftAPIClient String++.swift
[413/510] Compiling SwiftAPIClient MultipartFormDataEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[414/510] Compiling SwiftAPIClient ParametersEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[415/510] Compiling SwiftAPIClient ParametersValue.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[416/510] Compiling SwiftAPIClient QueryEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[417/510] Compiling SwiftAPIClient HTTPHeadersEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[418/510] Compiling SwiftAPIClient PlainCodingKey.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[419/510] Compiling SwiftAPIClient Ref.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[420/510] Compiling SwiftAPIClient URLQueryEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[421/510] Compiling SwiftAPIClient ConsoleStyle.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[432/510] Compiling SwiftAPIClient ContentSerializer.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[433/510] Compiling SwiftAPIClient ContentType.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[434/510] Compiling SwiftAPIClient Errors.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[435/510] Compiling SwiftAPIClient HTTPFields.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[436/510] Compiling SwiftAPIClient HTTPRequestComponents.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[437/510] Compiling SwiftAPIClient LoggingComponent.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[438/510] Compiling SwiftAPIClient Mockable.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[439/510] Compiling SwiftAPIClient RedirectBehaviour.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[440/510] Compiling SwiftAPIClient Serializer.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | ) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | ) -> Self {
21 | MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | ) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[451/510] Compiling SwiftAPIClient TimeoutError.swift
[461/510] Compiling SwiftAPIClient URLComponentBuilder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | let id: (HTTPRequestComponents) -> ID
63 |
64 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | request: HTTPRequestComponents,
66 | configs: APIClient.Configs,
[462/510] Compiling SwiftAPIClient URLResponse++.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | let id: (HTTPRequestComponents) -> ID
63 |
64 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | request: HTTPRequestComponents,
66 | configs: APIClient.Configs,
[463/510] Compiling SwiftAPIClient Imports.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | let id: (HTTPRequestComponents) -> ID
63 |
64 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | request: HTTPRequestComponents,
66 | configs: APIClient.Configs,
[464/510] Compiling SwiftAPIClient Macros.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | let id: (HTTPRequestComponents) -> ID
63 |
64 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | request: HTTPRequestComponents,
66 | configs: APIClient.Configs,
[465/510] Compiling SwiftAPIClient AuthModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | let id: (HTTPRequestComponents) -> ID
63 |
64 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | request: HTTPRequestComponents,
66 | configs: APIClient.Configs,
[466/510] Compiling SwiftAPIClient BackgroundModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | let id: (HTTPRequestComponents) -> ID
63 |
64 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | request: HTTPRequestComponents,
66 | configs: APIClient.Configs,
[467/510] Compiling SwiftAPIClient CodersModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | let id: (HTTPRequestComponents) -> ID
63 |
64 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | request: HTTPRequestComponents,
66 | configs: APIClient.Configs,
[468/510] Compiling SwiftAPIClient ErrorDecodeModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | let id: (HTTPRequestComponents) -> ID
63 |
64 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | request: HTTPRequestComponents,
66 | configs: APIClient.Configs,
[469/510] Compiling SwiftAPIClient ErrorHandler.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | let id: (HTTPRequestComponents) -> ID
63 |
64 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | request: HTTPRequestComponents,
66 | configs: APIClient.Configs,
[470/510] Compiling SwiftAPIClient FileIDLine.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | let id: (HTTPRequestComponents) -> ID
63 |
64 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | request: HTTPRequestComponents,
66 | configs: APIClient.Configs,
[471/510] Compiling SwiftAPIClient ResponseWrapModifires.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[472/510] Compiling SwiftAPIClient RetryModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[473/510] Compiling SwiftAPIClient ThrottleModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[474/510] Compiling SwiftAPIClient TimeoutModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[475/510] Compiling SwiftAPIClient TokenCacheService.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[476/510] Compiling SwiftAPIClient TokenRefresher.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[477/510] Compiling SwiftAPIClient URLSessionModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[478/510] Compiling SwiftAPIClient WaitForConnectionModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[479/510] Compiling SwiftAPIClient RequestBuilder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[480/510] Compiling SwiftAPIClient AsyncValue.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | count += 1
61 | try await withThrowingSynchronizedAccess(id: id) {
62 | try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | }
64 | res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | let maxCount: Int
46 |
47 | func execute<T>(
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | request: HTTPRequestComponents,
49 | configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | Task {
80 | try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | await cache.removeResponse(for: requestID)
| `- warning: capture of non-sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | }
83 | return (value, httpResponse)
BUILD FAILURE 6.2 android