This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build cujira with Swift 6.0 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4609320-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/cats-oss/cujira.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/cats-oss/cujira
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at e7fec7d fix multi issuetype bug
Cloned https://github.com/cats-oss/cujira.git
Revision (git rev-parse @):
e7fec7dbd79b7a3187e86f4b982eb3d9e6b6d1df
SUCCESS checkout https://github.com/cats-oss/cujira.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/cats-oss/cujira.git
Running build ...
bash -c docker run --rm -v "checkouts-4609320-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/63] Emitting module Core
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         case unknown
 21 |     }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:14: warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |              `- warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 20 |         case unknown
 21 |     }
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |
 31 |
 32 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |
 34 |     /// JiraSession Initializer
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:12:14: warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
10 | public enum URLRequestBuilder {
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
   |              `- warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
13 |         case addingQueryFaild(url: URL, query: [String: String])
14 |     }
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | public enum URLRequestBuilder {
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:13:14: warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
13 |         case addingQueryFaild(url: URL, query: [String: String])
   |              `- warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
14 |     }
15 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/DataManager/ConfigManager.swift:21:14: warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |         case noApiKey
20 |         case noUsername
21 |         case updateSameValue(Any)
   |              `- warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
22 |     }
23 | }
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:18:10: warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
16 | public enum DataManagerError: Error {
17 |     case invalidURL(String)
18 |     case createFileFailed(URL)
   |          `- warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
19 | }
20 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | /// Trait for DataManager
[5/70] Compiling Core Config.swift
[6/70] Compiling Core FieldAlias.swift
[7/70] Compiling Core IssueAggregation.swift
[8/70] Compiling Core IssueResult.swift
[9/70] Compiling Core JQLAlias.swift
[10/70] Compiling Core ProjectAlias.swift
[11/70] Compiling Core SearchResult.swift
[12/70] Compiling Core BodyParameter.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         case unknown
 21 |     }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:14: warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |              `- warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 20 |         case unknown
 21 |     }
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |
 31 |
 32 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |
 34 |     /// JiraSession Initializer
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 73 |
 74 |         var result: Result<T.Response>?
 75 |         let task = session.dataTask(with: request) { data, response, error in
    |                            `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 76 |             if let error = error {
 77 |                 result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 |             return "Empty Result."
117 |         case .invalidResopnse(let resposne):
118 |             return "Invalid response (status code: \(resposne.statusCode)"
    |                                                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 |         case .unknown:
120 |             return "Unknown error occured."
[13/70] Compiling Core JiraSession.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         case unknown
 21 |     }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:14: warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |              `- warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 20 |         case unknown
 21 |     }
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |
 31 |
 32 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |
 34 |     /// JiraSession Initializer
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 73 |
 74 |         var result: Result<T.Response>?
 75 |         let task = session.dataTask(with: request) { data, response, error in
    |                            `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 76 |             if let error = error {
 77 |                 result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 |             return "Empty Result."
117 |         case .invalidResopnse(let resposne):
118 |             return "Invalid response (status code: \(resposne.statusCode)"
    |                                                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 |         case .unknown:
120 |             return "Unknown error occured."
[14/70] Compiling Core GetAllBoardsRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         case unknown
 21 |     }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:14: warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |              `- warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 20 |         case unknown
 21 |     }
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |
 31 |
 32 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |
 34 |     /// JiraSession Initializer
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 73 |
 74 |         var result: Result<T.Response>?
 75 |         let task = session.dataTask(with: request) { data, response, error in
    |                            `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 76 |             if let error = error {
 77 |                 result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 |             return "Empty Result."
117 |         case .invalidResopnse(let resposne):
118 |             return "Invalid response (status code: \(resposne.statusCode)"
    |                                                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 |         case .unknown:
120 |             return "Unknown error occured."
[15/70] Compiling Core GetAllFieldsRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         case unknown
 21 |     }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:14: warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |              `- warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 20 |         case unknown
 21 |     }
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |
 31 |
 32 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |
 34 |     /// JiraSession Initializer
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 73 |
 74 |         var result: Result<T.Response>?
 75 |         let task = session.dataTask(with: request) { data, response, error in
    |                            `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 76 |             if let error = error {
 77 |                 result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 |             return "Empty Result."
117 |         case .invalidResopnse(let resposne):
118 |             return "Invalid response (status code: \(resposne.statusCode)"
    |                                                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 |         case .unknown:
120 |             return "Unknown error occured."
[16/70] Compiling Core GetAllIssueTypesRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         case unknown
 21 |     }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:14: warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |              `- warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 20 |         case unknown
 21 |     }
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |
 31 |
 32 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |
 34 |     /// JiraSession Initializer
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 73 |
 74 |         var result: Result<T.Response>?
 75 |         let task = session.dataTask(with: request) { data, response, error in
    |                            `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 76 |             if let error = error {
 77 |                 result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 |             return "Empty Result."
117 |         case .invalidResopnse(let resposne):
118 |             return "Invalid response (status code: \(resposne.statusCode)"
    |                                                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 |         case .unknown:
120 |             return "Unknown error occured."
[17/70] Compiling Core GetAllSprintsRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         case unknown
 21 |     }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:14: warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |              `- warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 20 |         case unknown
 21 |     }
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |
 31 |
 32 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |
 34 |     /// JiraSession Initializer
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 73 |
 74 |         var result: Result<T.Response>?
 75 |         let task = session.dataTask(with: request) { data, response, error in
    |                            `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 76 |             if let error = error {
 77 |                 result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 |             return "Empty Result."
117 |         case .invalidResopnse(let resposne):
118 |             return "Invalid response (status code: \(resposne.statusCode)"
    |                                                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 |         case .unknown:
120 |             return "Unknown error occured."
[18/70] Compiling Core GetAllStatusesRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         case unknown
 21 |     }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:14: warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |              `- warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 20 |         case unknown
 21 |     }
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |
 31 |
 32 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |
 34 |     /// JiraSession Initializer
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 73 |
 74 |         var result: Result<T.Response>?
 75 |         let task = session.dataTask(with: request) { data, response, error in
    |                            `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 76 |             if let error = error {
 77 |                 result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 |             return "Empty Result."
117 |         case .invalidResopnse(let resposne):
118 |             return "Invalid response (status code: \(resposne.statusCode)"
    |                                                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 |         case .unknown:
120 |             return "Unknown error occured."
[19/70] Compiling Core GetEpicRequest.swift
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         case unknown
 21 |     }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:19:14: warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 17 |     public enum Error: Swift.Error {
 18 |         case emptyResult
 19 |         case invalidResopnse(HTTPURLResponse)
    |              `- warning: associated value 'invalidResopnse' of 'Sendable'-conforming enum 'Error' has non-sendable type 'HTTPURLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 20 |         case unknown
 21 |     }
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:32:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |
 31 |
 32 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |
 34 |     /// JiraSession Initializer
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:40:40: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 38 |     ///             apiKey: it is called every request.
 39 |     ///             username: it is called every request.
 40 |     public init(session: URLSession = .shared,
    |                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 41 |                 domain: @escaping () throws -> String,
 42 |                 apiKey: @escaping () throws -> String,
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:75:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 73 |
 74 |         var result: Result<T.Response>?
 75 |         let task = session.dataTask(with: request) { data, response, error in
    |                            `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 76 |             if let error = error {
 77 |                 result = .failure(error)
/host/spi-builder-workspace/Sources/Core/API/JiraSession.swift:118:63: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 |             return "Empty Result."
117 |         case .invalidResopnse(let resposne):
118 |             return "Invalid response (status code: \(resposne.statusCode)"
    |                                                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 |         case .unknown:
120 |             return "Unknown error occured."
[20/70] Compiling Core BoardService.swift
[21/70] Compiling Core ConfigService.swift
[22/70] Compiling Core FieldService.swift
[23/70] Compiling Core IssueService.swift
[24/70] Compiling Core JQLService.swift
[25/70] Compiling Core ProjectService.swift
[26/70] Compiling Core SprintService.swift
[27/70] Compiling Core Request.swift
[28/70] Compiling Core RequestProxy.swift
[29/70] Compiling Core SearchRequest.swift
[30/70] Compiling Core AnyCodingKey.swift
[31/70] Compiling Core Board.swift
[32/70] Compiling Core Epic.swift
[33/70] Compiling Core Field.swift
[34/70] Compiling Core Issue.swift
[35/70] Compiling Core DataManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:18:10: warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
16 | public enum DataManagerError: Error {
17 |     case invalidURL(String)
18 |     case createFileFailed(URL)
   |          `- warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
19 | }
20 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | /// Trait for DataManager
[36/70] Compiling Core EpicDataManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:18:10: warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
16 | public enum DataManagerError: Error {
17 |     case invalidURL(String)
18 |     case createFileFailed(URL)
   |          `- warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
19 | }
20 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | /// Trait for DataManager
[37/70] Compiling Core FieldDataManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:18:10: warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
16 | public enum DataManagerError: Error {
17 |     case invalidURL(String)
18 |     case createFileFailed(URL)
   |          `- warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
19 | }
20 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | /// Trait for DataManager
[38/70] Compiling Core IssueTypeDataManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:18:10: warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
16 | public enum DataManagerError: Error {
17 |     case invalidURL(String)
18 |     case createFileFailed(URL)
   |          `- warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
19 | }
20 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | /// Trait for DataManager
[39/70] Compiling Core JQLAliasManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:18:10: warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
16 | public enum DataManagerError: Error {
17 |     case invalidURL(String)
18 |     case createFileFailed(URL)
   |          `- warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
19 | }
20 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | /// Trait for DataManager
[40/70] Compiling Core ProjectAliasManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:18:10: warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
16 | public enum DataManagerError: Error {
17 |     case invalidURL(String)
18 |     case createFileFailed(URL)
   |          `- warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
19 | }
20 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | /// Trait for DataManager
[41/70] Compiling Core SprintDataManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:18:10: warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
16 | public enum DataManagerError: Error {
17 |     case invalidURL(String)
18 |     case createFileFailed(URL)
   |          `- warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
19 | }
20 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | /// Trait for DataManager
[42/70] Compiling Core StatusDataManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:18:10: warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
16 | public enum DataManagerError: Error {
17 |     case invalidURL(String)
18 |     case createFileFailed(URL)
   |          `- warning: associated value 'createFileFailed' of 'Sendable'-conforming enum 'DataManagerError' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
19 | }
20 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/DataManager/DataManager.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | /// Trait for DataManager
[43/70] Compiling Core IssueType.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:12:14: warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
10 | public enum URLRequestBuilder {
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
   |              `- warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
13 |         case addingQueryFaild(url: URL, query: [String: String])
14 |     }
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | public enum URLRequestBuilder {
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:13:14: warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
13 |         case addingQueryFaild(url: URL, query: [String: String])
   |              `- warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
14 |     }
15 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 |         }
33 |
34 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
35 |         proxy.headerField.forEach { key, value in
36 |             request.addValue(value, forHTTPHeaderField: key)
[44/70] Compiling Core ListResponse.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:12:14: warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
10 | public enum URLRequestBuilder {
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
   |              `- warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
13 |         case addingQueryFaild(url: URL, query: [String: String])
14 |     }
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | public enum URLRequestBuilder {
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:13:14: warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
13 |         case addingQueryFaild(url: URL, query: [String: String])
   |              `- warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
14 |     }
15 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 |         }
33 |
34 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
35 |         proxy.headerField.forEach { key, value in
36 |             request.addValue(value, forHTTPHeaderField: key)
[45/70] Compiling Core Project.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:12:14: warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
10 | public enum URLRequestBuilder {
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
   |              `- warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
13 |         case addingQueryFaild(url: URL, query: [String: String])
14 |     }
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | public enum URLRequestBuilder {
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:13:14: warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
13 |         case addingQueryFaild(url: URL, query: [String: String])
   |              `- warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
14 |     }
15 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 |         }
33 |
34 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
35 |         proxy.headerField.forEach { key, value in
36 |             request.addValue(value, forHTTPHeaderField: key)
[46/70] Compiling Core Sprint.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:12:14: warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
10 | public enum URLRequestBuilder {
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
   |              `- warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
13 |         case addingQueryFaild(url: URL, query: [String: String])
14 |     }
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | public enum URLRequestBuilder {
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:13:14: warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
13 |         case addingQueryFaild(url: URL, query: [String: String])
   |              `- warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
14 |     }
15 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 |         }
33 |
34 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
35 |         proxy.headerField.forEach { key, value in
36 |             request.addValue(value, forHTTPHeaderField: key)
[47/70] Compiling Core Status.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:12:14: warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
10 | public enum URLRequestBuilder {
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
   |              `- warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
13 |         case addingQueryFaild(url: URL, query: [String: String])
14 |     }
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | public enum URLRequestBuilder {
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:13:14: warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
13 |         case addingQueryFaild(url: URL, query: [String: String])
   |              `- warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
14 |     }
15 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 |         }
33 |
34 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
35 |         proxy.headerField.forEach { key, value in
36 |             request.addValue(value, forHTTPHeaderField: key)
[48/70] Compiling Core User.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:12:14: warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
10 | public enum URLRequestBuilder {
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
   |              `- warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
13 |         case addingQueryFaild(url: URL, query: [String: String])
14 |     }
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | public enum URLRequestBuilder {
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:13:14: warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
13 |         case addingQueryFaild(url: URL, query: [String: String])
   |              `- warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
14 |     }
15 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 |         }
33 |
34 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
35 |         proxy.headerField.forEach { key, value in
36 |             request.addValue(value, forHTTPHeaderField: key)
[49/70] Compiling Core Version.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:12:14: warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
10 | public enum URLRequestBuilder {
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
   |              `- warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
13 |         case addingQueryFaild(url: URL, query: [String: String])
14 |     }
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | public enum URLRequestBuilder {
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:13:14: warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
13 |         case addingQueryFaild(url: URL, query: [String: String])
   |              `- warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
14 |     }
15 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 |         }
33 |
34 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
35 |         proxy.headerField.forEach { key, value in
36 |             request.addValue(value, forHTTPHeaderField: key)
[50/70] Compiling Core URLRequestBuilder.swift
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:12:14: warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
10 | public enum URLRequestBuilder {
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
   |              `- warning: associated value 'noURLCompponets' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
13 |         case addingQueryFaild(url: URL, query: [String: String])
14 |     }
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 6 | //
 7 |
 8 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 9 |
10 | public enum URLRequestBuilder {
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:13:14: warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
11 |     public enum Error: Swift.Error {
12 |         case noURLCompponets(URL)
13 |         case addingQueryFaild(url: URL, query: [String: String])
   |              `- warning: associated value 'addingQueryFaild(url:query:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'URL'; this is an error in the Swift 6 language mode
14 |     }
15 |
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:16:78: error: cannot find type 'URLRequest' in scope
14 |     }
15 |
16 |     public static func build<T: Request>(_ proxy: RequestProxy<T>) throws -> URLRequest {
   |                                                                              `- error: cannot find type 'URLRequest' in scope
17 |         let baseURL = proxy.baseURL.appendingPathComponent(proxy.path)
18 |
/host/spi-builder-workspace/Sources/Core/API/URLRequestBuilder.swift:34:23: error: cannot find 'URLRequest' in scope
32 |         }
33 |
34 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
35 |         proxy.headerField.forEach { key, value in
36 |             request.addValue(value, forHTTPHeaderField: key)
[51/70] Compiling Core Facade.Board.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 |         let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 |         let session = URLSession.shared
   |                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 |         let jiraSession = JiraSession(session: session,
43 |                                       domain: { try configService.loadConfig().domain },
[52/70] Compiling Core Facade.Config.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 |         let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 |         let session = URLSession.shared
   |                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 |         let jiraSession = JiraSession(session: session,
43 |                                       domain: { try configService.loadConfig().domain },
[53/70] Compiling Core Facade.Field.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 |         let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 |         let session = URLSession.shared
   |                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 |         let jiraSession = JiraSession(session: session,
43 |                                       domain: { try configService.loadConfig().domain },
[54/70] Compiling Core Facade.Issue.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 |         let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 |         let session = URLSession.shared
   |                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 |         let jiraSession = JiraSession(session: session,
43 |                                       domain: { try configService.loadConfig().domain },
[55/70] Compiling Core Facade.JQL.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 |         let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 |         let session = URLSession.shared
   |                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 |         let jiraSession = JiraSession(session: session,
43 |                                       domain: { try configService.loadConfig().domain },
[56/70] Compiling Core Facade.Project.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 |         let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 |         let session = URLSession.shared
   |                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 |         let jiraSession = JiraSession(session: session,
43 |                                       domain: { try configService.loadConfig().domain },
[57/70] Compiling Core Facade.Sprint.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 |         let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 |         let session = URLSession.shared
   |                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 |         let jiraSession = JiraSession(session: session,
43 |                                       domain: { try configService.loadConfig().domain },
[58/70] Compiling Core Facade.swift
/host/spi-builder-workspace/Sources/Core/Facade/Facade.swift:41:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 |         let epicDataManager = EpicDataManager(workingDirectory: workingDirectory)
40 |
41 |         let session = URLSession.shared
   |                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
42 |         let jiraSession = JiraSession(session: session,
43 |                                       domain: { try configService.loadConfig().domain },
[59/70] Compiling Core CoreExtension.swift
/host/spi-builder-workspace/Sources/Core/DataManager/ConfigManager.swift:21:14: warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |         case noApiKey
20 |         case noUsername
21 |         case updateSameValue(Any)
   |              `- warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
22 |     }
23 | }
[60/70] Compiling Core Enumerable.swift
/host/spi-builder-workspace/Sources/Core/DataManager/ConfigManager.swift:21:14: warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |         case noApiKey
20 |         case noUsername
21 |         case updateSameValue(Any)
   |              `- warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
22 |     }
23 | }
[61/70] Compiling Core DateFormatter.core.swift
/host/spi-builder-workspace/Sources/Core/DataManager/ConfigManager.swift:21:14: warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |         case noApiKey
20 |         case noUsername
21 |         case updateSameValue(Any)
   |              `- warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
22 |     }
23 | }
[62/70] Compiling Core Gap.swift
/host/spi-builder-workspace/Sources/Core/DataManager/ConfigManager.swift:21:14: warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |         case noApiKey
20 |         case noUsername
21 |         case updateSameValue(Any)
   |              `- warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
22 |     }
23 | }
[63/70] Compiling Core JSONDecoder.DateDecodingStrategy.core.swift
/host/spi-builder-workspace/Sources/Core/DataManager/ConfigManager.swift:21:14: warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |         case noApiKey
20 |         case noUsername
21 |         case updateSameValue(Any)
   |              `- warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
22 |     }
23 | }
[64/70] Compiling Core BoardDataManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/ConfigManager.swift:21:14: warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |         case noApiKey
20 |         case noUsername
21 |         case updateSameValue(Any)
   |              `- warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
22 |     }
23 | }
[65/70] Compiling Core ConfigManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/ConfigManager.swift:21:14: warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |         case noApiKey
20 |         case noUsername
21 |         case updateSameValue(Any)
   |              `- warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
22 |     }
23 | }
[66/70] Compiling Core CustomFieldAliasManager.swift
/host/spi-builder-workspace/Sources/Core/DataManager/ConfigManager.swift:21:14: warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
19 |         case noApiKey
20 |         case noUsername
21 |         case updateSameValue(Any)
   |              `- warning: associated value 'updateSameValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
22 |     }
23 | }
BUILD FAILURE 6.0 linux
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.