The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Git, reference 3.2.0 (0dba9e), with Swift 6.0 for macOS (SPM) on 30 Nov 2024 21:32:36 UTC.

Swift 6 data race errors: 10

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[8/102] Compiling Git GitRemoteList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[9/102] Compiling Git GitRepository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[10/102] Compiling Git GitRepository+Cherry.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[11/102] Compiling Git GitRepository+CherryPick.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[12/102] Compiling Git GitRepository+Files.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[13/102] Compiling Git GitRepository+Init.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[14/112] Compiling Git GitSparseSetOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[15/112] Compiling Git SparseTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[16/112] Compiling Git GitStashApplyOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[17/112] Compiling Git StashApplyTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[18/112] Compiling Git GitStashOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[19/112] Compiling Git StashTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[20/112] Compiling Git GitStashDropOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[21/112] Compiling Git StashDropTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[22/112] Compiling Git GitStashListOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[23/112] Compiling Git StashListTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[24/112] Compiling Git GitStatusOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[25/112] Compiling Git GitCherryResult.swift
[26/112] Compiling Git CherryPickOptions.swift
[27/112] Compiling Git CherryPickTask.swift
[28/112] Compiling Git CleanOptions.swift
[29/112] Compiling Git CleanTask.swift
[30/112] Compiling Git CloneOptions.swift
[31/112] Compiling Git CloneTask.swift
[32/112] Compiling Git CommitOptions.swift
[33/112] Compiling Git CommitTask.swift
[34/112] Compiling Git FetchTask.swift
[35/112] Compiling Git GitFetchOptions.swift
[36/112] Compiling Git PushTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[37/112] Compiling Git ReferencesTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[38/112] Compiling Git RemoteAddTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[39/112] Compiling Git RemoteListTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[40/112] Compiling Git RemoteRenameTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[41/112] Compiling Git RemoteUrlChangeTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[42/112] Compiling Git RemoteUrlTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[43/112] Compiling Git RepositoryTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[44/112] Compiling Git GitResetOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[45/112] Compiling Git ResetTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[46/112] Compiling Git GitSparseAddOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[47/112] Compiling Git InitOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[48/112] Compiling Git InitTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[49/112] Compiling Git GitLogCompareOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[50/112] Compiling Git GitLogOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[51/112] Compiling Git LogTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[52/112] Compiling Git MergeOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[53/112] Compiling Git MergeTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[54/112] Compiling Git ProcessSpawn.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[55/112] Compiling Git GitPullOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[56/112] Compiling Git PullTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[57/112] Compiling Git GitPushOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[58/112] Compiling Git GitRepository+Log.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[59/112] Compiling Git GitRepository+Merge.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[60/112] Compiling Git GitRepository+Reference.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[61/112] Compiling Git GitRepository+Remotes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[62/112] Compiling Git GitRepository+SparseCheckout.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[63/112] Compiling Git GitRepository+Status.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[64/112] Compiling Git GitRepository+Tag.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[65/112] Compiling Git GitRepositoryErrorFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[66/112] Compiling Git GitStashRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[67/112] Compiling Git GitStashRecordList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[68/112] Compiling Git GitTagRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[69/112] Compiling Git StatusTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[70/112] Compiling Git GitTagListOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[71/112] Compiling Git GitTagOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[72/112] Compiling Git TagTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[73/112] Compiling Git GitFormatDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[74/112] Compiling Git GitFormatEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[75/112] Compiling Git GitOutputParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[76/112] Compiling Git IndexIterator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[77/112] Compiling Git FileManager+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[78/112] Compiling Git Formatter+Date.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[79/112] Compiling Git Array+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
[80/112] Compiling Git File.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[81/112] Compiling Git FileAnnotationRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[82/112] Compiling Git FileCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[83/112] Compiling Git FileStorage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[84/112] Compiling Git GitFile.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[85/112] Compiling Git GitFileStorage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[86/112] Compiling Git GitCredentialsProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[87/112] Compiling Git GitFileStatus.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[88/112] Compiling Git GitFileStatusList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[89/112] Compiling Git GitLogRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[90/112] Compiling Git GitLogRecordList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
[91/112] Emitting module Git
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     /// Indicates whether line annotations should be read.
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     /// Creates options with the pattern match
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[92/112] Compiling Git GitTagRecordList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[93/112] Compiling Git AddTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[94/112] Compiling Git GitAddOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[95/112] Compiling Git ArgumentConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[96/112] Compiling Git BranchOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[97/112] Compiling Git BranchTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[98/112] Compiling Git CheckReferenceTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[99/112] Compiling Git CheckoutOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[100/112] Compiling Git CheckoutTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[101/112] Compiling Git CherryTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[102/112] Compiling Git GitCherryOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |     public init() {}
[103/112] Compiling Git CredentialsProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[104/112] Compiling Git Repository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[105/112] Compiling Git RepositoryDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[106/112] Compiling Git RepositoryError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[107/112] Compiling Git RepositoryLogRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[108/112] Compiling Git RepositoryReference.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[109/112] Compiling Git RepositoryReferenceName.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[110/112] Compiling Git RepositoryRemote.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[111/112] Compiling Git RepositoryStashRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[112/112] Compiling Git RepositoryTagRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
Build complete! (15.13s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Git",
  "name" : "Git",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    }
  ],
  "products" : [
    {
      "name" : "Git",
      "targets" : [
        "Git"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Git",
      "module_type" : "SwiftTarget",
      "name" : "Git",
      "path" : "Sources",
      "product_memberships" : [
        "Git"
      ],
      "sources" : [
        "Classes/FileManagement/File.swift",
        "Classes/FileManagement/FileAnnotationRecord.swift",
        "Classes/FileManagement/FileCoder.swift",
        "Classes/FileManagement/FileStorage.swift",
        "Classes/FileManagement/GitFile.swift",
        "Classes/FileManagement/GitFileStorage.swift",
        "Classes/GitCredentialsProvider.swift",
        "Classes/GitFileStatus.swift",
        "Classes/GitFileStatusList.swift",
        "Classes/GitLogRecord.swift",
        "Classes/GitLogRecordList.swift",
        "Classes/GitMergeStatus.swift",
        "Classes/GitReference.swift",
        "Classes/GitReferenceList.swift",
        "Classes/GitReferenceName.swift",
        "Classes/GitRemote.swift",
        "Classes/GitRemoteList.swift",
        "Classes/GitRepository.swift",
        "Classes/GitRepository/GitRepository+Cherry.swift",
        "Classes/GitRepository/GitRepository+CherryPick.swift",
        "Classes/GitRepository/GitRepository+Files.swift",
        "Classes/GitRepository/GitRepository+Init.swift",
        "Classes/GitRepository/GitRepository+Log.swift",
        "Classes/GitRepository/GitRepository+Merge.swift",
        "Classes/GitRepository/GitRepository+Reference.swift",
        "Classes/GitRepository/GitRepository+Remotes.swift",
        "Classes/GitRepository/GitRepository+SparseCheckout.swift",
        "Classes/GitRepository/GitRepository+Status.swift",
        "Classes/GitRepository/GitRepository+Tag.swift",
        "Classes/GitRepositoryErrorFormatter.swift",
        "Classes/GitStashRecord.swift",
        "Classes/GitStashRecordList.swift",
        "Classes/GitTagRecord.swift",
        "Classes/GitTagRecordList.swift",
        "Classes/Tasks/Add/AddTask.swift",
        "Classes/Tasks/Add/GitAddOptions.swift",
        "Classes/Tasks/ArgumentConvertible.swift",
        "Classes/Tasks/Branch/BranchOptions.swift",
        "Classes/Tasks/Branch/BranchTask.swift",
        "Classes/Tasks/CheckRefFormat/CheckReferenceTask.swift",
        "Classes/Tasks/Checkout/CheckoutOptions.swift",
        "Classes/Tasks/Checkout/CheckoutTask.swift",
        "Classes/Tasks/Cherry/CherryTask.swift",
        "Classes/Tasks/Cherry/GitCherryOptions.swift",
        "Classes/Tasks/Cherry/GitCherryResult.swift",
        "Classes/Tasks/CherryPick/CherryPickOptions.swift",
        "Classes/Tasks/CherryPick/CherryPickTask.swift",
        "Classes/Tasks/Clean/CleanOptions.swift",
        "Classes/Tasks/Clean/CleanTask.swift",
        "Classes/Tasks/Clone/CloneOptions.swift",
        "Classes/Tasks/Clone/CloneTask.swift",
        "Classes/Tasks/Commit/CommitOptions.swift",
        "Classes/Tasks/Commit/CommitTask.swift",
        "Classes/Tasks/Fetch/FetchTask.swift",
        "Classes/Tasks/Fetch/GitFetchOptions.swift",
        "Classes/Tasks/Init/InitOptions.swift",
        "Classes/Tasks/Init/InitTask.swift",
        "Classes/Tasks/Log/GitLogCompareOptions.swift",
        "Classes/Tasks/Log/GitLogOptions.swift",
        "Classes/Tasks/Log/LogTask.swift",
        "Classes/Tasks/Merge/MergeOptions.swift",
        "Classes/Tasks/Merge/MergeTask.swift",
        "Classes/Tasks/ProcessSpawn.swift",
        "Classes/Tasks/Pull/GitPullOptions.swift",
        "Classes/Tasks/Pull/PullTask.swift",
        "Classes/Tasks/Push/GitPushOptions.swift",
        "Classes/Tasks/Push/PushTask.swift",
        "Classes/Tasks/References/ReferencesTask.swift",
        "Classes/Tasks/Remotes/RemoteAddTask.swift",
        "Classes/Tasks/Remotes/RemoteListTask.swift",
        "Classes/Tasks/Remotes/RemoteRenameTask.swift",
        "Classes/Tasks/Remotes/RemoteUrlChangeTask.swift",
        "Classes/Tasks/Remotes/RemoteUrlTask.swift",
        "Classes/Tasks/RepositoryTask.swift",
        "Classes/Tasks/Reset/GitResetOptions.swift",
        "Classes/Tasks/Reset/ResetTask.swift",
        "Classes/Tasks/SparseCheckout/GitSparseAddOptions.swift",
        "Classes/Tasks/SparseCheckout/GitSparseSetOptions.swift",
        "Classes/Tasks/SparseCheckout/SparseTask.swift",
        "Classes/Tasks/Stash/Apply/GitStashApplyOptions.swift",
        "Classes/Tasks/Stash/Apply/StashApplyTask.swift",
        "Classes/Tasks/Stash/Create/GitStashOptions.swift",
        "Classes/Tasks/Stash/Create/StashTask.swift",
        "Classes/Tasks/Stash/Drop/GitStashDropOptions.swift",
        "Classes/Tasks/Stash/Drop/StashDropTask.swift",
        "Classes/Tasks/Stash/List/GitStashListOptions.swift",
        "Classes/Tasks/Stash/List/StashListTask.swift",
        "Classes/Tasks/Status/GitStatusOptions.swift",
        "Classes/Tasks/Status/StatusTask.swift",
        "Classes/Tasks/Tag/GitTagListOptions.swift",
        "Classes/Tasks/Tag/GitTagOptions.swift",
        "Classes/Tasks/Tag/TagTask.swift",
        "Core/GitFormatDecoder.swift",
        "Core/GitFormatEncoder.swift",
        "Core/GitOutputParser.swift",
        "Core/IndexIterator.swift",
        "Extensions/FileManager/FileManager+Utils.swift",
        "Extensions/Formatter/Formatter+Date.swift",
        "Extensions/General/Array+Utils.swift",
        "Protocols/CredentialsProvider.swift",
        "Protocols/Repository.swift",
        "Protocols/RepositoryDelegate.swift",
        "Protocols/RepositoryError.swift",
        "Protocols/RepositoryLogRecord.swift",
        "Protocols/RepositoryReference.swift",
        "Protocols/RepositoryReferenceName.swift",
        "Protocols/RepositoryRemote.swift",
        "Protocols/RepositoryStashRecord.swift",
        "Protocols/RepositoryTagRecord.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.