Build Information
Successful build of swift-api-client, reference 1.44.0 (b098f1
), with Swift 6.2 (beta) for Linux on 23 Jun 2025 08:24:00 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
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()
[411/510] Compiling SwiftAPIClient URLSessionDelegateWrapper.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()
[412/510] Compiling SwiftAPIClient UpdateMetrics.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()
[413/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()
[423/510] Compiling SwiftAPIClient ContentSerializer.swift
[424/510] Compiling SwiftAPIClient ContentType.swift
[425/510] Compiling SwiftAPIClient Errors.swift
[426/510] Compiling SwiftAPIClient HTTPFields.swift
[427/510] Compiling SwiftAPIClient HTTPRequestComponents.swift
[428/510] Compiling SwiftAPIClient LoggingComponent.swift
[429/510] Compiling SwiftAPIClient Mockable.swift
[430/510] Compiling SwiftAPIClient RedirectBehaviour.swift
[431/510] Compiling SwiftAPIClient Serializer.swift
[432/510] Compiling SwiftAPIClient TimeoutError.swift
[433/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>
[434/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>
[435/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>
[436/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>
[437/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>
[438/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>
[439/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>
[440/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>
[441/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>
[442/510] Compiling SwiftAPIClient AnyAsyncSequence.swift
[443/510] Compiling SwiftAPIClient AnyEncodable.swift
[444/510] Compiling SwiftAPIClient ContentEncoder.swift
[445/510] Compiling SwiftAPIClient DataDecoder.swift
[446/510] Compiling SwiftAPIClient EncodingStrategies.swift
[447/510] Compiling SwiftAPIClient ErrorDecoder.swift
[448/510] Compiling SwiftAPIClient FormURLEncoder.swift
[449/510] Compiling SwiftAPIClient HeadersEncoder.swift
[450/510] Compiling SwiftAPIClient JSONContentEncoders.swift
[451/510] Compiling SwiftAPIClient MultipartFormData.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>
/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>
/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>
/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>
/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>
/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>
/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>
/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>
/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>
[481/510] Compiling SwiftAPIClient ResponseWrapModifires.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,
[482/510] Compiling SwiftAPIClient RetryModifier.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,
[483/510] Compiling SwiftAPIClient ThrottleModifier.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,
[484/510] Compiling SwiftAPIClient TimeoutModifiers.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,
[485/510] Compiling SwiftAPIClient TokenCacheService.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,
[486/510] Compiling SwiftAPIClient TokenRefresher.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,
[487/510] Compiling SwiftAPIClient URLSessionModifiers.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,
[488/510] Compiling SwiftAPIClient WaitForConnectionModifier.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,
[489/510] Compiling SwiftAPIClient RequestBuilder.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,
[490/510] Compiling SwiftAPIClient AsyncValue.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,
/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,
/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,
/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,
/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,
/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,
/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,
/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,
/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,
/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,
/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,
/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,
Build complete! (259.49s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-http-types",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-http-types.git"
},
{
"identity" : "swift-metrics",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-metrics.git"
},
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "509.0.0",
"upper_bound" : "601.0.0-prerelease"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-syntax"
}
],
"manifest_display_name" : "swift-api-client",
"name" : "swift-api-client",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "5.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SwiftAPIClient",
"targets" : [
"SwiftAPIClient"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SwiftAPIClientMacros",
"targets" : [
"SwiftAPIClientMacros"
],
"type" : {
"macro" : null
}
}
],
"targets" : [
{
"c99name" : "SwiftAPIClientTests",
"module_type" : "SwiftTarget",
"name" : "SwiftAPIClientTests",
"path" : "Tests/SwiftAPIClientTests",
"sources" : [
"CURLTests.swift",
"EncodersTests/MultipartFormDataTests.swift",
"HTTPHeadersEncoderTests.swift",
"Modifiers/AuthModifierTests.swift",
"Modifiers/ErrorDecodingTests.swift",
"Modifiers/HTTPResponseValidatorTests.swift",
"Modifiers/LogLevelModifierTests.swift",
"Modifiers/MockResponsesTests.swift",
"Modifiers/RequestCompressionTests.swift",
"Modifiers/RequestModifiersTests.swift",
"NetworkClientTests.swift",
"TestUtils/Client+Ext.swift",
"TestUtils/TestHTTPClient.swift",
"URLQueryEncoderTests.swift",
"UtilsTests/URLComponentBuilderTests.swift",
"UtilsTests/WithTimeoutTests.swift"
],
"target_dependencies" : [
"SwiftAPIClient"
],
"type" : "test"
},
{
"c99name" : "SwiftAPIClientMacrosTests",
"module_type" : "SwiftTarget",
"name" : "SwiftAPIClientMacrosTests",
"path" : "Tests/SwiftAPIClientMacrosTests",
"product_dependencies" : [
"SwiftSyntaxMacrosTestSupport"
],
"sources" : [
"APIMacroTests.swift",
"CallMacroTests.swift",
"PathMacroTests.swift"
],
"target_dependencies" : [
"SwiftAPIClientMacros"
],
"type" : "test"
},
{
"c99name" : "SwiftAPIClientMacros",
"module_type" : "SwiftTarget",
"name" : "SwiftAPIClientMacros",
"path" : "Sources/SwiftAPIClientMacros",
"product_dependencies" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin"
],
"product_memberships" : [
"SwiftAPIClient",
"SwiftAPIClientMacros"
],
"sources" : [
"Collection++.swift",
"MacroError.swift",
"String++.swift",
"SwiftAPIClientMacros.swift"
],
"type" : "macro"
},
{
"c99name" : "SwiftAPIClient",
"module_type" : "SwiftTarget",
"name" : "SwiftAPIClient",
"path" : "Sources/SwiftAPIClient",
"product_dependencies" : [
"Logging",
"Metrics",
"HTTPTypes",
"HTTPTypesFoundation"
],
"product_memberships" : [
"SwiftAPIClient"
],
"sources" : [
"APIClient.swift",
"APIClientCaller.swift",
"APIClientConfigs.swift",
"Clients/HTTPClient.swift",
"Clients/HTTPDownloadClient.swift",
"Clients/HTTPPublisher.swift",
"Clients/HTTPUploadClient.swift",
"Clients/URLSession+Client.swift",
"Extensions/Async++.swift",
"Extensions/String++.swift",
"Extensions/URLComponentBuilder.swift",
"Extensions/URLResponse++.swift",
"Imports.swift",
"Macros.swift",
"Modifiers/AuthModifier.swift",
"Modifiers/BackgroundModifiers.swift",
"Modifiers/CodersModifiers.swift",
"Modifiers/ErrorDecodeModifiers.swift",
"Modifiers/ErrorHandler.swift",
"Modifiers/FileIDLine.swift",
"Modifiers/HTTPClientMiddleware.swift",
"Modifiers/HTTPResponseValidator.swift",
"Modifiers/LoggingModifier.swift",
"Modifiers/MetricsModifier.swift",
"Modifiers/MockResponses.swift",
"Modifiers/RateLimitModifier.swift",
"Modifiers/RedirectModifier.swift",
"Modifiers/RequestCompression.swift",
"Modifiers/RequestModifiers.swift",
"Modifiers/RequestValidator.swift",
"Modifiers/ResponseWrapModifires.swift",
"Modifiers/RetryModifier.swift",
"Modifiers/ThrottleModifier.swift",
"Modifiers/TimeoutModifiers.swift",
"Modifiers/TokenRefresher/TokenCacheService.swift",
"Modifiers/TokenRefresher/TokenRefresher.swift",
"Modifiers/URLSessionModifiers.swift",
"Modifiers/WaitForConnectionModifier.swift",
"RequestBuilder.swift",
"Types/AsyncValue.swift",
"Types/ContentSerializer.swift",
"Types/ContentType.swift",
"Types/Errors.swift",
"Types/HTTPFields.swift",
"Types/HTTPRequestComponents.swift",
"Types/LoggingComponent.swift",
"Types/Mockable.swift",
"Types/RedirectBehaviour.swift",
"Types/Serializer.swift",
"Types/TimeoutError.swift",
"Utils/AnyAsyncSequence.swift",
"Utils/AnyEncodable.swift",
"Utils/Coders/ContentEncoder.swift",
"Utils/Coders/DataDecoder.swift",
"Utils/Coders/EncodingStrategies.swift",
"Utils/Coders/ErrorDecoder.swift",
"Utils/Coders/FormURLEncoder.swift",
"Utils/Coders/HeadersEncoder.swift",
"Utils/Coders/JSONContentEncoders.swift",
"Utils/Coders/MultipartFormData/MultipartFormData.swift",
"Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift",
"Utils/Coders/ParametersEncoder.swift",
"Utils/Coders/ParametersValue.swift",
"Utils/Coders/QueryEncoder.swift",
"Utils/Coders/URLQuery/HTTPHeadersEncoder.swift",
"Utils/Coders/URLQuery/PlainCodingKey.swift",
"Utils/Coders/URLQuery/Ref.swift",
"Utils/Coders/URLQuery/URLQueryEncoder.swift",
"Utils/ConsoleStyle.swift",
"Utils/Error+String.swift",
"Utils/NoneLogger.swift",
"Utils/Publisher+Create.swift",
"Utils/Publishers+Task.swift",
"Utils/Reachability.swift",
"Utils/Status+Ext.swift",
"Utils/URLSessionDelegateWrapper.swift",
"Utils/UpdateMetrics.swift",
"Utils/WithSynchronizedAccess.swift"
],
"target_dependencies" : [
"SwiftAPIClientMacros"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.