The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build Corkboard, reference master (06cebc), with Swift 6.2 (beta) for Linux on 17 Jun 2025 14:31:41 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.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.2
Building package at path:  $PWD
https://github.com/kiliankoe/Corkboard.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
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 Bookmark.swift
[4/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: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
[5/7] Compiling Corkboard Responses.swift
[6/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: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:18: warning: capture of non-Sendable type 'T.Type' in an isolated 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 non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
174 |         }
175 |     }
/host/spi-builder-workspace/Sources/Corkboard/PinboardClient.swift:170:38: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
168 |                                      in seconds: TimeInterval,
169 |                                      session: URLSession,
170 |                                      completion: @escaping (Result<T, CorkboardError>) -> Void) {
    |                                      `- warning: capture of non-Sendable type 'T.Type' in an isolated 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) {
[7/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 |
BUILD FAILURE 6.2 linux