Build Information
Failed to build ATProtoKit, reference main (910f1c
), with Swift 5.10 for Linux on 13 Apr 2025 08:13:35 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1083/1139] Compiling ATProtoKit FirehoseEventRepresentable.swift
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SignPLCOperation.swift:68:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SubmitPLCOperation.swift:45:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateEmail.swift:62:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateHandle.swift:49:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UploadBlob.swift:52:74: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
let response = try await APIClientService.shared.sendRequest(request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:489:57: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
pdsURL: session?.pdsURL ?? (self.pdsURL ?? nil),
~~~~~~~~~~~~^~~~~~
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:56:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'UserSession' has non-sendable type 'URL'
public let serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1084/1139] Compiling ATProtoKit ATRecordViewProtocol.swift
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SignPLCOperation.swift:68:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SubmitPLCOperation.swift:45:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateEmail.swift:62:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateHandle.swift:49:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UploadBlob.swift:52:74: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
let response = try await APIClientService.shared.sendRequest(request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:489:57: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
pdsURL: session?.pdsURL ?? (self.pdsURL ?? nil),
~~~~~~~~~~~~^~~~~~
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:56:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'UserSession' has non-sendable type 'URL'
public let serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1085/1139] Compiling ATProtoKit ATRecordViewProtocolExtensions.swift
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SignPLCOperation.swift:68:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SubmitPLCOperation.swift:45:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateEmail.swift:62:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateHandle.swift:49:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UploadBlob.swift:52:74: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
let response = try await APIClientService.shared.sendRequest(request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:489:57: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
pdsURL: session?.pdsURL ?? (self.pdsURL ?? nil),
~~~~~~~~~~~~^~~~~~
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:56:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'UserSession' has non-sendable type 'URL'
public let serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1086/1139] Compiling ATProtoKit SessionToken.swift
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SignPLCOperation.swift:68:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SubmitPLCOperation.swift:45:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateEmail.swift:62:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateHandle.swift:49:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UploadBlob.swift:52:74: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
let response = try await APIClientService.shared.sendRequest(request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:489:57: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
pdsURL: session?.pdsURL ?? (self.pdsURL ?? nil),
~~~~~~~~~~~~^~~~~~
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:56:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'UserSession' has non-sendable type 'URL'
public let serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1087/1139] Compiling ATProtoKit ATUnion.swift
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SignPLCOperation.swift:68:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SubmitPLCOperation.swift:45:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateEmail.swift:62:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateHandle.swift:49:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UploadBlob.swift:52:74: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
let response = try await APIClientService.shared.sendRequest(request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:489:57: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
pdsURL: session?.pdsURL ?? (self.pdsURL ?? nil),
~~~~~~~~~~~~^~~~~~
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:56:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'UserSession' has non-sendable type 'URL'
public let serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1088/1139] Compiling ATProtoKit Lexicons.swift
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SignPLCOperation.swift:68:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SubmitPLCOperation.swift:45:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateEmail.swift:62:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateHandle.swift:49:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UploadBlob.swift:52:74: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
let response = try await APIClientService.shared.sendRequest(request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:489:57: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
pdsURL: session?.pdsURL ?? (self.pdsURL ?? nil),
~~~~~~~~~~~~^~~~~~
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:56:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'UserSession' has non-sendable type 'URL'
public let serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1089/1139] Compiling ATProtoKit AppBskyActorDefs.swift
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SignPLCOperation.swift:68:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SubmitPLCOperation.swift:45:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateEmail.swift:62:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateHandle.swift:49:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UploadBlob.swift:52:74: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
let response = try await APIClientService.shared.sendRequest(request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:489:57: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
pdsURL: session?.pdsURL ?? (self.pdsURL ?? nil),
~~~~~~~~~~~~^~~~~~
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:56:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'UserSession' has non-sendable type 'URL'
public let serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1090/1139] Compiling ATProtoKit AppBskyActorGetPreferences.swift
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SignPLCOperation.swift:68:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SubmitPLCOperation.swift:45:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateEmail.swift:62:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateHandle.swift:49:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UploadBlob.swift:52:74: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
let response = try await APIClientService.shared.sendRequest(request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:489:57: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
pdsURL: session?.pdsURL ?? (self.pdsURL ?? nil),
~~~~~~~~~~~~^~~~~~
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:56:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'UserSession' has non-sendable type 'URL'
public let serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1091/1139] Compiling ATProtoKit AppBskyActorGetProfile.swift
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SignPLCOperation.swift:68:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SubmitPLCOperation.swift:45:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateEmail.swift:62:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateHandle.swift:49:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UploadBlob.swift:52:74: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
let response = try await APIClientService.shared.sendRequest(request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:489:57: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
pdsURL: session?.pdsURL ?? (self.pdsURL ?? nil),
~~~~~~~~~~~~^~~~~~
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:56:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'UserSession' has non-sendable type 'URL'
public let serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1092/1139] Compiling ATProtoKit AppBskyActorGetProfiles.swift
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SignPLCOperation.swift:68:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/SubmitPLCOperation.swift:45:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateEmail.swift:62:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UpdateHandle.swift:49:17: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/ComAtprotoAPI/UploadBlob.swift:52:74: warning: passing argument of non-sendable type 'URLRequest' into actor-isolated context may introduce data races
let response = try await APIClientService.shared.sendRequest(request,
^
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:92:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:59: warning: capture of 'configuration' with non-sendable type 'URLSessionConfiguration' in a `@Sendable` closure
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:127:53: warning: passing argument of non-sendable type 'URLSessionConfiguration' into actor-isolated context may introduce data races
await APIClientService.shared.configure(with: configuration)
^
FoundationNetworking.URLSessionConfiguration:1:12: note: class 'URLSessionConfiguration' does not conform to the 'Sendable' protocol
open class URLSessionConfiguration : NSObject, NSCopying {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/ATProtocolConfiguration.swift:489:57: warning: left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used
pdsURL: session?.pdsURL ?? (self.pdsURL ?? nil),
~~~~~~~~~~~~^~~~~~
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:56:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'UserSession' has non-sendable type 'URL'
public let serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/APIReference/SessionManager/UserSession.swift:226:16: warning: stored property 'serviceEndpoint' of 'Sendable'-conforming struct 'ATService' has non-sendable type 'URL'
public var serviceEndpoint: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:201:63: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/ATProtoKit.swift:230:59: warning: reference to static property 'areBlueskyRecordsRegistered' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
if canUseBlueskyRecords && !(ATRecordTypeRegistry.areBlueskyRecordsRegistered) {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Utilities/ATRecordProtocol.swift:154:36: note: static property declared here
public private(set) static var areBlueskyRecordsRegistered = false
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:31:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewBasicDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:109:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:196:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Actor/AppBskyActorDefs.swift:199:20: warning: stored property 'bannerImageURL' of 'Sendable'-conforming struct 'ProfileViewDetailedDefinition' has non-sendable type 'URL?'
public let bannerImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1093/1139] Compiling ATProtoKit AppBskyActorGetSuggestions.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1094/1139] Compiling ATProtoKit AppBskyActorProfile.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1095/1139] Compiling ATProtoKit AppBskyActorPutPreferences.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1096/1139] Compiling ATProtoKit AppBskyActorSearchActors.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1097/1139] Compiling ATProtoKit AppBskyActorSearchActorsTypeahead.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1098/1139] Compiling ATProtoKit AppBskyLexicon.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1099/1139] Compiling ATProtoKit AppBskyEmbedDefs.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1100/1139] Compiling ATProtoKit AppBskyEmbedExternal.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1101/1139] Compiling ATProtoKit AppBskyEmbedImages.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1102/1139] Compiling ATProtoKit AppBskyEmbedRecord.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1103/1139] Compiling ATProtoKit AppBskyEmbedRecordWithMedia.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1104/1139] Compiling ATProtoKit AppBskyEmbedVideo.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1105/1139] Compiling ATProtoKit AppBskyFeedDefs.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1106/1139] Compiling ATProtoKit AppBskyFeedDescribeFeedGenerator.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1107/1139] Compiling ATProtoKit AppBskyFeedGenerator.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1108/1139] Compiling ATProtoKit AppBskyFeedGetActorFeeds.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1109/1139] Compiling ATProtoKit AppBskyFeedGetActorLikes.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1110/1139] Compiling ATProtoKit AppBskyFeedGetAuthorFeed.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1111/1139] Compiling ATProtoKit AppBskyFeedGetFeed.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1112/1139] Compiling ATProtoKit AppBskyFeedGetFeedGenerator.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1113/1139] Compiling ATProtoKit AppBskyFeedGetFeedGenerators.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1114/1139] Compiling ATProtoKit AppBskyFeedGetFeedSkeleton.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1115/1139] Compiling ATProtoKit AppBskyFeedGetLikes.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1116/1139] Compiling ATProtoKit AppBskyFeedGetListFeed.swift
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:49:24: warning: stored property 'uri' of 'Sendable'-conforming struct 'External' has non-sendable type 'URL'
public let uri: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedExternal.swift:111:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewExternal' has non-sendable type 'URL?'
public let thumbnailImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:138:24: warning: stored property 'thumbnailImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let thumbnailImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Embed/AppBskyEmbedImages.swift:145:24: warning: stored property 'fullSizeImageURL' of 'Sendable'-conforming struct 'ViewImage' has non-sendable type 'URL'
public let fullSizeImageURL: URL
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:393:20: warning: stored property 'avatarImageURL' of 'Sendable'-conforming struct 'GeneratorViewDefinition' has non-sendable type 'URL?'
public let avatarImageURL: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDefs.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:54:24: warning: stored property 'privacyPolicy' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let privacyPolicy: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:8:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/ATProtoKit/Models/Lexicons/app.bsky/Feed/AppBskyFeedDescribeFeedGenerator.swift:57:24: warning: stored property 'termsOfService' of 'Sendable'-conforming struct 'Links' has non-sendable type 'URL?'
public let termsOfService: URL?
^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
^
[1117/1139] Compiling ATProtoKit ToolsOzoneModerationDefs.swift
[1118/1139] Compiling ATProtoKit ToolsOzoneModerationEmitEvent.swift
[1119/1139] Compiling ATProtoKit ToolsOzoneModerationGetRecords.swift
[1120/1139] Compiling ATProtoKit ToolsOzoneModerationGetReporterStats.swift
[1121/1139] Compiling ATProtoKit ToolsOzoneModerationGetRepos.swift
[1122/1139] Compiling ATProtoKit ToolsOzoneModerationQueryEvents.swift
[1123/1139] Compiling ATProtoKit ToolsOzoneModerationQueryStatuses.swift
[1124/1139] Compiling ATProtoKit ToolsOzoneModerationSearchRepos.swift
[1125/1139] Compiling ATProtoKit ToolsOzoneServerGetConfig.swift
[1126/1139] Compiling ATProtoKit ToolsOzoneModerationSetAddValues.swift
[1127/1139] Compiling ATProtoKit ToolsOzoneSetDefs.swift
[1128/1139] Compiling ATProtoKit ToolsOzoneSetDeleteSet.swift
[1129/1139] Compiling ATProtoKit ToolsOzoneSetDeleteValues.swift
[1130/1139] Compiling ATProtoKit ToolsOzoneSetGetValues.swift
[1131/1139] Compiling ATProtoKit ToolsOzoneSetQuerySets.swift
[1132/1139] Compiling ATProtoKit ToolsOzoneSettingDefs.swift
[1133/1139] Compiling ATProtoKit ToolsOzoneSettingListOptions.swift
[1134/1139] Compiling ATProtoKit ToolsOzoneSettingRemoveOptions.swift
[1135/1139] Compiling ATProtoKit ToolsOzoneSettingUpsertOption.swift
[1136/1139] Compiling ATProtoKit ToolsOzoneSignatureDefs.swift
[1137/1139] Compiling ATProtoKit ToolsOzoneSignatureFindCorrelation.swift
[1138/1139] Compiling ATProtoKit ToolsOzoneSignatureFindRelatedAccounts.swift
[1139/1139] Compiling ATProtoKit ToolsOzoneSignatureSearchAccounts.swift
error: fatalError
BUILD FAILURE 5.10 linux