The Swift Package Index logo.Swift Package Index

Build Information

Failed to build PodcastFeedMaker, reference main (de0831), with Swift 6.3 for Wasm on 18 Apr 2026 16:58:47 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[17/183] Compiling ArgumentParser CompletionsGenerator.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[18/183] Compiling ArgumentParser FishCompletionsGenerator.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[19/183] Compiling ArgumentParser ZshCompletionsGenerator.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[20/183] Compiling ArgumentParser Argument.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[21/183] Compiling ArgumentParser ArgumentDiscussion.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[22/183] Compiling ArgumentParser ArgumentHelp.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[23/183] Compiling ArgumentParser ArgumentVisibility.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[24/183] Compiling ArgumentParser CompletionKind.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[25/183] Compiling ArgumentParser Errors.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[26/183] Compiling ArgumentParser Flag.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[27/183] Compiling ArgumentParser NameSpecification.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[28/183] Compiling ArgumentParser Option.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[29/183] Compiling ArgumentParser OptionGroup.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[30/183] Compiling ArgumentParser ParentCommand.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:436:23: error: cannot find 'URLRequest' in scope
434 |         from url: URL, byteCount: Int
435 |     ) async throws -> Data {
436 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
437 |         request.setValue(
438 |             "bytes=0-\(byteCount - 1)",
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator+MediaVerification.swift:442:43: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
440 |         request.timeoutInterval = timeout
441 |
442 |         let (data, _) = try await session.data(for: request)
    |                                           `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
443 |
444 |         if data.count > byteCount {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:44:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 45 |
 46 |     /// The timeout interval per request, in 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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
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/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: value of type '_' expected to be instance of class or class-constrained type
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:59:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 57 |     ///   - maxConcurrency: Maximum concurrent requests. Defaults to `5`.
 58 |     public init(
 59 |         session: URLSession = .shared,
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 60 |         timeout: TimeInterval = 10,
 61 |         maxConcurrency: Int = 5
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:290:21: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
288 |
289 |     private func validateContentType(
290 |         _ response: HTTPURLResponse, entry: URLEntry
    |                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
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/PodcastFeedMaker/Engine/NetworkValidator.swift:44:9: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 42 |
 43 |     /// The URL session used for HEAD requests.
 44 |     let session: URLSession
    |         `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkValidator' has non-Sendable type 'AnyObject'
 45 |
 46 |     /// The timeout interval per request, in seconds.
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:221:23: error: cannot find 'URLRequest' in scope
219 |
220 |     private func checkSingleURL(_ entry: URLEntry) async -> [ValidationResult] {
221 |         var request = URLRequest(url: entry.url)
    |                       `- error: cannot find 'URLRequest' in scope
222 |         request.httpMethod = "HEAD"
223 |         request.timeoutInterval = timeout
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:226:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
224 |
225 |         do {
226 |             let (_, response) = try await session.data(for: request)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
227 |
228 |             guard let httpResponse = response as? HTTPURLResponse else {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:293:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
291 |     ) -> [ValidationResult] {
292 |         guard let expectedType = entry.expectedType,
293 |             let contentType = response.value(forHTTPHeaderField: "Content-Type")
    |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |         else { return [] }
295 |
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/NetworkValidator.swift:298:38: error: cannot infer contextual base in reference to member 'whitespaces'
296 |         let actualBase =
297 |             contentType.components(separatedBy: ";").first?
298 |             .trimmingCharacters(in: .whitespaces) ?? contentType
    |                                      `- error: cannot infer contextual base in reference to member 'whitespaces'
299 |
300 |         if actualBase.lowercased() != expectedType.lowercased() {
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: value of type '_' expected to be instance of class or class-constrained type
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:154:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
152 |     public func validateNetwork(
153 |         _ feed: PodcastFeed,
154 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
155 |     ) async throws -> [ValidationResult] {
156 |         try await NetworkValidator(session: session).checkAllURLs(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:172:32: error: value of type '_' expected to be instance of class or class-constrained type
170 |     public func verifyMediaTypes(
171 |         _ feed: PodcastFeed,
172 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
173 |     ) async throws -> [ValidationResult] {
174 |         try await NetworkValidator(session: session).verifyMediaTypes(feed)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(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/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Engine/PodcastFeedEngine.swift:191:32: error: value of type '_' expected to be instance of class or class-constrained type
189 |         _ feed: PodcastFeed,
190 |         for platform: ValidationPlatform,
191 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
192 |     ) async throws -> [ValidationResult] {
193 |         try await NetworkValidator(session: session)
[31/183] Compiling PodcastFeedMaker UnknownElement.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[32/183] Compiling PodcastFeedMaker UpdateFrequency.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[33/183] Compiling PodcastFeedMaker ValidationPlatform.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[34/183] Compiling PodcastFeedMaker OPMLDocument.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[35/183] Compiling PodcastFeedMaker OPMLFeedConverter.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[36/183] Compiling PodcastFeedMaker OPMLGenerator.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[37/183] Compiling PodcastFeedMaker OPMLHead.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[38/183] Compiling PodcastFeedMaker OPMLOutline.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[39/183] Compiling PodcastFeedMaker OPMLParser.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[40/183] Compiling PodcastFeedMaker OPMLValidator.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[41/183] Compiling PodcastFeedMaker DateParser.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[42/183] Compiling PodcastFeedMaker FeedParser.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[43/183] Compiling PodcastFeedMaker FeedParserDelegate+Helpers.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[44/183] Compiling PodcastFeedMaker FeedParserDelegate+Podcast.swift
/host/spi-builder-workspace/Sources/PodcastFeedMaker/Parser/FeedParser.swift:96:61: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 94 |         } else {
 95 |             do {
 96 |                 let (fetchedData, _) = try await URLSession.shared.data(
    |                                                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 97 |                     from: url
 98 |                 )
[45/183] Compiling PodcastFeedMaker PodcastValue.swift
[46/183] Compiling PodcastFeedMaker PodloveChapter.swift
[47/183] Compiling PodcastFeedMaker Podroll.swift
[48/183] Compiling PodcastFeedMaker RSSCategory.swift
[49/183] Compiling PodcastFeedMaker RSSCloud.swift
[50/183] Compiling PodcastFeedMaker RSSImage.swift
[51/183] Compiling PodcastFeedMaker RSSSource.swift
[52/183] Compiling PodcastFeedMaker RSSTextInput.swift
[53/183] Compiling PodcastFeedMaker RemoteItem.swift
[54/183] Compiling PodcastFeedMaker SkipSchedule.swift
[55/183] Compiling PodcastFeedMaker SocialInteract.swift
[56/183] Compiling PodcastFeedMaker Soundbite.swift
[57/183] Compiling PodcastFeedMaker Trailer.swift
[58/183] Compiling PodcastFeedMaker Transcript.swift
[59/183] Compiling PodcastFeedMaker FeedParserDelegate+RSS.swift
[60/183] Compiling PodcastFeedMaker FeedParserDelegate+XML.swift
[61/183] Compiling PodcastFeedMaker FeedParserDelegate.swift
[62/183] Compiling PodcastFeedMaker ParserError.swift
[63/183] Compiling PodcastFeedMaker StreamingFeedParser.swift
[64/183] Compiling PodcastFeedMaker PodcastFeedMaker.swift
[65/183] Compiling PodcastFeedMaker AdvancedTemplate.swift
[66/183] Compiling PodcastFeedMaker BasicTemplate.swift
[67/183] Compiling PodcastFeedMaker ComposedTemplate.swift
[68/183] Compiling PodcastFeedMaker ExpertTemplate.swift
[69/183] Compiling PodcastFeedMaker ExpertiseLevel.swift
[70/183] Compiling PodcastFeedMaker FeedTag.swift
[71/183] Compiling PodcastFeedMaker FeedTemplate.swift
[72/183] Compiling PodcastFeedMaker PlatformPreset.swift
[73/183] Compiling PodcastFeedMaker StandardTemplate.swift
[74/183] Compiling PodcastFeedMaker TemplateComposition.swift
[75/183] Compiling PodcastFeedMaker TemplateFeedFactory.swift
[76/183] Compiling PodcastFeedMaker TemplateValidationResult.swift
[77/183] Compiling PodcastFeedMaker TemplateValidator.swift
[78/183] Compiling PodcastFeedMaker AmazonValidation.swift
[79/183] Compiling PodcastFeedMaker AppleValidation.swift
[80/183] Compiling PodcastFeedMaker CrossCuttingValidation.swift
[81/183] Compiling PodcastFeedMaker FeedValidator.swift
[82/183] Compiling PodcastFeedMaker PSP1Validation.swift
[83/183] Compiling PodcastFeedMaker PodcastIndexValidation.swift
[84/183] Compiling PodcastFeedMaker SpotifyValidation.swift
[85/183] Compiling PodcastFeedMaker ValidationResult.swift
[86/183] Compiling PodcastFeedMaker ValidationRule.swift
[87/183] Compiling ArgumentParser ParsedValues.swift
[88/183] Compiling ArgumentParser ParserError.swift
[89/183] Compiling ArgumentParser SplitArguments.swift
[90/183] Compiling ArgumentParser Foundation.swift
[91/183] Compiling ArgumentParser Mutex.swift
[92/183] Compiling ArgumentParser Platform.swift
[93/183] Compiling ArgumentParser SequenceExtensions.swift
[94/183] Compiling ArgumentParser StringExtensions.swift
[95/183] Compiling ArgumentParser SwiftExtensions.swift
[96/183] Compiling ArgumentParser ParsableCommand.swift
[97/183] Compiling ArgumentParser ArgumentDecoder.swift
[98/183] Compiling ArgumentParser ArgumentDefinition.swift
[99/183] Compiling ArgumentParser ArgumentSet.swift
[100/183] Compiling ArgumentParser CommandParser.swift
[101/183] Compiling ArgumentParser InputKey.swift
[102/183] Compiling PodcastFeedMaker AuditCategory.swift
[103/183] Compiling PodcastFeedMaker AuditComparison.swift
[104/183] Compiling PodcastFeedMaker AuditCriterion.swift
[105/183] Compiling PodcastFeedMaker AuditGrade.swift
[106/183] Compiling PodcastFeedMaker AuditRecommendation.swift
[107/183] Compiling PodcastFeedMaker AuditReport.swift
[108/183] Compiling PodcastFeedMaker AuditScoring+ComplianceAccessDiscover.swift
[109/183] Compiling PodcastFeedMaker AuditScoring+MetadataEpisodes.swift
[110/183] Compiling PodcastFeedMaker AuditScoring.swift
[111/183] Compiling PodcastFeedMaker FeedAuditor.swift
[112/183] Compiling PodcastFeedMaker PlatformCompatibility.swift
[113/183] Compiling PodcastFeedMaker ChannelBuilder.swift
[114/183] Compiling PodcastFeedMaker ItemBuilder.swift
[115/183] Compiling PodcastFeedMaker PSP1Helper.swift
[116/183] Compiling PodcastFeedMaker PodcastFeedBuilder.swift
[117/183] Compiling ArgumentParser AsyncParsableCommand.swift
[118/183] Compiling ArgumentParser CommandConfiguration.swift
[119/183] Compiling ArgumentParser CommandGroup.swift
[120/183] Compiling ArgumentParser EnumerableFlag.swift
[121/183] Compiling ArgumentParser ExpressibleByArgument.swift
[122/183] Compiling ArgumentParser ParsableArguments.swift
[123/183] Compiling ArgumentParser DumpHelpGenerator.swift
[124/183] Compiling ArgumentParser HelpCommand.swift
[125/183] Compiling ArgumentParser HelpGenerator.swift
[126/183] Compiling ArgumentParser MessageInfo.swift
[127/183] Compiling ArgumentParser UsageGenerator.swift
[128/183] Compiling ArgumentParser CollectionExtensions.swift
[129/183] Compiling ArgumentParser InputOrigin.swift
[130/183] Compiling ArgumentParser Name.swift
[131/183] Compiling ArgumentParser Parsed.swift
[139/183] Emitting module ArgumentParser
BUILD FAILURE 6.3 wasm