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, reference 0.4.1 (e7fec7), with Swift 6.0 for Linux on 31 Oct 2024 05:10:57 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" 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.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/cats-oss/cujira.git
Reference: 0.4.1
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
 * tag               0.4.1      -> FETCH_HEAD
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 0.4.1
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/cats-oss/cujira.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" 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
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
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: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 | }
[5/70] Compiling Core DataManager.swift
[6/70] Compiling Core EpicDataManager.swift
[7/70] Compiling Core FieldDataManager.swift
[8/70] Compiling Core IssueTypeDataManager.swift
[9/70] Compiling Core JQLAliasManager.swift
[10/70] Compiling Core ProjectAliasManager.swift
[11/70] Compiling Core SprintDataManager.swift
[12/70] Compiling Core StatusDataManager.swift
[13/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."
[14/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."
[15/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."
[16/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."
[17/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."
[18/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."
[19/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."
[20/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."
[21/70] Compiling Core Request.swift
[22/70] Compiling Core RequestProxy.swift
[23/70] Compiling Core SearchRequest.swift
[24/70] Compiling Core AnyCodingKey.swift
[25/70] Compiling Core Board.swift
[26/70] Compiling Core Epic.swift
[27/70] Compiling Core Field.swift
[28/70] Compiling Core Issue.swift
[29/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 },
[30/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 },
[31/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 },
[32/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 },
[33/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 },
[34/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 },
[35/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 },
[36/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 },
[37/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 | }
[38/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 | }
[39/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 | }
[40/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 | }
[41/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 | }
[42/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 | }
[43/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 | }
[44/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 | }
[45/70] Compiling Core Config.swift
[46/70] Compiling Core FieldAlias.swift
[47/70] Compiling Core IssueAggregation.swift
[48/70] Compiling Core IssueResult.swift
[49/70] Compiling Core JQLAlias.swift
[50/70] Compiling Core ProjectAlias.swift
[51/70] Compiling Core SearchResult.swift
[52/70] Compiling Core IssueType.swift
/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)
[53/70] Compiling Core ListResponse.swift
/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)
[54/70] Compiling Core Project.swift
/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)
[55/70] Compiling Core Sprint.swift
/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)
[56/70] Compiling Core Status.swift
/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)
[57/70] Compiling Core User.swift
/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)
[58/70] Compiling Core Version.swift
/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)
[59/70] Compiling Core URLRequestBuilder.swift
/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)
[60/70] Compiling Core BoardService.swift
[61/70] Compiling Core ConfigService.swift
[62/70] Compiling Core FieldService.swift
[63/70] Compiling Core IssueService.swift
[64/70] Compiling Core JQLService.swift
[65/70] Compiling Core ProjectService.swift
[66/70] Compiling Core SprintService.swift
BUILD FAILURE 6.0 linux