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 Corkboard, reference master (06cebc), with Swift 6.0 for Linux on 30 Oct 2024 21:40:22 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-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/kiliankoe/Corkboard.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/kiliankoe/Corkboard
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 06cebc2 add other platforms to manifest
Cloned https://github.com/kiliankoe/Corkboard.git
Revision (git rev-parse @):
06cebc246f001121d1f69e816423cb703018610c
SUCCESS checkout https://github.com/kiliankoe/Corkboard.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/kiliankoe/Corkboard.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/7] Compiling Corkboard Responses.swift
[4/7] Compiling Corkboard Bookmark.swift
[5/7] Emitting module Corkboard
/host/spi-builder-workspace/Sources/Corkboard/API.swift:25:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 23 |     ///
 24 |     /// Use this before calling posts/all to see if the data has changed since the last fetch.
 25 |     public func postsUpdate(session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 26 |                             completion: @escaping (Result<Date, CorkboardError>) -> Void) {
 27 |         request([], self.auth, from: .postsUpdate, session: session) {
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/Corkboard/API.swift:25:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 23 |     ///
 24 |     /// Use this before calling posts/all to see if the data has changed since the last fetch.
 25 |     public func postsUpdate(session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 26 |                             completion: @escaping (Result<Date, CorkboardError>) -> Void) {
 27 |         request([], self.auth, from: .postsUpdate, session: session) {
/host/spi-builder-workspace/Sources/Corkboard/API.swift:61:35: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 59 |                          isPublic: Bool? = nil,
 60 |                          isUnread: Bool? = nil,
 61 |                          session: URLSession = .shared,
    |                                   `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 62 |                          completion: @escaping (Result<(), CorkboardError>) -> Void) {
 63 |         var queryItems = [
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/Corkboard/API.swift:61:49: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 59 |                          isPublic: Bool? = nil,
 60 |                          isUnread: Bool? = nil,
 61 |                          session: URLSession = .shared,
    |                                                 `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 62 |                          completion: @escaping (Result<(), CorkboardError>) -> Void) {
 63 |         var queryItems = [
/host/spi-builder-workspace/Sources/Corkboard/API.swift:107:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
105 |     /// Delete a bookmark.
106 |     public func postsDelete(url: URL,
107 |                             session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
108 |                             completion: @escaping (Result<(), CorkboardError>) -> Void) {
109 |         let queryItems = [URLQueryItem(name: "url", value: url.absoluteString)]
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/Corkboard/API.swift:107:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
105 |     /// Delete a bookmark.
106 |     public func postsDelete(url: URL,
107 |                             session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
108 |                             completion: @escaping (Result<(), CorkboardError>) -> Void) {
109 |         let queryItems = [URLQueryItem(name: "url", value: url.absoluteString)]
/host/spi-builder-workspace/Sources/Corkboard/API.swift:137:35: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
135 |                          url: URL? = nil,
136 |                          includeMeta: Bool? = nil,
137 |                          session: URLSession = .shared,
    |                                   `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
138 |                          completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
139 |
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/Corkboard/API.swift:137:49: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
135 |                          url: URL? = nil,
136 |                          includeMeta: Bool? = nil,
137 |                          session: URLSession = .shared,
    |                                                 `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
138 |                          completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
139 |
/host/spi-builder-workspace/Sources/Corkboard/API.swift:176:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 |     public func postsRecent(tags: [String] = [],
175 |                             count: Int? = nil,
176 |                             session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
177 |                             completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
178 |
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/Corkboard/API.swift:176:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
174 |     public func postsRecent(tags: [String] = [],
175 |                             count: Int? = nil,
176 |                             session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
177 |                             completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
178 |
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:10:18: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
  8 | public enum CorkboardError: Error {
  9 |     case urlEncoding(URLComponents)
 10 |     case network(URLResponse?)
    |                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 11 |     case json(Error)
 12 |     case pinboardStatus(Int)
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:10:10: warning: associated value 'network' of 'Sendable'-conforming enum 'CorkboardError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
  8 | public enum CorkboardError: Error {
  9 |     case urlEncoding(URLComponents)
 10 |     case network(URLResponse?)
    |          `- warning: associated value 'network' of 'Sendable'-conforming enum 'CorkboardError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 11 |     case json(Error)
 12 |     case pinboardStatus(Int)
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:44:49: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |                                        _ auth: Authentication,
 43 |                                        from endpoint: Endpoint,
 44 |                                        session: URLSession,
    |                                                 `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |                                        completion: @escaping (Result<T, CorkboardError>) -> Void) {
 46 |         var components = URLComponents()
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/Corkboard/PinboardClient.swift:102:49: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
100 |
101 |     private func request<T: Decodable>(_ url: URL,
102 |                                        session: URLSession,
    |                                                 `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
103 |                                        completion: @escaping (Result<T, CorkboardError>) -> Void) {
104 |
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/Corkboard/PinboardClient.swift:169:47: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
167 |     private func retry<T: Decodable>(taskTo url: URL,
168 |                                      in seconds: TimeInterval,
169 |                                      session: URLSession,
    |                                               `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |                                      completion: @escaping (Result<T, CorkboardError>) -> Void) {
171 |         let deadline = DispatchTime.now() + .seconds(Int(seconds))
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
[6/7] Compiling Corkboard API.swift
/host/spi-builder-workspace/Sources/Corkboard/API.swift:25:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 23 |     ///
 24 |     /// Use this before calling posts/all to see if the data has changed since the last fetch.
 25 |     public func postsUpdate(session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 26 |                             completion: @escaping (Result<Date, CorkboardError>) -> Void) {
 27 |         request([], self.auth, from: .postsUpdate, session: session) {
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/Corkboard/API.swift:25:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 23 |     ///
 24 |     /// Use this before calling posts/all to see if the data has changed since the last fetch.
 25 |     public func postsUpdate(session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 26 |                             completion: @escaping (Result<Date, CorkboardError>) -> Void) {
 27 |         request([], self.auth, from: .postsUpdate, session: session) {
/host/spi-builder-workspace/Sources/Corkboard/API.swift:61:35: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 59 |                          isPublic: Bool? = nil,
 60 |                          isUnread: Bool? = nil,
 61 |                          session: URLSession = .shared,
    |                                   `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 62 |                          completion: @escaping (Result<(), CorkboardError>) -> Void) {
 63 |         var queryItems = [
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/Corkboard/API.swift:61:49: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 59 |                          isPublic: Bool? = nil,
 60 |                          isUnread: Bool? = nil,
 61 |                          session: URLSession = .shared,
    |                                                 `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 62 |                          completion: @escaping (Result<(), CorkboardError>) -> Void) {
 63 |         var queryItems = [
/host/spi-builder-workspace/Sources/Corkboard/API.swift:107:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
105 |     /// Delete a bookmark.
106 |     public func postsDelete(url: URL,
107 |                             session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
108 |                             completion: @escaping (Result<(), CorkboardError>) -> Void) {
109 |         let queryItems = [URLQueryItem(name: "url", value: url.absoluteString)]
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/Corkboard/API.swift:107:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
105 |     /// Delete a bookmark.
106 |     public func postsDelete(url: URL,
107 |                             session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
108 |                             completion: @escaping (Result<(), CorkboardError>) -> Void) {
109 |         let queryItems = [URLQueryItem(name: "url", value: url.absoluteString)]
/host/spi-builder-workspace/Sources/Corkboard/API.swift:137:35: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
135 |                          url: URL? = nil,
136 |                          includeMeta: Bool? = nil,
137 |                          session: URLSession = .shared,
    |                                   `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
138 |                          completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
139 |
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/Corkboard/API.swift:137:49: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
135 |                          url: URL? = nil,
136 |                          includeMeta: Bool? = nil,
137 |                          session: URLSession = .shared,
    |                                                 `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
138 |                          completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
139 |
/host/spi-builder-workspace/Sources/Corkboard/API.swift:176:38: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 |     public func postsRecent(tags: [String] = [],
175 |                             count: Int? = nil,
176 |                             session: URLSession = .shared,
    |                                      `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
177 |                             completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
178 |
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/Corkboard/API.swift:176:52: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
174 |     public func postsRecent(tags: [String] = [],
175 |                             count: Int? = nil,
176 |                             session: URLSession = .shared,
    |                                                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
177 |                             completion: @escaping (Result<[Bookmark], CorkboardError>) -> Void) {
178 |
[7/7] Compiling Corkboard PinboardClient.swift
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:10:18: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
  8 | public enum CorkboardError: Error {
  9 |     case urlEncoding(URLComponents)
 10 |     case network(URLResponse?)
    |                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 11 |     case json(Error)
 12 |     case pinboardStatus(Int)
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:10:10: warning: associated value 'network' of 'Sendable'-conforming enum 'CorkboardError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
  8 | public enum CorkboardError: Error {
  9 |     case urlEncoding(URLComponents)
 10 |     case network(URLResponse?)
    |          `- warning: associated value 'network' of 'Sendable'-conforming enum 'CorkboardError' has non-sendable type 'URLResponse' (aka 'AnyObject'); this is an error in the Swift 6 language mode
 11 |     case json(Error)
 12 |     case pinboardStatus(Int)
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:44:49: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |                                        _ auth: Authentication,
 43 |                                        from endpoint: Endpoint,
 44 |                                        session: URLSession,
    |                                                 `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |                                        completion: @escaping (Result<T, CorkboardError>) -> Void) {
 46 |         var components = URLComponents()
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/Corkboard/PinboardClient.swift:102:49: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
100 |
101 |     private func request<T: Decodable>(_ url: URL,
102 |                                        session: URLSession,
    |                                                 `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
103 |                                        completion: @escaping (Result<T, CorkboardError>) -> Void) {
104 |
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/Corkboard/PinboardClient.swift:169:47: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
167 |     private func retry<T: Decodable>(taskTo url: URL,
168 |                                      in seconds: TimeInterval,
169 |                                      session: URLSession,
    |                                               `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |                                      completion: @escaping (Result<T, CorkboardError>) -> Void) {
171 |         let deadline = DispatchTime.now() + .seconds(Int(seconds))
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/Corkboard/PinboardClient.swift:105:28: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
103 |                                        completion: @escaping (Result<T, CorkboardError>) -> Void) {
104 |
105 |         let task = session.dataTask(with: url) { data, resp, error in
    |                            `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
106 |             guard
107 |                 error == nil,
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:111:46: error: argument type '_' expected to be an instance of a class or class-constrained type
109 |                 let response = resp as? HTTPURLResponse
110 |             else {
111 |                 completion(.failure(.network(resp)))
    |                                              `- error: argument type '_' expected to be an instance of a class or class-constrained type
112 |                 return
113 |             }
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:173:13: warning: capture of 'self' with non-sendable type 'PinboardClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 | }
 22 |
 23 | public class PinboardClient {
    |              `- note: class 'PinboardClient' does not conform to the 'Sendable' protocol
 24 |     var auth: Authentication
 25 |
    :
171 |         let deadline = DispatchTime.now() + .seconds(Int(seconds))
172 |         DispatchQueue(label: "Corkboard.RetryRequest").asyncAfter(deadline: deadline) {
173 |             self.request(url, session: session, completion: completion)
    |             `- warning: capture of 'self' with non-sendable type 'PinboardClient' in a `@Sendable` closure; this is an error in the Swift 6 language mode
174 |         }
175 |     }
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:173:40: warning: capture of 'session' with non-sendable type 'URLSession' (aka 'AnyObject') in a `@Sendable` closure; this is an error in the Swift 6 language mode
171 |         let deadline = DispatchTime.now() + .seconds(Int(seconds))
172 |         DispatchQueue(label: "Corkboard.RetryRequest").asyncAfter(deadline: deadline) {
173 |             self.request(url, session: session, completion: completion)
    |                                        `- warning: capture of 'session' with non-sendable type 'URLSession' (aka 'AnyObject') in a `@Sendable` closure; this is an error in the Swift 6 language mode
174 |         }
175 |     }
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:173:61: warning: capture of 'completion' with non-sendable type '(Result<T, CorkboardError>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
171 |         let deadline = DispatchTime.now() + .seconds(Int(seconds))
172 |         DispatchQueue(label: "Corkboard.RetryRequest").asyncAfter(deadline: deadline) {
173 |             self.request(url, session: session, completion: completion)
    |                                                             |- warning: capture of 'completion' with non-sendable type '(Result<T, CorkboardError>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
174 |         }
175 |     }
BUILD FAILURE 6.0 linux