Build Information
Successful build of SpotifyAPI, reference 4.0.1 (29329b
), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 30 Apr 2025 05:15:26 UTC.
Swift 6 data race errors: 27
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SpotifyAPI -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Tracks.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+UserProfile.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Utilities.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Wrappers.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationCodeFlowManager.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationCodeFlowManagerBase.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationCodeFlowManagerBase.swift:381:13: warning: capture of 'self' with non-sendable type 'AuthorizationCodeFlowManagerBase<Backend>' in a '@Sendable' closure
self.didChange.send()
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationCodeFlowManagerBase.swift:30:14: note: generic class 'AuthorizationCodeFlowManagerBase' does not conform to the 'Sendable' protocol
public class AuthorizationCodeFlowManagerBase<Backend: Codable & Hashable> {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationCodeFlowPKCEManager.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:272:23: warning: static property 'allCases' is not concurrency-safe because non-'Sendable' type 'Set<Scope>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allCases: Set<Scope> = [
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:12:13: note: consider making enum 'Scope' conform to the 'Sendable' protocol
public enum Scope: String, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:272:23: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
public static let allCases: Set<Scope> = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:272:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allCases: Set<Scope> = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationBackends.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowClientBackend.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowClientBackend.swift:36:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowClientBackend.swift:36:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowClientBackend.swift:36:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowClientBackend.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEClientBackend.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEClientBackend.swift:38:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEClientBackend.swift:38:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEClientBackend.swift:38:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEClientBackend.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEProxyBackend.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEProxyBackend.swift:52:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEProxyBackend.swift:52:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEProxyBackend.swift:52:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEProxyBackend.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ SpotifyWebAPI (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
EmitSwiftModule normal arm64 (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:272:23: warning: static property 'allCases' is not concurrency-safe because non-'Sendable' type 'Set<Scope>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allCases: Set<Scope> = [
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:12:13: note: consider making enum 'Scope' conform to the 'Sendable' protocol
public enum Scope: String, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:272:23: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
public static let allCases: Set<Scope> = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:272:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allCases: Set<Scope> = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowClientBackend.swift:36:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowClientBackend.swift:36:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowClientBackend.swift:36:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowClientBackend.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEClientBackend.swift:38:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEClientBackend.swift:38:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEClientBackend.swift:38:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEClientBackend.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEProxyBackend.swift:52:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEProxyBackend.swift:52:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEProxyBackend.swift:52:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowPKCEProxyBackend.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift:55:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift:55:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift:55:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowClientBackend.swift:35:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowClientBackend.swift:35:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowClientBackend.swift:35:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowClientBackend.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowProxyBackend.swift:40:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowProxyBackend.swift:40:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowProxyBackend.swift:40:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowProxyBackend.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyDecodingError.swift:35:23: warning: static property 'dataDumpFolder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var dataDumpFolder: URL? = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyDecodingError.swift:35:23: note: convert 'dataDumpFolder' to a 'let' constant to make 'Sendable' shared state immutable
public static var dataDumpFolder: URL? = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyDecodingError.swift:35:23: note: add '@MainActor' to make static property 'dataDumpFolder' part of global actor 'MainActor'
public static var dataDumpFolder: URL? = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyDecodingError.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var dataDumpFolder: URL? = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift:55:10: warning: associated value 'insufficientScope(requiredScopes:authorizedScopes:)' of 'Sendable'-conforming enum 'SpotifyGeneralError' has non-sendable type 'Scope'; this is an error in the Swift 6 language mode
case insufficientScope(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:12:13: note: consider making enum 'Scope' conform to the 'Sendable' protocol
public enum Scope: String, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift:55:10: warning: associated value 'insufficientScope(requiredScopes:authorizedScopes:)' of 'Sendable'-conforming enum 'SpotifyGeneralError' has non-sendable type 'Scope'; this is an error in the Swift 6 language mode
case insufficientScope(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:12:13: note: consider making enum 'Scope' conform to the 'Sendable' protocol
public enum Scope: String, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift:79:10: warning: associated value 'invalidIdCategory(expected:received:)' of 'Sendable'-conforming enum 'SpotifyGeneralError' has non-sendable type 'IDCategory'; this is an error in the Swift 6 language mode
case invalidIdCategory(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/IDCategory.swift:18:13: note: consider making enum 'IDCategory' conform to the 'Sendable' protocol
public enum IDCategory: String, CaseIterable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift:79:10: warning: associated value 'invalidIdCategory(expected:received:)' of 'Sendable'-conforming enum 'SpotifyGeneralError' has non-sendable type 'IDCategory'; this is an error in the Swift 6 language mode
case invalidIdCategory(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/IDCategory.swift:18:13: note: consider making enum 'IDCategory' conform to the 'Sendable' protocol
public enum IDCategory: String, CaseIterable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift:95:10: warning: associated value 'topLevelKeyNotFound(key:dict:)' of 'Sendable'-conforming enum 'SpotifyGeneralError' has non-sendable type '(key: String, dict: [AnyHashable : Any])'; this is an error in the Swift 6 language mode
case topLevelKeyNotFound(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyPlayerError.swift:69:16: warning: stored property 'reason' of 'Sendable'-conforming struct 'SpotifyPlayerError' has non-sendable type 'SpotifyPlayerError.ErrorReason'; this is an error in the Swift 6 language mode
public let reason: ErrorReason
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyPlayerError.swift:102:17: note: consider making enum 'ErrorReason' conform to the 'Sendable' protocol
public enum ErrorReason: String, Codable, Hashable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/CurrentlyPlayingContext.swift:9:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/CurrentlyPlayingContext.swift:9:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/CurrentlyPlayingContext.swift:9:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/CurrentlyPlayingContext.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/PlaybackActions.swift:50:23: warning: static property 'allCases' is not concurrency-safe because non-'Sendable' type 'Set<PlaybackActions>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allCases: Set<PlaybackActions> = [
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/PlaybackActions.swift:10:13: note: consider making enum 'PlaybackActions' conform to the 'Sendable' protocol
public enum PlaybackActions: String, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/PlaybackActions.swift:50:23: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
public static let allCases: Set<PlaybackActions> = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/PlaybackActions.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allCases: Set<PlaybackActions> = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:12:16: warning: static property 'authorizationCodeFlowManagerBaseLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var authorizationCodeFlowManagerBaseLogger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:12:16: note: convert 'authorizationCodeFlowManagerBaseLogger' to a 'let' constant to make 'Sendable' shared state immutable
static var authorizationCodeFlowManagerBaseLogger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:12:16: note: add '@MainActor' to make static property 'authorizationCodeFlowManagerBaseLogger' part of global actor 'MainActor'
static var authorizationCodeFlowManagerBaseLogger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var authorizationCodeFlowManagerBaseLogger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:18:16: warning: static property 'authorizationCodeFlowManagerLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var authorizationCodeFlowManagerLogger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:18:16: note: convert 'authorizationCodeFlowManagerLogger' to a 'let' constant to make 'Sendable' shared state immutable
static var authorizationCodeFlowManagerLogger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:18:16: note: add '@MainActor' to make static property 'authorizationCodeFlowManagerLogger' part of global actor 'MainActor'
static var authorizationCodeFlowManagerLogger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var authorizationCodeFlowManagerLogger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:24:16: warning: static property 'authorizationCodeFlowPKCEManagerLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var authorizationCodeFlowPKCEManagerLogger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:24:16: note: convert 'authorizationCodeFlowPKCEManagerLogger' to a 'let' constant to make 'Sendable' shared state immutable
static var authorizationCodeFlowPKCEManagerLogger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:24:16: note: add '@MainActor' to make static property 'authorizationCodeFlowPKCEManagerLogger' part of global actor 'MainActor'
static var authorizationCodeFlowPKCEManagerLogger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var authorizationCodeFlowPKCEManagerLogger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:30:16: warning: static property 'clientCredentialsFlowManagerLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var clientCredentialsFlowManagerLogger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:30:16: note: convert 'clientCredentialsFlowManagerLogger' to a 'let' constant to make 'Sendable' shared state immutable
static var clientCredentialsFlowManagerLogger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:30:16: note: add '@MainActor' to make static property 'clientCredentialsFlowManagerLogger' part of global actor 'MainActor'
static var clientCredentialsFlowManagerLogger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:30:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var clientCredentialsFlowManagerLogger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:74:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SpotifyTimestampFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shared = Self()
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:71:15: note: consider making struct 'SpotifyTimestampFormatter' conform to the 'Sendable' protocol
public struct SpotifyTimestampFormatter {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:74:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
public static let shared = Self()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shared = Self()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:76:23: warning: static property 'secondsFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
public static let secondsFormatter: ISO8601DateFormatter = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:76:23: note: add '@MainActor' to make static property 'secondsFormatter' part of global actor 'MainActor'
public static let secondsFormatter: ISO8601DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let secondsFormatter: ISO8601DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:82:23: warning: static property 'millisecondsFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
public static let millisecondsFormatter: ISO8601DateFormatter = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:82:23: note: add '@MainActor' to make static property 'millisecondsFormatter' part of global actor 'MainActor'
public static let millisecondsFormatter: ISO8601DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let millisecondsFormatter: ISO8601DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DebugHooks.swift:17:16: warning: static property 'receiveRateLimitedError' is not concurrency-safe because non-'Sendable' type 'PassthroughSubject<RateLimitedError, Never>' may have shared mutable state; this is an error in the Swift 6 language mode
static let receiveRateLimitedError = PassthroughSubject<RateLimitedError, Never>()
^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DebugHooks.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
import Combine
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DebugHooks.swift:17:16: note: add '@MainActor' to make static property 'receiveRateLimitedError' part of global actor 'MainActor'
static let receiveRateLimitedError = PassthroughSubject<RateLimitedError, Never>()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DebugHooks.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let receiveRateLimitedError = PassthroughSubject<RateLimitedError, Never>()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/LogHandler.swift:13:24: warning: static property 'handlerIsInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var handlerIsInitialized = false
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/LogHandler.swift:13:24: note: convert 'handlerIsInitialized' to a 'let' constant to make 'Sendable' shared state immutable
private static var handlerIsInitialized = false
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/LogHandler.swift:13:24: note: add '@MainActor' to make static property 'handlerIsInitialized' part of global actor 'MainActor'
private static var handlerIsInitialized = false
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/LogHandler.swift:13:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var handlerIsInitialized = false
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher Extensions/SpotifyObjectDecoding.swift:23:12: warning: var 'spotifyDecodeLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var spotifyDecodeLogger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher Extensions/SpotifyObjectDecoding.swift:23:12: note: convert 'spotifyDecodeLogger' to a 'let' constant to make 'Sendable' shared state immutable
public var spotifyDecodeLogger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher Extensions/SpotifyObjectDecoding.swift:23:12: note: add '@MainActor' to make var 'spotifyDecodeLogger' part of global actor 'MainActor'
public var spotifyDecodeLogger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher Extensions/SpotifyObjectDecoding.swift:23:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var spotifyDecodeLogger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLSessionWrappers.swift:41:16: warning: static property '_defaultNetworkAdaptor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var _defaultNetworkAdaptor: (
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLSessionWrappers.swift:41:16: note: convert '_defaultNetworkAdaptor' to a 'let' constant to make 'Sendable' shared state immutable
static var _defaultNetworkAdaptor: (
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLSessionWrappers.swift:41:16: note: add '@MainActor' to make static property '_defaultNetworkAdaptor' part of global actor 'MainActor'
static var _defaultNetworkAdaptor: (
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLSessionWrappers.swift:41:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var _defaultNetworkAdaptor: (
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ TimeRange.swift,\ TrackAttributes.swift,\ PlaybackRequest+Context.swift,\ PlaybackRequest+Offset.swift,\ PlaybackRequest.swift,\ TimeReference.swift,\ TransferPlaybackRequest.swift,\ PlaylistDetails.swift,\ ReorderPlaylistItems.swift,\ URIsContainer.swift,\ URIsDictWithInsertionIndex.swift,\ TypeAliases.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Other\ Objects/TimeRange.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Other\ Objects/TrackAttributes.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Player\ Objects/PlaybackRequest+Context.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Player\ Objects/PlaybackRequest+Offset.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Player\ Objects/PlaybackRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Player\ Objects/TimeReference.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Player\ Objects/TransferPlaybackRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Playlist\ Objects/PlaylistDetails.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Playlist\ Objects/ReorderPlaylistItems.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Playlist\ Objects/URIsContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Playlist\ Objects/URIsDictWithInsertionIndex.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/TypeAliases.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Other\ Objects/TimeRange.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Other\ Objects/TrackAttributes.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Player\ Objects/PlaybackRequest+Context.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Player\ Objects/PlaybackRequest+Offset.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Player\ Objects/PlaybackRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Player\ Objects/TimeReference.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Player\ Objects/TransferPlaybackRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Playlist\ Objects/PlaylistDetails.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Playlist\ Objects/ReorderPlaylistItems.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Playlist\ Objects/URIsContainer.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Playlist\ Objects/URIsDictWithInsertionIndex.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/TypeAliases.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ PlayHistory.swift,\ PlaybackActions.swift,\ RepeatMode.swift,\ ResumePoint.swift,\ SpotifyContext.swift,\ SpotifyQueue.swift,\ Playlist.swift,\ PlaylistItem.swift,\ PlaylistItemContainer.swift,\ PlaylistItemsReference.swift,\ Episode.swift,\ Show.swift,\ AttributeRange.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/PlayHistory.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/PlaybackActions.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/RepeatMode.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/ResumePoint.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/SpotifyContext.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/SpotifyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Playlist\ Objects/Playlist.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Playlist\ Objects/PlaylistItem.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Playlist\ Objects/PlaylistItemContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Playlist\ Objects/PlaylistItemsReference.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Podcast\ Objects/Episode.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Podcast\ Objects/Show.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Other\ Objects/AttributeRange.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/PlayHistory.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/PlaybackActions.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/PlaybackActions.swift:50:23: warning: static property 'allCases' is not concurrency-safe because non-'Sendable' type 'Set<PlaybackActions>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allCases: Set<PlaybackActions> = [
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/PlaybackActions.swift:10:13: note: consider making enum 'PlaybackActions' conform to the 'Sendable' protocol
public enum PlaybackActions: String, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/PlaybackActions.swift:50:23: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
public static let allCases: Set<PlaybackActions> = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/PlaybackActions.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allCases: Set<PlaybackActions> = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/RepeatMode.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/ResumePoint.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/SpotifyContext.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/SpotifyQueue.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Playlist\ Objects/Playlist.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Playlist\ Objects/PlaylistItem.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Playlist\ Objects/PlaylistItemContainer.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Playlist\ Objects/PlaylistItemsReference.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Podcast\ Objects/Episode.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Podcast\ Objects/Show.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Post\ Request\ Objects/Other\ Objects/AttributeRange.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ProxyPKCETokensRequest.swift,\ ProxyTokensRequest.swift,\ RefreshTokensRequest.swift,\ TokensRequest.swift,\ RecommendationSeed.swift,\ RecommendationsResponse.swift,\ Album.swift,\ Artist.swift,\ Track.swift,\ AlbumType.swift,\ Copyright.swift,\ CursorPagingObject.swift,\ FeaturedPlaylists.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/ProxyPKCETokensRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/ProxyTokensRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/RefreshTokensRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/TokensRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Browse\ Objects/RecommendationSeed.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Browse\ Objects/RecommendationsResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Music\ Objects/Album.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Music\ Objects/Artist.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Music\ Objects/Track.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/AlbumType.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/Copyright.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/CursorPagingObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/FeaturedPlaylists.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/ProxyPKCETokensRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/ProxyTokensRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/RefreshTokensRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/TokensRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Browse\ Objects/RecommendationSeed.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Browse\ Objects/RecommendationsResponse.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Music\ Objects/Album.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Music\ Objects/Artist.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Music\ Objects/Track.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/AlbumType.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/Copyright.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/CursorPagingObject.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/FeaturedPlaylists.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ AudioAnalysis.swift,\ AudioFeatures.swift,\ Section.swift,\ Segment.swift,\ SpotifyTimeInterval.swift,\ Audiobook.swift,\ AudiobookAuthor.swift,\ AudiobookChapter.swift,\ AuthInfo.swift,\ ClientCredentialsTokensRequest.swift,\ PKCERefreshTokensRequest.swift,\ PKCETokensRequest.swift,\ ProxyPKCERefreshTokensRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audio\ Analysis\ Objects/AudioAnalysis.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audio\ Analysis\ Objects/AudioFeatures.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audio\ Analysis\ Objects/Section.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audio\ Analysis\ Objects/Segment.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audio\ Analysis\ Objects/SpotifyTimeInterval.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audiobook\ Objects/Audiobook.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audiobook\ Objects/AudiobookAuthor.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audiobook\ Objects/AudiobookChapter.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/AuthInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/ClientCredentialsTokensRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/PKCERefreshTokensRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/PKCETokensRequest.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/ProxyPKCERefreshTokensRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audio\ Analysis\ Objects/AudioAnalysis.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audio\ Analysis\ Objects/AudioFeatures.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audio\ Analysis\ Objects/Section.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audio\ Analysis\ Objects/Segment.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audio\ Analysis\ Objects/SpotifyTimeInterval.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audiobook\ Objects/Audiobook.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audiobook\ Objects/AudiobookAuthor.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Audiobook\ Objects/AudiobookChapter.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/AuthInfo.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/ClientCredentialsTokensRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/PKCERefreshTokensRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/PKCETokensRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Authorization\ Objects/ProxyPKCERefreshTokensRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SpotifyAPI+Albums.swift,\ SpotifyAPI+Artists.swift,\ SpotifyAPI+Audiobooks.swift,\ SpotifyAPI+Browse.swift,\ SpotifyAPI+Episodes.swift,\ SpotifyAPI+Follow.swift,\ SpotifyAPI+Library.swift,\ SpotifyAPI+Markets.swift,\ SpotifyAPI+Personalization.swift,\ SpotifyAPI+Player.swift,\ SpotifyAPI+Playlists.swift,\ SpotifyAPI+Search.swift,\ SpotifyAPI+Shows.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Albums.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Artists.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Audiobooks.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Browse.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Episodes.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Follow.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Library.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Markets.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Personalization.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Playlists.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Search.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Shows.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Albums.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Artists.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Audiobooks.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Browse.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Episodes.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Follow.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Library.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Markets.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Personalization.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Player.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Playlists.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Search.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/API/SpotifyAPI+Shows.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling OperationQueue+Scheduler.swift (in target 'OpenCombineFoundation' from project 'OpenCombine')
SwiftCompile normal arm64 Compiling\ MiscellaneousUtilities.swift,\ Paginated.swift,\ SpotifyIdentifier.swift,\ SpotifyURIConvertible.swift,\ StringExtensions.swift,\ DelayedConditionalRetryPublisher.swift,\ OtherPublisherExtensions.swift,\ SpotifyObjectDecoding.swift,\ URLComponentsExtensions.swift,\ URLExtensions.swift,\ URLQueryItemExtensions.swift,\ URLSessionWrappers.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/MiscellaneousUtilities.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/Paginated.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/SpotifyIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/SpotifyURIConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/StringExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher\ Extensions/DelayedConditionalRetryPublisher.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher\ Extensions/OtherPublisherExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher\ Extensions/SpotifyObjectDecoding.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLComponentsExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLQueryItemExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLSessionWrappers.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/MiscellaneousUtilities.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/Paginated.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/SpotifyIdentifier.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/SpotifyURIConvertible.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/StringExtensions.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher\ Extensions/DelayedConditionalRetryPublisher.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher\ Extensions/OtherPublisherExtensions.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher\ Extensions/SpotifyObjectDecoding.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher Extensions/SpotifyObjectDecoding.swift:23:12: warning: var 'spotifyDecodeLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var spotifyDecodeLogger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher Extensions/SpotifyObjectDecoding.swift:23:12: note: convert 'spotifyDecodeLogger' to a 'let' constant to make 'Sendable' shared state immutable
public var spotifyDecodeLogger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher Extensions/SpotifyObjectDecoding.swift:23:12: note: add '@MainActor' to make var 'spotifyDecodeLogger' part of global actor 'MainActor'
public var spotifyDecodeLogger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Publisher Extensions/SpotifyObjectDecoding.swift:23:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var spotifyDecodeLogger = Logger(
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLComponentsExtensions.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLExtensions.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLQueryItemExtensions.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLSessionWrappers.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLSessionWrappers.swift:41:16: warning: static property '_defaultNetworkAdaptor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var _defaultNetworkAdaptor: (
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLSessionWrappers.swift:41:16: note: convert '_defaultNetworkAdaptor' to a 'let' constant to make 'Sendable' shared state immutable
static var _defaultNetworkAdaptor: (
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLSessionWrappers.swift:41:16: note: add '@MainActor' to make static property '_defaultNetworkAdaptor' part of global actor 'MainActor'
static var _defaultNetworkAdaptor: (
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/URLExtensions/URLSessionWrappers.swift:41:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var _defaultNetworkAdaptor: (
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ ApproximateEquality.swift,\ ApproximatelyEquatable.swift,\ AuthorizationManagerLoggers.swift,\ CodingExtensions.swift,\ DataExtensions.swift,\ DateExtensions.swift,\ DateFormatterExtensions.swift,\ DebugHooks.swift,\ Endpoints.swift,\ Headers.swift,\ IDCategory.swift,\ LogHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/ApproximateEquality.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/ApproximatelyEquatable.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/CodingExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DataExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DebugHooks.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/Endpoints.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/Headers.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/IDCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/LogHandler.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/ApproximateEquality.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/ApproximatelyEquatable.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:12:16: warning: static property 'authorizationCodeFlowManagerBaseLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var authorizationCodeFlowManagerBaseLogger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:12:16: note: convert 'authorizationCodeFlowManagerBaseLogger' to a 'let' constant to make 'Sendable' shared state immutable
static var authorizationCodeFlowManagerBaseLogger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:12:16: note: add '@MainActor' to make static property 'authorizationCodeFlowManagerBaseLogger' part of global actor 'MainActor'
static var authorizationCodeFlowManagerBaseLogger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var authorizationCodeFlowManagerBaseLogger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:18:16: warning: static property 'authorizationCodeFlowManagerLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var authorizationCodeFlowManagerLogger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:18:16: note: convert 'authorizationCodeFlowManagerLogger' to a 'let' constant to make 'Sendable' shared state immutable
static var authorizationCodeFlowManagerLogger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:18:16: note: add '@MainActor' to make static property 'authorizationCodeFlowManagerLogger' part of global actor 'MainActor'
static var authorizationCodeFlowManagerLogger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var authorizationCodeFlowManagerLogger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:24:16: warning: static property 'authorizationCodeFlowPKCEManagerLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var authorizationCodeFlowPKCEManagerLogger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:24:16: note: convert 'authorizationCodeFlowPKCEManagerLogger' to a 'let' constant to make 'Sendable' shared state immutable
static var authorizationCodeFlowPKCEManagerLogger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:24:16: note: add '@MainActor' to make static property 'authorizationCodeFlowPKCEManagerLogger' part of global actor 'MainActor'
static var authorizationCodeFlowPKCEManagerLogger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var authorizationCodeFlowPKCEManagerLogger = Logger(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:30:16: warning: static property 'clientCredentialsFlowManagerLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var clientCredentialsFlowManagerLogger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:30:16: note: convert 'clientCredentialsFlowManagerLogger' to a 'let' constant to make 'Sendable' shared state immutable
static var clientCredentialsFlowManagerLogger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:30:16: note: add '@MainActor' to make static property 'clientCredentialsFlowManagerLogger' part of global actor 'MainActor'
static var clientCredentialsFlowManagerLogger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/AuthorizationManagerLoggers.swift:30:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var clientCredentialsFlowManagerLogger = Logger(
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/CodingExtensions.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DataExtensions.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateExtensions.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:74:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SpotifyTimestampFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shared = Self()
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:71:15: note: consider making struct 'SpotifyTimestampFormatter' conform to the 'Sendable' protocol
public struct SpotifyTimestampFormatter {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:74:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
public static let shared = Self()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shared = Self()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:76:23: warning: static property 'secondsFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
public static let secondsFormatter: ISO8601DateFormatter = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:76:23: note: add '@MainActor' to make static property 'secondsFormatter' part of global actor 'MainActor'
public static let secondsFormatter: ISO8601DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let secondsFormatter: ISO8601DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:82:23: warning: static property 'millisecondsFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
public static let millisecondsFormatter: ISO8601DateFormatter = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
@interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:82:23: note: add '@MainActor' to make static property 'millisecondsFormatter' part of global actor 'MainActor'
public static let millisecondsFormatter: ISO8601DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DateFormatterExtensions.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let millisecondsFormatter: ISO8601DateFormatter = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DebugHooks.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DebugHooks.swift:17:16: warning: static property 'receiveRateLimitedError' is not concurrency-safe because non-'Sendable' type 'PassthroughSubject<RateLimitedError, Never>' may have shared mutable state; this is an error in the Swift 6 language mode
static let receiveRateLimitedError = PassthroughSubject<RateLimitedError, Never>()
^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DebugHooks.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
import Combine
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DebugHooks.swift:17:16: note: add '@MainActor' to make static property 'receiveRateLimitedError' part of global actor 'MainActor'
static let receiveRateLimitedError = PassthroughSubject<RateLimitedError, Never>()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/DebugHooks.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let receiveRateLimitedError = PassthroughSubject<RateLimitedError, Never>()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/Endpoints.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/Headers.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/IDCategory.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/LogHandler.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/LogHandler.swift:13:24: warning: static property 'handlerIsInitialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var handlerIsInitialized = false
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/LogHandler.swift:13:24: note: convert 'handlerIsInitialized' to a 'let' constant to make 'Sendable' shared state immutable
private static var handlerIsInitialized = false
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/LogHandler.swift:13:24: note: add '@MainActor' to make static property 'handlerIsInitialized' part of global actor 'MainActor'
private static var handlerIsInitialized = false
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/LogHandler.swift:13:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var handlerIsInitialized = false
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling URLSession.swift (in target 'OpenCombineFoundation' from project 'OpenCombine')
SwiftCompile normal arm64 Compiling\ Followers.swift,\ NewAlbumReleases.swift,\ PagingObject.swift,\ SavedItem.swift,\ SearchResult.swift,\ SpotifyCategory.swift,\ SpotifyCursor.swift,\ SpotifyImage.swift,\ SpotifyUser.swift,\ TrackLink.swift,\ CurrentlyPlayingContext.swift,\ Device.swift,\ DeviceType.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/Followers.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/NewAlbumReleases.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/PagingObject.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SavedItem.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SearchResult.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SpotifyCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SpotifyCursor.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SpotifyImage.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SpotifyUser.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/TrackLink.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/CurrentlyPlayingContext.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/Device.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/DeviceType.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/Followers.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/NewAlbumReleases.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/PagingObject.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SavedItem.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SearchResult.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SpotifyCategory.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SpotifyCursor.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SpotifyImage.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/SpotifyUser.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Other\ Spotify\ Objects/TrackLink.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/CurrentlyPlayingContext.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/CurrentlyPlayingContext.swift:9:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/CurrentlyPlayingContext.swift:9:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/CurrentlyPlayingContext.swift:9:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object Model/Player Objects/CurrentlyPlayingContext.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/Device.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Object\ Model/Player\ Objects/DeviceType.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling DispatchQueue+Scheduler.swift (in target 'OpenCombineDispatch' from project 'OpenCombine')
SwiftCompile normal arm64 Compiling\ AuthorizationCodeFlowProxyBackend.swift,\ ClientCredentialsFlowClientBackend.swift,\ ClientCredentialsFlowProxyBackend.swift,\ ClientCredentialsFlowManager.swift,\ SpotifyAuthorizationManager.swift,\ SpotifyScopeAuthorizationManager.swift,\ RateLimitedError.swift,\ SpotifyAuthenticationError.swift,\ SpotifyAuthorizationError.swift,\ SpotifyDecodingError.swift,\ SpotifyError.swift,\ SpotifyGeneralError.swift,\ SpotifyPlayerError.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowClientBackend.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowProxyBackend.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/ClientCredentialsFlowManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/SpotifyAuthorizationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/SpotifyScopeAuthorizationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/RateLimitedError.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyAuthenticationError.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyAuthorizationError.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyDecodingError.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyError.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyPlayerError.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift:55:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift:55:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift:55:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowClientBackend.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowClientBackend.swift:35:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowClientBackend.swift:35:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowClientBackend.swift:35:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowClientBackend.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowProxyBackend.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowProxyBackend.swift:40:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var logger = Logger(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowProxyBackend.swift:40:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
public static var logger = Logger(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowProxyBackend.swift:40:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
public static var logger = Logger(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/Backends/ClientCredentialsFlowProxyBackend.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logger = Logger(
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/ClientCredentialsFlowManager.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/ClientCredentialsFlowManager.swift:649:13: warning: capture of 'self' with non-sendable type 'ClientCredentialsFlowBackendManager<Backend>' in a '@Sendable' closure
self.didChange.send()
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/ClientCredentialsFlowManager.swift:64:14: note: generic class 'ClientCredentialsFlowBackendManager' does not conform to the 'Sendable' protocol
public class ClientCredentialsFlowBackendManager<Backend: ClientCredentialsFlowBackend>:
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/SpotifyAuthorizationManager.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/SpotifyScopeAuthorizationManager.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/RateLimitedError.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyAuthenticationError.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyAuthorizationError.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyDecodingError.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyDecodingError.swift:35:23: warning: static property 'dataDumpFolder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var dataDumpFolder: URL? = {
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyDecodingError.swift:35:23: note: convert 'dataDumpFolder' to a 'let' constant to make 'Sendable' shared state immutable
public static var dataDumpFolder: URL? = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyDecodingError.swift:35:23: note: add '@MainActor' to make static property 'dataDumpFolder' part of global actor 'MainActor'
public static var dataDumpFolder: URL? = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyDecodingError.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var dataDumpFolder: URL? = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyError.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift:55:10: warning: associated value 'insufficientScope(requiredScopes:authorizedScopes:)' of 'Sendable'-conforming enum 'SpotifyGeneralError' has non-sendable type 'Scope'; this is an error in the Swift 6 language mode
case insufficientScope(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:12:13: note: consider making enum 'Scope' conform to the 'Sendable' protocol
public enum Scope: String, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift:55:10: warning: associated value 'insufficientScope(requiredScopes:authorizedScopes:)' of 'Sendable'-conforming enum 'SpotifyGeneralError' has non-sendable type 'Scope'; this is an error in the Swift 6 language mode
case insufficientScope(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Authorization/AuthorizationScopes.swift:12:13: note: consider making enum 'Scope' conform to the 'Sendable' protocol
public enum Scope: String, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift:79:10: warning: associated value 'invalidIdCategory(expected:received:)' of 'Sendable'-conforming enum 'SpotifyGeneralError' has non-sendable type 'IDCategory'; this is an error in the Swift 6 language mode
case invalidIdCategory(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/IDCategory.swift:18:13: note: consider making enum 'IDCategory' conform to the 'Sendable' protocol
public enum IDCategory: String, CaseIterable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift:79:10: warning: associated value 'invalidIdCategory(expected:received:)' of 'Sendable'-conforming enum 'SpotifyGeneralError' has non-sendable type 'IDCategory'; this is an error in the Swift 6 language mode
case invalidIdCategory(
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Other/IDCategory.swift:18:13: note: consider making enum 'IDCategory' conform to the 'Sendable' protocol
public enum IDCategory: String, CaseIterable, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyGeneralError.swift:95:10: warning: associated value 'topLevelKeyNotFound(key:dict:)' of 'Sendable'-conforming enum 'SpotifyGeneralError' has non-sendable type '(key: String, dict: [AnyHashable : Any])'; this is an error in the Swift 6 language mode
case topLevelKeyNotFound(
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyPlayerError.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyPlayerError.swift:69:16: warning: stored property 'reason' of 'Sendable'-conforming struct 'SpotifyPlayerError' has non-sendable type 'SpotifyPlayerError.ErrorReason'; this is an error in the Swift 6 language mode
public let reason: ErrorReason
^
/Users/admin/builder/spi-builder-workspace/Sources/SpotifyWebAPI/Errors/SpotifyPlayerError.swift:102:17: note: consider making enum 'ErrorReason' conform to the 'Sendable' protocol
public enum ErrorReason: String, Codable, Hashable, CaseIterable {
^
, Sendable
SwiftDriverJobDiscovery normal arm64 Compiling ApproximateEquality.swift, ApproximatelyEquatable.swift, AuthorizationManagerLoggers.swift, CodingExtensions.swift, DataExtensions.swift, DateExtensions.swift, DateFormatterExtensions.swift, DebugHooks.swift, Endpoints.swift, Headers.swift, IDCategory.swift, LogHandler.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftDriver\ Compilation OpenCombineFoundation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OpenCombineFoundation' from project 'OpenCombine')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OpenCombineFoundation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal/arm64/OpenCombineFoundation.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/COpenCombineHelpers.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -sanitize\=thread -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal-tsan/arm64/OpenCombineFoundation-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal-tsan/arm64/OpenCombineFoundation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal-tsan/arm64/OpenCombineFoundation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine/Sources/COpenCombineHelpers/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal-tsan/arm64/OpenCombineFoundation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for SpotifyWebAPI (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftDriver\ Compilation\ Requirements SpotifyWebAPI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SpotifyWebAPI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal/arm64/SpotifyWebAPI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/COpenCombineHelpers.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -sanitize\=thread -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine/Sources/COpenCombineHelpers/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation OpenCombineDispatch normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OpenCombineDispatch' from project 'OpenCombine')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OpenCombineDispatch -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal/arm64/OpenCombineDispatch.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/COpenCombineHelpers.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -sanitize\=thread -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal-tsan/arm64/OpenCombineDispatch-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal-tsan/arm64/OpenCombineDispatch.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal-tsan/arm64/OpenCombineDispatch_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine/Sources/COpenCombineHelpers/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal-tsan/arm64/OpenCombineDispatch-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SpotifyWebAPI-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI-Swift.h (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SpotifyWebAPI-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.swiftmodule (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.swiftdoc (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.abi.json (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.swiftsourceinfo (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'Crypto' from project 'swift-crypto')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Crypto --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier swift-crypto.Crypto --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Crypto.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Crypto.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Objects-normal-tsan/arm64/Crypto_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Objects-normal-tsan/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Crypto.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Crypto.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Objects-normal/arm64/Crypto.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 22:15:22.474 appintentsmetadataprocessor[1976:8398] Starting appintentsmetadataprocessor export
2025-04-29 22:15:22.512 appintentsmetadataprocessor[1976:8398] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RegularExpressions.o (in target 'RegularExpressions' from project 'RegularExpressions')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/RegularExpressions
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/RegularExpressions.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombine.o (in target 'OpenCombine' from project 'OpenCombine')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombine.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Logging.o (in target 'Logging' from project 'swift-log')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-log
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Logging.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Crypto.o (in target 'Crypto' from project 'swift-crypto')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Crypto.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineFoundation.o normal (in target 'OpenCombineFoundation' from project 'OpenCombine')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal/arm64/OpenCombineFoundation.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal-tsan/arm64/OpenCombineFoundation_lto.o -rdynamic -Xlinker -no_deduplicate -fsanitize\=thread -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal-tsan/arm64/OpenCombineFoundation_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal-tsan/arm64/OpenCombineFoundation.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineFoundation.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineDispatch.o normal (in target 'OpenCombineDispatch' from project 'OpenCombine')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal/arm64/OpenCombineDispatch.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal-tsan/arm64/OpenCombineDispatch_lto.o -rdynamic -Xlinker -no_deduplicate -fsanitize\=thread -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal-tsan/arm64/OpenCombineDispatch_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal-tsan/arm64/OpenCombineDispatch.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineDispatch.o
ExtractAppIntentsMetadata (in target 'OpenCombineFoundation' from project 'OpenCombine')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name OpenCombineFoundation --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier opencombine.OpenCombineFoundation --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineFoundation.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineFoundation.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal-tsan/arm64/OpenCombineFoundation_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal-tsan/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal/arm64/OpenCombineFoundation.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/OpenCombineFoundation.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/OpenCombineFoundation.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineFoundation.build/Objects-normal/arm64/OpenCombineFoundation.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 22:15:22.627 appintentsmetadataprocessor[1981:8446] Starting appintentsmetadataprocessor export
2025-04-29 22:15:22.666 appintentsmetadataprocessor[1981:8446] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling TimeRange.swift, TrackAttributes.swift, PlaybackRequest+Context.swift, PlaybackRequest+Offset.swift, PlaybackRequest.swift, TimeReference.swift, TransferPlaybackRequest.swift, PlaylistDetails.swift, ReorderPlaylistItems.swift, URIsContainer.swift, URIsDictWithInsertionIndex.swift, TypeAliases.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
ExtractAppIntentsMetadata (in target 'OpenCombineDispatch' from project 'OpenCombine')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name OpenCombineDispatch --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier opencombine.OpenCombineDispatch --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineDispatch.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineDispatch.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal-tsan/arm64/OpenCombineDispatch_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal-tsan/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal/arm64/OpenCombineDispatch.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/OpenCombineDispatch.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/OpenCombineDispatch.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OpenCombine.build/Debug/OpenCombineDispatch.build/Objects-normal/arm64/OpenCombineDispatch.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 22:15:22.650 appintentsmetadataprocessor[1982:8452] Starting appintentsmetadataprocessor export
2025-04-29 22:15:22.690 appintentsmetadataprocessor[1982:8452] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineFoundation.o (in target 'OpenCombineFoundation' from project 'OpenCombine')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineFoundation.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineDispatch.o (in target 'OpenCombineDispatch' from project 'OpenCombine')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/OpenCombineDispatch.o
SwiftDriverJobDiscovery normal arm64 Compiling SpotifyAPI+Albums.swift, SpotifyAPI+Artists.swift, SpotifyAPI+Audiobooks.swift, SpotifyAPI+Browse.swift, SpotifyAPI+Episodes.swift, SpotifyAPI+Follow.swift, SpotifyAPI+Library.swift, SpotifyAPI+Markets.swift, SpotifyAPI+Personalization.swift, SpotifyAPI+Player.swift, SpotifyAPI+Playlists.swift, SpotifyAPI+Search.swift, SpotifyAPI+Shows.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftDriverJobDiscovery normal arm64 Compiling MiscellaneousUtilities.swift, Paginated.swift, SpotifyIdentifier.swift, SpotifyURIConvertible.swift, StringExtensions.swift, DelayedConditionalRetryPublisher.swift, OtherPublisherExtensions.swift, SpotifyObjectDecoding.swift, URLComponentsExtensions.swift, URLExtensions.swift, URLQueryItemExtensions.swift, URLSessionWrappers.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftDriverJobDiscovery normal arm64 Compiling SpotifyAPI+Tracks.swift, SpotifyAPI+UserProfile.swift, SpotifyAPI+Utilities.swift, SpotifyAPI+Wrappers.swift, SpotifyAPI.swift, AuthorizationCodeFlowManager.swift, AuthorizationCodeFlowManagerBase.swift, AuthorizationCodeFlowPKCEManager.swift, AuthorizationScopes.swift, AuthorizationBackends.swift, AuthorizationCodeFlowClientBackend.swift, AuthorizationCodeFlowPKCEClientBackend.swift, AuthorizationCodeFlowPKCEProxyBackend.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftDriverJobDiscovery normal arm64 Compiling AudioAnalysis.swift, AudioFeatures.swift, Section.swift, Segment.swift, SpotifyTimeInterval.swift, Audiobook.swift, AudiobookAuthor.swift, AudiobookChapter.swift, AuthInfo.swift, ClientCredentialsTokensRequest.swift, PKCERefreshTokensRequest.swift, PKCETokensRequest.swift, ProxyPKCERefreshTokensRequest.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftDriverJobDiscovery normal arm64 Compiling AuthorizationCodeFlowProxyBackend.swift, ClientCredentialsFlowClientBackend.swift, ClientCredentialsFlowProxyBackend.swift, ClientCredentialsFlowManager.swift, SpotifyAuthorizationManager.swift, SpotifyScopeAuthorizationManager.swift, RateLimitedError.swift, SpotifyAuthenticationError.swift, SpotifyAuthorizationError.swift, SpotifyDecodingError.swift, SpotifyError.swift, SpotifyGeneralError.swift, SpotifyPlayerError.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftDriverJobDiscovery normal arm64 Compiling ProxyPKCETokensRequest.swift, ProxyTokensRequest.swift, RefreshTokensRequest.swift, TokensRequest.swift, RecommendationSeed.swift, RecommendationsResponse.swift, Album.swift, Artist.swift, Track.swift, AlbumType.swift, Copyright.swift, CursorPagingObject.swift, FeaturedPlaylists.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftDriverJobDiscovery normal arm64 Compiling PlayHistory.swift, PlaybackActions.swift, RepeatMode.swift, ResumePoint.swift, SpotifyContext.swift, SpotifyQueue.swift, Playlist.swift, PlaylistItem.swift, PlaylistItemContainer.swift, PlaylistItemsReference.swift, Episode.swift, Show.swift, AttributeRange.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftDriverJobDiscovery normal arm64 Compiling Followers.swift, NewAlbumReleases.swift, PagingObject.swift, SavedItem.swift, SearchResult.swift, SpotifyCategory.swift, SpotifyCursor.swift, SpotifyImage.swift, SpotifyUser.swift, TrackLink.swift, CurrentlyPlayingContext.swift, Device.swift, DeviceType.swift (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
SwiftDriver\ Compilation SpotifyWebAPI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SpotifyWebAPI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal/arm64/SpotifyWebAPI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/COpenCombineHelpers.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -sanitize\=thread -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/OpenCombine/Sources/COpenCombineHelpers/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.o normal (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal/arm64/SpotifyWebAPI.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI_lto.o -rdynamic -Xlinker -no_deduplicate -fsanitize\=thread -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.o
ExtractAppIntentsMetadata (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SpotifyWebAPI --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier spi-builder-workspace.SpotifyWebAPI --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/SpotifyWebAPI_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal-tsan/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal/arm64/SpotifyWebAPI.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/SpotifyWebAPI.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/SpotifyWebAPI.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SpotifyAPI.build/Debug/SpotifyWebAPI.build/Objects-normal/arm64/SpotifyWebAPI.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 22:15:24.778 appintentsmetadataprocessor[1985:8531] Starting appintentsmetadataprocessor export
2025-04-29 22:15:24.815 appintentsmetadataprocessor[1985:8531] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.o (in target 'SpotifyWebAPI' from project 'SpotifyAPI')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SpotifyWebAPI.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:87af30dc2f1cb0ef12f34f4ac563d7c8c7e7bdd3, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:87af30dc2f1cb0ef12f34f4ac563d7c8c7e7bdd3, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:87af30dc2f1cb0ef12f34f4ac563d7c8c7e7bdd3, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:87af30dc2f1cb0ef12f34f4ac563d7c8c7e7bdd3, name:My Mac }
Build complete.
{
"dependencies" : [
{
"identity" : "regularexpressions",
"requirement" : {
"range" : [
{
"lower_bound" : "2.2.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Peter-Schorn/RegularExpressions.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "opencombine",
"requirement" : {
"range" : [
{
"lower_bound" : "0.12.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/OpenCombine/OpenCombine.git"
},
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.3",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto.git"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
}
],
"manifest_display_name" : "SpotifyAPI",
"name" : "SpotifyAPI",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "SpotifyAPI",
"targets" : [
"SpotifyWebAPI"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SpotifyExampleContent",
"targets" : [
"SpotifyExampleContent"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "_SpotifyAPITestUtilities",
"targets" : [
"SpotifyAPITestUtilities"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SpotifyWebAPI",
"module_type" : "SwiftTarget",
"name" : "SpotifyWebAPI",
"path" : "Sources/SpotifyWebAPI",
"product_dependencies" : [
"RegularExpressions",
"Logging",
"Crypto",
"OpenCombine",
"OpenCombineDispatch",
"OpenCombineFoundation"
],
"product_memberships" : [
"SpotifyAPI",
"SpotifyExampleContent",
"_SpotifyAPITestUtilities"
],
"sources" : [
"API/SpotifyAPI+Albums.swift",
"API/SpotifyAPI+Artists.swift",
"API/SpotifyAPI+Audiobooks.swift",
"API/SpotifyAPI+Browse.swift",
"API/SpotifyAPI+Episodes.swift",
"API/SpotifyAPI+Follow.swift",
"API/SpotifyAPI+Library.swift",
"API/SpotifyAPI+Markets.swift",
"API/SpotifyAPI+Personalization.swift",
"API/SpotifyAPI+Player.swift",
"API/SpotifyAPI+Playlists.swift",
"API/SpotifyAPI+Search.swift",
"API/SpotifyAPI+Shows.swift",
"API/SpotifyAPI+Tracks.swift",
"API/SpotifyAPI+UserProfile.swift",
"API/SpotifyAPI+Utilities.swift",
"API/SpotifyAPI+Wrappers.swift",
"API/SpotifyAPI.swift",
"Authorization/AuthorizationCodeFlowManager.swift",
"Authorization/AuthorizationCodeFlowManagerBase.swift",
"Authorization/AuthorizationCodeFlowPKCEManager.swift",
"Authorization/AuthorizationScopes.swift",
"Authorization/Backends/AuthorizationBackends.swift",
"Authorization/Backends/AuthorizationCodeFlowClientBackend.swift",
"Authorization/Backends/AuthorizationCodeFlowPKCEClientBackend.swift",
"Authorization/Backends/AuthorizationCodeFlowPKCEProxyBackend.swift",
"Authorization/Backends/AuthorizationCodeFlowProxyBackend.swift",
"Authorization/Backends/ClientCredentialsFlowClientBackend.swift",
"Authorization/Backends/ClientCredentialsFlowProxyBackend.swift",
"Authorization/ClientCredentialsFlowManager.swift",
"Authorization/SpotifyAuthorizationManager.swift",
"Authorization/SpotifyScopeAuthorizationManager.swift",
"Errors/RateLimitedError.swift",
"Errors/SpotifyAuthenticationError.swift",
"Errors/SpotifyAuthorizationError.swift",
"Errors/SpotifyDecodingError.swift",
"Errors/SpotifyError.swift",
"Errors/SpotifyGeneralError.swift",
"Errors/SpotifyPlayerError.swift",
"Object Model/Audio Analysis Objects/AudioAnalysis.swift",
"Object Model/Audio Analysis Objects/AudioFeatures.swift",
"Object Model/Audio Analysis Objects/Section.swift",
"Object Model/Audio Analysis Objects/Segment.swift",
"Object Model/Audio Analysis Objects/SpotifyTimeInterval.swift",
"Object Model/Audiobook Objects/Audiobook.swift",
"Object Model/Audiobook Objects/AudiobookAuthor.swift",
"Object Model/Audiobook Objects/AudiobookChapter.swift",
"Object Model/Authorization Objects/AuthInfo.swift",
"Object Model/Authorization Objects/ClientCredentialsTokensRequest.swift",
"Object Model/Authorization Objects/PKCERefreshTokensRequest.swift",
"Object Model/Authorization Objects/PKCETokensRequest.swift",
"Object Model/Authorization Objects/ProxyPKCERefreshTokensRequest.swift",
"Object Model/Authorization Objects/ProxyPKCETokensRequest.swift",
"Object Model/Authorization Objects/ProxyTokensRequest.swift",
"Object Model/Authorization Objects/RefreshTokensRequest.swift",
"Object Model/Authorization Objects/TokensRequest.swift",
"Object Model/Browse Objects/RecommendationSeed.swift",
"Object Model/Browse Objects/RecommendationsResponse.swift",
"Object Model/Music Objects/Album.swift",
"Object Model/Music Objects/Artist.swift",
"Object Model/Music Objects/Track.swift",
"Object Model/Other Spotify Objects/AlbumType.swift",
"Object Model/Other Spotify Objects/Copyright.swift",
"Object Model/Other Spotify Objects/CursorPagingObject.swift",
"Object Model/Other Spotify Objects/FeaturedPlaylists.swift",
"Object Model/Other Spotify Objects/Followers.swift",
"Object Model/Other Spotify Objects/NewAlbumReleases.swift",
"Object Model/Other Spotify Objects/PagingObject.swift",
"Object Model/Other Spotify Objects/SavedItem.swift",
"Object Model/Other Spotify Objects/SearchResult.swift",
"Object Model/Other Spotify Objects/SpotifyCategory.swift",
"Object Model/Other Spotify Objects/SpotifyCursor.swift",
"Object Model/Other Spotify Objects/SpotifyImage.swift",
"Object Model/Other Spotify Objects/SpotifyUser.swift",
"Object Model/Other Spotify Objects/TrackLink.swift",
"Object Model/Player Objects/CurrentlyPlayingContext.swift",
"Object Model/Player Objects/Device.swift",
"Object Model/Player Objects/DeviceType.swift",
"Object Model/Player Objects/PlayHistory.swift",
"Object Model/Player Objects/PlaybackActions.swift",
"Object Model/Player Objects/RepeatMode.swift",
"Object Model/Player Objects/ResumePoint.swift",
"Object Model/Player Objects/SpotifyContext.swift",
"Object Model/Player Objects/SpotifyQueue.swift",
"Object Model/Playlist Objects/Playlist.swift",
"Object Model/Playlist Objects/PlaylistItem.swift",
"Object Model/Playlist Objects/PlaylistItemContainer.swift",
"Object Model/Playlist Objects/PlaylistItemsReference.swift",
"Object Model/Podcast Objects/Episode.swift",
"Object Model/Podcast Objects/Show.swift",
"Object Model/Post Request Objects/Other Objects/AttributeRange.swift",
"Object Model/Post Request Objects/Other Objects/TimeRange.swift",
"Object Model/Post Request Objects/Other Objects/TrackAttributes.swift",
"Object Model/Post Request Objects/Player Objects/PlaybackRequest+Context.swift",
"Object Model/Post Request Objects/Player Objects/PlaybackRequest+Offset.swift",
"Object Model/Post Request Objects/Player Objects/PlaybackRequest.swift",
"Object Model/Post Request Objects/Player Objects/TimeReference.swift",
"Object Model/Post Request Objects/Player Objects/TransferPlaybackRequest.swift",
"Object Model/Post Request Objects/Playlist Objects/PlaylistDetails.swift",
"Object Model/Post Request Objects/Playlist Objects/ReorderPlaylistItems.swift",
"Object Model/Post Request Objects/Playlist Objects/URIsContainer.swift",
"Object Model/Post Request Objects/Playlist Objects/URIsDictWithInsertionIndex.swift",
"Object Model/TypeAliases.swift",
"Other/ApproximateEquality.swift",
"Other/ApproximatelyEquatable.swift",
"Other/AuthorizationManagerLoggers.swift",
"Other/CodingExtensions.swift",
"Other/DataExtensions.swift",
"Other/DateExtensions.swift",
"Other/DateFormatterExtensions.swift",
"Other/DebugHooks.swift",
"Other/Endpoints.swift",
"Other/Headers.swift",
"Other/IDCategory.swift",
"Other/LogHandler.swift",
"Other/MiscellaneousUtilities.swift",
"Other/Paginated.swift",
"Other/SpotifyIdentifier.swift",
"Other/SpotifyURIConvertible.swift",
"Other/StringExtensions.swift",
"Publisher Extensions/DelayedConditionalRetryPublisher.swift",
"Publisher Extensions/OtherPublisherExtensions.swift",
"Publisher Extensions/SpotifyObjectDecoding.swift",
"URLExtensions/URLComponentsExtensions.swift",
"URLExtensions/URLExtensions.swift",
"URLExtensions/URLQueryItemExtensions.swift",
"URLExtensions/URLSessionWrappers.swift"
],
"type" : "library"
},
{
"c99name" : "SpotifyExampleContent",
"module_type" : "SwiftTarget",
"name" : "SpotifyExampleContent",
"path" : "Sources/SpotifyExampleContent",
"product_memberships" : [
"SpotifyExampleContent",
"_SpotifyAPITestUtilities"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Albums/Abbey Road - Album.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Albums/Dark Side Of The Moon - Album.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Albums/In Rainbows - Album.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Albums/Jinx - Album.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Albums/Jinx - PagingObject<Track>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Albums/Meddle - Album.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Albums/Skiptracing - Album.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Artists/Crumb - Artist.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Artists/Levitation Room - Artist.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Artists/Pink Floyd - Artist.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Artists/Radiohead - Artist.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Artists/Skinshape - Artist.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Artists/The Beatles - Artist.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Audiobooks/Enlightenment Now - Audiobook.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Audiobooks/Enlightenment Now Chapter 3 - AudiobookChapter.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Audiobooks/Free Will - Audiobook.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Audiobooks/Free Will Chapter 1 - AudiobookChapter.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Audiobooks/Harry Potter and the Sorcerer's Stone - Audiobook.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Audiobooks/Steve Jobs Chapter 1 - AudiobookChapter.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Audo Analysis/Any Colour You Like - AudioAnalysis.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Audo Analysis/Fearless - AudioFeatures.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Browse/Category Playlists - PagingObject<Playlist<PlaylistItemsReference>>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Browse/Featured Playlists - FeaturedPlaylists.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Browse/categories - SpotifyCategory.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Episodes/Sam Harris 213 - Episode.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Episodes/Sam Harris 214 - Episode.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Episodes/Sam Harris 215 - Episode.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Episodes/Sean Carroll 111 - Episode.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Episodes/Sean Carroll 112 - Episode.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Images/Annabelle Compressed.jpeg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Images/Annabelle Large.jpeg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Library/Current User Saved Albums - PagingObject<SavedItem<Album>>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Player/Current Playback - CurrentlyPlayingContext.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Player/Queue - SpotifyQueue.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Player/Recently Played - CursorPagingObject<PlayHistory>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/PlaylistItems/#1536 - Edward Snowden - PlaylistItem.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/PlaylistItems/#1537 - Lex Fridman - PlaylistItem.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/PlaylistItems/#216 — September 3, 2020 - PlaylistItem.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/PlaylistItems/#217 — The New Religion of Anti-Racism - PlaylistItem.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/PlaylistItems/Echoes - Acoustic Version - PlaylistItem.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/PlaylistItems/Hans Zimmer & Radiohead - Ocean Bloom (full song HQ) - PlaylistItem.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/PlaylistItems/Killshot - PlaylistItem.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/Blues Classics - PagingObject<PlaylistItemContainer<Track>>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/Crumb - Playlist<PagingObject<PlaylistItemContainer<PlaylistItem>>>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/Local Songs - Playlist<PagingObject<PlaylistItemContainer<PlaylistItem>>>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/Lucy in the sky with diamonds - Playlist<PlaylistItemsReference>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/Men I Trust - Playlist<PlaylistItemsReference>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/Modern Psychedelia - Playlist<PlaylistItemsReference>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/Rock Classics - Playlist<PlaylistItemsReference>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This Is King Gizzard & The Lizard Wizard - Playlist<PlaylistItemsReference>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This Is MF DOOM - Playlist<PlaylistItemsReference>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This Is Mild High Club - Playlist<PlaylistItemsReference>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This Is Radiohead - Playlist<PlaylistItemsReference>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This Is Sonic Youth - Playlist<PlaylistItemsReference>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This Is Spoon - PagingObject<PlaylistItemContainer<Track>>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This is Jimi Hendrix - PagingObject<PlaylistItemContainer<Track>>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This is Mac DeMarco - PagingObject<PlaylistItemContainer<Track>>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This is Pink Floyd - PagingObject<PlaylistItemContainer<Track>>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This is Skinshape - Playlist<PlaylistItemsReference>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Playlists/This is Stevie Ray Vaughan - PagingObject<PlaylistItemContainer<PlaylistItem>>.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Search/Search for 'Crumb' - SearchResult.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Shows/Joe Rogan - Show.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Shows/Sam Harris - Show.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Shows/Sean Carroll - Show.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Tracks/Because - Track.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Tracks/Come Together - Track.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Tracks/Faces - Track.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Tracks/Ill Wind - Track.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Tracks/Ode To Viceroy - Track.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Tracks/Reckoner - Track.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Tracks/The End - Track.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/Tracks/Time - Track.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyExampleContent/Resources/User Profile/Current User Profile - SpotifyUser.json",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"ExampleAlbums.swift",
"ExampleArtists.swift",
"ExampleAudioAnalysis.swift",
"ExampleAudioFeatures.swift",
"ExampleAudiobooks.swift",
"ExampleBrowse.swift",
"ExampleEpisodes.swift",
"ExampleLibrary.swift",
"ExamplePlayer.swift",
"ExamplePlaylistItems.swift",
"ExamplePlaylists.swift",
"ExampleSearch.swift",
"ExampleShows.swift",
"ExampleTracks.swift",
"ExampleUserProfile.swift",
"ImageAssets.swift",
"URIs.swift",
"Utilities.swift"
],
"target_dependencies" : [
"SpotifyWebAPI"
],
"type" : "library"
},
{
"c99name" : "SpotifyAPITestUtilities",
"module_type" : "SwiftTarget",
"name" : "SpotifyAPITestUtilities",
"path" : "Sources/SpotifyAPITestUtilities",
"product_dependencies" : [
"RegularExpressions",
"OpenCombine",
"OpenCombineDispatch",
"OpenCombineFoundation"
],
"product_memberships" : [
"_SpotifyAPITestUtilities"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyAPITestUtilities/Resources/requirements.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SpotifyAPITestUtilities/Resources/spotify_api_authorizer.py",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"Authorization/AuthorizationConstants.swift",
"Authorization/RedirectListener.swift",
"Authorization/SeleniumBrowserAuthorizer.swift",
"Authorization/WebKitBrowserAuthorizer.swift",
"Authorization/openAuthorizationURL.swift",
"CodingExtensions.swift",
"CombineTestUtilities.swift",
"DistributedLock.swift",
"MiscellaneousUtilities.swift",
"NetworkAdaptor.swift",
"SpotifyAPI Utilities/AuthorizationCodeFlowExtensions.swift",
"SpotifyAPI Utilities/AuthorizationCodeFlowPKCEExtensions.swift",
"SpotifyAPI Utilities/ClientCredentialsFlowExtensions.swift",
"SpotifyAPI Utilities/SpotifyAPIClientBaseTestClasses.swift",
"SpotifyAPI Utilities/SpotifyAPIExtensions.swift",
"SpotifyAPI Utilities/SpotifyAPIProxyBaseTestClasses.swift",
"SpotifyAPI Utilities/SpotifyAPITests.swift",
"SpotifyAPITestCase.swift"
],
"target_dependencies" : [
"SpotifyWebAPI",
"SpotifyExampleContent"
],
"type" : "library"
},
{
"c99name" : "SpotifyAPIMainTests",
"module_type" : "SwiftTarget",
"name" : "SpotifyAPIMainTests",
"path" : "Tests/SpotifyAPIMainTests",
"product_dependencies" : [
"RegularExpressions"
],
"sources" : [
"API Tests/SpoifyAPIArtistTests.swift",
"API Tests/SpotifyAPIAlbumsTests.swift",
"API Tests/SpotifyAPIAudiobookTests.swift",
"API Tests/SpotifyAPIBrowseTests.swift",
"API Tests/SpotifyAPIEpisodeTests.swift",
"API Tests/SpotifyAPIErrorTests.swift",
"API Tests/SpotifyAPIFollowTests.swift",
"API Tests/SpotifyAPILibraryTests.swift",
"API Tests/SpotifyAPIMarketTests.swift",
"API Tests/SpotifyAPIPersonalizationTests.swift",
"API Tests/SpotifyAPIPlayerTests.swift",
"API Tests/SpotifyAPIPlaylistsTests.swift",
"API Tests/SpotifyAPISearchTests.swift",
"API Tests/SpotifyAPIShowTests.swift",
"API Tests/SpotifyAPITrackTests.swift",
"API Tests/SpotifyAPIUserProfileTests.swift",
"Authorization Tests/SpotifyAPIAuthorizationCodeFlowAuthorizationTests.swift",
"Authorization Tests/SpotifyAPIAuthorizationCodeFlowPKCEAuthorizationTests.swift",
"Authorization Tests/SpotifyAPIAuthorizationTests.swift",
"Authorization Tests/SpotifyAPIClientCredentialsFlowAuthorizationTests.swift",
"Authorization Tests/SpotifyAPIInsufficientScopeTests.swift",
"Authorization Tests/SpotifyAPIRefreshTokensConcurrentTests.swift",
"Coding Tests/Authorization Objects/CodingAuthInfoTests.swift",
"Coding Tests/Authorization Objects/CodingAuthorizationCodeFlowManagerTests.swift",
"Coding Tests/Authorization Objects/CodingAuthorizationCodeFlowPKCEManagerTests.swift",
"Coding Tests/Authorization Objects/CodingClientCredentialsFlowManagerTests.swift",
"Coding Tests/CodingCurrentlyPlayingContextTests.swift",
"Coding Tests/CodingPlaybackRequestTests.swift",
"Coding Tests/CodingSpotifyUserTests.swift",
"Coding Tests/CodingTimeReferenceTests.swift",
"Coding Tests/CodingTrackAttributesTests.swift",
"Coding Tests/CursorPagingObjectPlayHistoryCodingTests.swift",
"Coding Tests/SpotifyPlayerErrorCodingTests.swift",
"Documentation Tests/GetAvailableDeviceThenPlayDocumentationTest.swift",
"Documentation Tests/MiscellaneousDocumentationTests.swift",
"Documentation Tests/PaginationArticleCompilationTests.swift",
"Documentation Tests/PlaylistMappingDocumentationCompilationTests.swift",
"Documentation Tests/READMEExamplesCompilationTests.swift",
"Documentation Tests/SpotifyObservableCompilationTests.swift",
"Other Tests/AuthorizationScopesTests.swift",
"Other Tests/ExampleContentTests.swift",
"Other Tests/RepeatModeTests.swift",
"Other Tests/SpotifyIdentifierTests.swift",
"Test Utilities/FilteredPlaylist.swift",
"Test Utilities/FilteredPlaylistItems.swift"
],
"target_dependencies" : [
"SpotifyWebAPI",
"SpotifyExampleContent",
"SpotifyAPITestUtilities"
],
"type" : "test"
}
],
"tools_version" : "5.6"
}
Done.