Build Information
Failed to build PodcastFeedMaker, reference 0.3.0 (de0831), with Swift 6.3 for Wasm on 18 Apr 2026 16:58:45 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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>&1Build 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 PodcastFeedMaker ImageDimensionParser.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 PodcastFeedMaker MediaSignature.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 PodcastFeedMaker NetworkValidator+MediaVerification.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 PodcastFeedMaker NetworkValidator.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 PodcastFeedMaker PodcastFeedEngine.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 PodcastFeedMaker FeedGenerator+Podcast.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 PodcastFeedMaker FeedGenerator+RSS.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 PodcastFeedMaker FeedGenerator.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 PodcastFeedMaker GeneratorError.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 PodcastFeedMaker NamespaceResolver.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 PodcastFeedMaker StreamingFeedGenerator.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 PodcastFeedMaker XMLBuilder.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 PodcastFeedMaker AlternateEnclosure.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 PodcastFeedMaker AtomLink.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 ArgumentParser EnumerableFlag.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 ArgumentParser ExpressibleByArgument.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 ArgumentParser ParsableArguments.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 ArgumentParser ParsableCommand.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 ArgumentParser ArgumentDecoder.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 ArgumentParser ArgumentDefinition.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 ArgumentParser ArgumentSet.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 ArgumentParser CommandParser.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 ArgumentParser InputKey.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 ArgumentParser Foundation.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 ArgumentParser Mutex.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 ArgumentParser Platform.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 ArgumentParser SequenceExtensions.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 ArgumentParser StringExtensions.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 ArgumentParser ArgumentVisibility.swift
[60/183] Compiling ArgumentParser CompletionKind.swift
[61/183] Compiling ArgumentParser Errors.swift
[62/183] Compiling ArgumentParser Flag.swift
[63/183] Compiling ArgumentParser NameSpecification.swift
[64/183] Compiling ArgumentParser Option.swift
[65/183] Compiling ArgumentParser OptionGroup.swift
[66/183] Compiling ArgumentParser InputOrigin.swift
[67/183] Compiling ArgumentParser Name.swift
[68/183] Compiling ArgumentParser Parsed.swift
[69/183] Compiling ArgumentParser ParsedValues.swift
[70/183] Compiling ArgumentParser ParserError.swift
[71/183] Compiling ArgumentParser SplitArguments.swift
[72/183] Compiling ArgumentParser DumpHelpGenerator.swift
[73/183] Compiling ArgumentParser HelpCommand.swift
[74/183] Compiling PodcastFeedMaker PodcastFeed.swift
[75/183] Compiling PodcastFeedMaker PodcastGuid.swift
[76/183] Compiling PodcastFeedMaker PodcastImage.swift
[77/183] Compiling PodcastFeedMaker PodcastImages.swift
[78/183] Compiling PodcastFeedMaker PodcastIntegrity.swift
[79/183] Compiling PodcastFeedMaker PodcastLicense.swift
[80/183] Compiling PodcastFeedMaker PodcastLiveItem.swift
[81/183] Compiling PodcastFeedMaker PodcastLocation.swift
[82/183] Compiling PodcastFeedMaker PodcastMedium.swift
[83/183] Compiling PodcastFeedMaker PodcastNamespace.swift
[84/183] Compiling PodcastFeedMaker PodcastPerson.swift
[85/183] Compiling PodcastFeedMaker PodcastPublisher.swift
[86/183] Compiling PodcastFeedMaker PodcastSeason.swift
[87/183] Compiling PodcastFeedMaker PodcastSource.swift
[88/183] Compiling PodcastFeedMaker PodcastTxt.swift
[89/183] Compiling PodcastFeedMaker StandardTemplate.swift
[90/183] Compiling PodcastFeedMaker TemplateComposition.swift
[91/183] Compiling PodcastFeedMaker TemplateFeedFactory.swift
[92/183] Compiling PodcastFeedMaker TemplateValidationResult.swift
[93/183] Compiling PodcastFeedMaker TemplateValidator.swift
[94/183] Compiling PodcastFeedMaker AmazonValidation.swift
[95/183] Compiling PodcastFeedMaker AppleValidation.swift
[96/183] Compiling PodcastFeedMaker CrossCuttingValidation.swift
[97/183] Compiling PodcastFeedMaker FeedValidator.swift
[98/183] Compiling PodcastFeedMaker PSP1Validation.swift
[99/183] Compiling PodcastFeedMaker PodcastIndexValidation.swift
[100/183] Compiling PodcastFeedMaker SpotifyValidation.swift
[101/183] Compiling PodcastFeedMaker ValidationResult.swift
[102/183] Compiling PodcastFeedMaker ValidationRule.swift
[103/183] Compiling ArgumentParser SwiftExtensions.swift
[104/183] Compiling PodcastFeedMaker FeedParserDelegate+XML.swift
[105/183] Compiling PodcastFeedMaker FeedParserDelegate.swift
[106/183] Compiling PodcastFeedMaker ParserError.swift
[107/183] Compiling PodcastFeedMaker StreamingFeedParser.swift
[108/183] Compiling PodcastFeedMaker PodcastFeedMaker.swift
[109/183] Compiling PodcastFeedMaker AdvancedTemplate.swift
[110/183] Compiling PodcastFeedMaker BasicTemplate.swift
[111/183] Compiling PodcastFeedMaker ComposedTemplate.swift
[112/183] Compiling PodcastFeedMaker ExpertTemplate.swift
[113/183] Compiling PodcastFeedMaker ExpertiseLevel.swift
[114/183] Compiling PodcastFeedMaker FeedTag.swift
[115/183] Compiling PodcastFeedMaker FeedTemplate.swift
[116/183] Compiling PodcastFeedMaker PlatformPreset.swift
[123/183] Emitting module ArgumentParser
[124/183] Compiling ArgumentParser HelpGenerator.swift
[125/183] Compiling ArgumentParser MessageInfo.swift
[126/183] Compiling ArgumentParser UsageGenerator.swift
[127/183] Compiling ArgumentParser CollectionExtensions.swift
[128/183] Compiling ArgumentParser BashCompletionsGenerator.swift
[129/183] Compiling ArgumentParser CompletionsGenerator.swift
[130/183] Compiling ArgumentParser FishCompletionsGenerator.swift
[131/183] Compiling ArgumentParser ZshCompletionsGenerator.swift
[132/183] Compiling ArgumentParser Argument.swift
[133/183] Compiling ArgumentParser ArgumentDiscussion.swift
[134/183] Compiling ArgumentParser ArgumentHelp.swift
[135/183] Compiling ArgumentParser ParentCommand.swift
[136/183] Compiling ArgumentParser AsyncParsableCommand.swift
[137/183] Compiling ArgumentParser CommandConfiguration.swift
[138/183] Compiling ArgumentParser CommandGroup.swift
BUILD FAILURE 6.3 wasm