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 Buildkite, reference 0.3.2 (4c5f2d), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 15:35:48 UTC.

Swift 6 data race errors: 2

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

Build Log

========================================
RunAll
========================================
Builder version: 4.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/aaronsky/buildkite-swift.git
Reference: 0.3.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/aaronsky/buildkite-swift
 * tag               0.3.2      -> FETCH_HEAD
HEAD is now at 4c5f2dd Add Sendable conformances
Cloned https://github.com/aaronsky/buildkite-swift.git
Revision (git rev-parse @):
4c5f2dd0c1c25a341437522d82dc976b3a878bc4
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/aaronsky/buildkite-swift.git at 0.3.2
Fetching https://github.com/apple/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.31s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.3 (0.65s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3168] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.28s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.67s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "buildkite-swift",
      "name": "Buildkite",
      "url": "https://github.com/aaronsky/buildkite-swift.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/buildkite-swift",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/aaronsky/buildkite-swift.git
[1/1671] Fetching buildkite-swift
Fetched https://github.com/aaronsky/buildkite-swift.git from cache (0.91s)
Creating working copy for https://github.com/aaronsky/buildkite-swift.git
Working copy of https://github.com/aaronsky/buildkite-swift.git resolved at 0.3.2 (4c5f2dd)
warning: '.resolve-product-dependencies': dependency 'buildkite-swift' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/aaronsky/buildkite-swift.git
Running build ...
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
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version--7754E27361AE5C74.txt
[5/44] Emitting module Buildkite
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[6/48] Compiling Buildkite WebhookEvent.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[7/48] Compiling Buildkite APIVersion.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[8/48] Compiling Buildkite Configuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[9/48] Compiling Buildkite Formatters.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:16:16: warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | enum Formatters {
16 |     static let iso8601WithFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithFractionalSeconds' 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
17 |         let formatter: ISO8601DateFormatter
18 |         if #available(iOS 11.0, macOS 10.13, tvOS 11.0, watchOS 4.0, *) {
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Formatters.swift:27:16: warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
25 |     }()
26 |
27 |     static let iso8601WithoutFractionalSeconds: ISO8601DateFormatter = {
   |                |- warning: static property 'iso8601WithoutFractionalSeconds' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'iso8601WithoutFractionalSeconds' 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
28 |         let formatter = ISO8601DateFormatter()
29 |         formatter.formatOptions = [.withInternetDateTime]
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[10/48] Compiling Buildkite Pipelines.swift
[11/48] Compiling Buildkite Teams.swift
[12/48] Compiling Buildkite Users.swift
[13/48] Compiling Buildkite TestAnalyticsUpload.swift
[14/48] Compiling Buildkite Followable.swift
[15/48] Compiling Buildkite Jobs.swift
[16/48] Compiling Buildkite Metas.swift
[17/48] Compiling Buildkite Organizations.swift
[18/48] Compiling Buildkite AgentMetrics.swift
[19/48] Compiling Buildkite GraphQL.swift
[20/48] Compiling Buildkite AccessTokens.swift
[21/48] Compiling Buildkite Agents.swift
[22/48] Compiling Buildkite Annotations.swift
[23/48] Compiling Buildkite Artifacts.swift
[24/48] Compiling Buildkite Builds.swift
[25/48] Compiling Buildkite Emojis.swift
[26/48] Compiling Buildkite BuildkiteClient.swift
[27/48] Compiling Buildkite AccessToken.swift
[28/48] Compiling Buildkite Agent.swift
[29/48] Compiling Buildkite AgentMetric.swift
[30/48] Compiling Buildkite Annotation.swift
[31/48] Compiling Buildkite StatusCode.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:41:17: warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         let task = dataTask(with: request) { data, response, error in
40 |             if let error = error {
41 |                 completion(.failure(error))
   |                 |- warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
42 |                 return
43 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[32/48] Compiling Buildkite TokenProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:41:17: warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         let task = dataTask(with: request) { data, response, error in
40 |             if let error = error {
41 |                 completion(.failure(error))
   |                 |- warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
42 |                 return
43 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[33/48] Compiling Buildkite Transport.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:41:17: warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         let task = dataTask(with: request) { data, response, error in
40 |             if let error = error {
41 |                 completion(.failure(error))
   |                 |- warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
42 |                 return
43 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[34/48] Compiling Buildkite URL+Buildkite.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:41:17: warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         let task = dataTask(with: request) { data, response, error in
40 |             if let error = error {
41 |                 completion(.failure(error))
   |                 |- warning: capture of 'completion' with non-sendable type 'URLSession.Completion' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
42 |                 return
43 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[35/48] Compiling Buildkite Organization.swift
[36/48] Compiling Buildkite Pipeline.swift
[37/48] Compiling Buildkite Team.swift
[38/48] Compiling Buildkite Trace.swift
[39/48] Compiling Buildkite User.swift
[40/48] Compiling Buildkite JSONValue.swift
[41/48] Compiling Buildkite Pagination.swift
[42/48] Compiling Buildkite Resource.swift
[43/48] Compiling Buildkite Response.swift
[44/48] Compiling Buildkite Artifact.swift
[45/48] Compiling Buildkite Build.swift
[46/48] Compiling Buildkite Emoji.swift
[47/48] Compiling Buildkite Job.swift
[48/48] Compiling Buildkite Meta.swift
Build complete! (34.50s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "Buildkite",
  "name" : "Buildkite",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Buildkite",
      "targets" : [
        "Buildkite"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BuildkiteTests",
      "module_type" : "SwiftTarget",
      "name" : "BuildkiteTests",
      "path" : "Tests/BuildkiteTests",
      "sources" : [
        "BuildkiteClientTests.swift",
        "Networking/JSONValueTests.swift",
        "Networking/StatusCodeTests.swift",
        "Networking/TransportTests.swift",
        "Resources/Agent/AgentMetricsTests.swift",
        "Resources/GraphQL/GraphQLTests.swift",
        "Resources/REST/AccessTokensTests.swift",
        "Resources/REST/AgentsTests.swift",
        "Resources/REST/AnnotationsTests.swift",
        "Resources/REST/ArtifactsTests.swift",
        "Resources/REST/BuildsTests.swift",
        "Resources/REST/EmojisTests.swift",
        "Resources/REST/FollowableTests.swift",
        "Resources/REST/JobsTests.swift",
        "Resources/REST/MetasTests.swift",
        "Resources/REST/OrganizationsTests.swift",
        "Resources/REST/PipelinesTests.swift",
        "Resources/REST/TeamsTests.swift",
        "Resources/REST/UsersTests.swift",
        "Resources/TestAnalytics/TestAnalyticsUploadTests.swift",
        "Utilities/MockContext.swift",
        "Utilities/MockData.swift",
        "Utilities/MockTransport.swift",
        "Utilities/URL+Buildkite.swift",
        "Utilities/XCTestCase+Buildkite.swift"
      ],
      "target_dependencies" : [
        "Buildkite"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Buildkite",
      "module_type" : "SwiftTarget",
      "name" : "Buildkite",
      "path" : "Sources/Buildkite",
      "product_memberships" : [
        "Buildkite"
      ],
      "sources" : [
        "BuildkiteClient.swift",
        "Models/AccessToken.swift",
        "Models/Agent.swift",
        "Models/AgentMetric.swift",
        "Models/Annotation.swift",
        "Models/Artifact.swift",
        "Models/Build.swift",
        "Models/Emoji.swift",
        "Models/Job.swift",
        "Models/Meta.swift",
        "Models/Organization.swift",
        "Models/Pipeline.swift",
        "Models/Team.swift",
        "Models/Trace.swift",
        "Models/User.swift",
        "Models/WebhookEvent.swift",
        "Networking/APIVersion.swift",
        "Networking/Configuration.swift",
        "Networking/Formatters.swift",
        "Networking/JSONValue.swift",
        "Networking/Pagination.swift",
        "Networking/Resource.swift",
        "Networking/Response.swift",
        "Networking/StatusCode.swift",
        "Networking/TokenProvider.swift",
        "Networking/Transport.swift",
        "Networking/URL+Buildkite.swift",
        "Resources/Agent/AgentMetrics.swift",
        "Resources/GraphQL/GraphQL.swift",
        "Resources/REST/AccessTokens.swift",
        "Resources/REST/Agents.swift",
        "Resources/REST/Annotations.swift",
        "Resources/REST/Artifacts.swift",
        "Resources/REST/Builds.swift",
        "Resources/REST/Emojis.swift",
        "Resources/REST/Followable.swift",
        "Resources/REST/Jobs.swift",
        "Resources/REST/Metas.swift",
        "Resources/REST/Organizations.swift",
        "Resources/REST/Pipelines.swift",
        "Resources/REST/Teams.swift",
        "Resources/REST/Users.swift",
        "Resources/TestAnalytics/TestAnalyticsUpload.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/aaronsky/buildkite-swift/0.3.2
Repository:               aaronsky/buildkite-swift
Swift version used:       6.0
    .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
Target:                   Buildkite
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'Buildkite'...
Finished extracting symbol information for 'Buildkite'. (3.85s)
Building documentation for 'Buildkite'...
warning: 'Authorization' is ambiguous at '/Buildkite'
  --> Articles/GettingStarted.md:21:52-21:65
19 | ```
20 |
21 + For more advanced authorization features, see <doc:Authorization>.
   |                                                                 ├─suggestion: Insert 'anchor' for'Authorization'
   |                                                                 ╰─suggestion: Insert 'article' for'Authorization'
22 |
23 | ### Send a Resource
warning: 'Authorization' is ambiguous at '/Buildkite'
  --> Buildkite.md:34:8-34:21
32 | ### Authorization
33 |
34 + - <doc:Authorization>
   |                     ├─suggestion: Insert 'anchor' for'Authorization'
   |                     ╰─suggestion: Insert 'article' for'Authorization'
35 | - ``TokenProvider``
36 |Finished building documentation for 'Buildkite' (0.68s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/aaronsky/buildkite-swift/0.3.2
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling Snippets SnippetParser.swift
[7/53] Compiling Snippets Snippet.swift
[8/53] Emitting module Snippets
[9/53] Compiling SymbolKit SemanticVersion.swift
[10/53] Compiling SymbolKit AccessControl.swift
[11/53] Compiling SymbolKit Availability.swift
[12/53] Compiling SymbolKit AvailabilityItem.swift
[13/53] Compiling SymbolKit Domain.swift
[14/57] Emitting module SymbolKit
[15/57] Compiling SymbolKit GenericConstraint.swift
[16/57] Compiling SymbolKit GenericParameter.swift
[17/57] Compiling SymbolKit Generics.swift
[18/57] Compiling SymbolKit Namespace.swift
[19/57] Compiling SymbolKit Names.swift
[20/57] Compiling SymbolKit SPI.swift
[21/57] Compiling SymbolKit Snippet.swift
[22/57] Compiling SymbolKit Extension.swift
[23/57] Compiling SymbolKit SourceRange.swift
[24/57] Compiling SymbolKit Metadata.swift
[25/57] Compiling SymbolKit Module.swift
[26/57] Compiling SymbolKit OperatingSystem.swift
[27/57] Compiling SymbolKit Platform.swift
[28/57] Compiling SymbolKit Identifier.swift
[29/57] Compiling SymbolKit KindIdentifier.swift
[30/57] Compiling SymbolKit Location.swift
[31/57] Compiling SymbolKit Mutability.swift
[32/57] Compiling SymbolKit Relationship.swift
[33/57] Compiling SymbolKit RelationshipKind.swift
[34/57] Compiling SymbolKit SourceOrigin.swift
[35/57] Compiling SymbolKit GenericConstraints.swift
[36/57] Compiling SymbolKit Swift.swift
[37/57] Compiling SymbolKit DeclarationFragments.swift
[38/57] Compiling SymbolKit Fragment.swift
[39/57] Compiling SymbolKit FragmentKind.swift
[40/57] Compiling SymbolKit FunctionParameter.swift
[41/57] Compiling SymbolKit FunctionSignature.swift
[42/57] Compiling SymbolKit Mixin+Equals.swift
[43/57] Compiling SymbolKit Mixin+Hash.swift
[44/57] Compiling SymbolKit Mixin.swift
[45/57] Compiling SymbolKit LineList.swift
[46/57] Compiling SymbolKit Position.swift
[47/57] Compiling SymbolKit Symbol.swift
[48/57] Compiling SymbolKit SymbolKind.swift
[49/57] Compiling SymbolKit SymbolGraph.swift
[50/57] Compiling SymbolKit GraphCollector.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.88s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/41] Compiling Buildkite StatusCode.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[3/41] Compiling Buildkite TokenProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[4/41] Compiling Buildkite Transport.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[5/41] Compiling Buildkite URL+Buildkite.swift
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/Transport.swift:72:65: warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
70 |         guard #available(iOS 15, macOS 12, tvOS 15, watchOS 8, *) else {
71 |             return try await withCheckedThrowingContinuation { continuation in
72 |                 send(request: request, completion: continuation.resume)
   |                                                                 |- warning: converting a value of type '(__shared sending Result<URLSession.Output, any Error>) -> ()' (aka '(__shared sending Result<(data: Data, response: URLResponse), any Error>) -> ()') to type '(Result<URLSession.Output, any Error>) -> Void' (aka '(Result<(data: Data, response: URLResponse), any Error>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
   |                                                                 `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
73 |             }
74 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[6/41] Compiling Buildkite Followable.swift
[7/41] Compiling Buildkite Jobs.swift
[8/41] Compiling Buildkite Metas.swift
[9/41] Compiling Buildkite Organizations.swift
[10/45] Compiling Buildkite AgentMetrics.swift
[11/45] Compiling Buildkite GraphQL.swift
[12/45] Compiling Buildkite AccessTokens.swift
[13/45] Compiling Buildkite Agents.swift
[14/45] Compiling Buildkite WebhookEvent.swift
[15/45] Compiling Buildkite APIVersion.swift
[16/45] Compiling Buildkite Configuration.swift
[17/45] Compiling Buildkite Formatters.swift
[18/45] Compiling Buildkite Annotations.swift
[19/45] Compiling Buildkite Artifacts.swift
[20/45] Compiling Buildkite Builds.swift
[21/45] Compiling Buildkite Emojis.swift
[22/45] Emitting module Buildkite
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:69:1: warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
67 | }
68 |
69 | extension Date: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'Date' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
70 |     public init?(
71 |         _ description: String
/Users/admin/builder/spi-builder-workspace/Sources/Buildkite/Networking/URL+Buildkite.swift:80:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
78 | }
79 |
80 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
81 |     public init?(
82 |         _ description: String
[23/45] Compiling Buildkite Artifact.swift
[24/45] Compiling Buildkite Build.swift
[25/45] Compiling Buildkite Emoji.swift
[26/45] Compiling Buildkite Job.swift
[27/45] Compiling Buildkite Meta.swift
[28/45] Compiling Buildkite JSONValue.swift
[29/45] Compiling Buildkite Pagination.swift
[30/45] Compiling Buildkite Resource.swift
[31/45] Compiling Buildkite Response.swift
[32/45] Compiling Buildkite Organization.swift
[33/45] Compiling Buildkite Pipeline.swift
[34/45] Compiling Buildkite Team.swift
[35/45] Compiling Buildkite Trace.swift
[36/45] Compiling Buildkite User.swift
[37/45] Compiling Buildkite BuildkiteClient.swift
[38/45] Compiling Buildkite AccessToken.swift
[39/45] Compiling Buildkite Agent.swift
[40/45] Compiling Buildkite AgentMetric.swift
[41/45] Compiling Buildkite Annotation.swift
[42/45] Compiling Buildkite Pipelines.swift
[43/45] Compiling Buildkite Teams.swift
[44/45] Compiling Buildkite Users.swift
[45/45] Compiling Buildkite TestAnalyticsUpload.swift
Build of target: 'Buildkite' complete! (1.61s)
    3054
18	/Users/admin/builder/spi-builder-workspace/.docs/aaronsky/buildkite-swift/0.3.2
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/aaronsky/buildkite-swift/0.3.2
File count: 3054
Doc size:   18.0MB
Preparing doc bundle ...
Uploading prod-aaronsky-buildkite-swift-0.3.2-f1137a54.zip to s3://spi-docs-inbox/prod-aaronsky-buildkite-swift-0.3.2-f1137a54.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.