This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 Notarize with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/phimage/Notarize.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/phimage/Notarize
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 2445295 Update FUNDING.yml
Cloned https://github.com/phimage/Notarize.git
Revision (git rev-parse @):
2445295e7032e95654931fc1bd4afe05dfbd2130
SUCCESS checkout https://github.com/phimage/Notarize.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/phimage/Notarize.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/19] Write sources
[1/19] Write notarize-entitlement.plist
[1/19] Write sources
[9/19] Write swift-version-6F35C1178C84523A.txt
[10/40] Compiling reader.c
[11/40] Compiling writer.c
[12/40] Compiling emitter.c
[13/40] Compiling parser.c
[14/40] Compiling scanner.c
[15/40] Compiling api.c
[17/56] Compiling NotarizationAuditLog NotarizationAuditLog.swift
[18/56] Emitting module NotarizationAuditLog
[19/56] Compiling Commandant Result+Additions.swift
[20/57] Compiling Yams Tag.swift
[21/58] Compiling Commandant Switch.swift
[22/58] Compiling Commandant OrderedSet.swift
[23/58] Compiling Yams shim.swift
[24/58] Compiling Yams YamlError.swift
[25/58] Compiling Yams Node.Scalar.swift
[26/58] Compiling Yams Node.Sequence.swift
[27/58] Compiling Commandant HelpCommand.swift
[28/58] Compiling Commandant Option.swift
[29/58] Emitting module NotarizationInfo
[30/58] Compiling NotarizationInfo NotarizationError.swift
[31/58] Compiling NotarizationInfo NotarizationUpload.swift
[32/58] Compiling NotarizationInfo NotarizationHistory.swift
[33/58] Compiling NotarizationInfo NotarizationResponse.swift
[34/58] Compiling NotarizationInfo NotarizationStatus.swift
[35/58] Compiling NotarizationInfo NotarizationInfo.swift
[36/58] Compiling Yams String+Yams.swift
[37/58] Compiling Yams Mark.swift
[38/58] Compiling Yams Node.Mapping.swift
[39/58] Compiling PathKit PathKit.swift
[40/58] Compiling Yams Representer.swift
[41/58] Compiling Yams Resolver.swift
[42/58] Emitting module PathKit
[43/58] Compiling Commandant ArgumentProtocol.swift
[44/58] Compiling Commandant Command.swift
[45/58] Compiling Commandant Errors.swift
[46/58] Compiling Commandant Argument.swift
[47/58] Emitting module Commandant
[48/58] Compiling Commandant ArgumentParser.swift
[49/58] Emitting module Yams
[50/58] Compiling Yams Node.swift
[51/58] Compiling Yams Parser.swift
[52/66] Compiling Yams Emitter.swift
[53/66] Compiling Yams Encoder.swift
[54/66] Compiling Yams Constructor.swift
[55/66] Compiling Yams Decoder.swift
[56/66] Compiling NotarizeProcess WaitMethod.swift
[57/66] Compiling NotarizeProcess Processable.swift
[58/66] Compiling NotarizeProcess NotarizeProcessError.swift
[59/66] Compiling NotarizeProcess NotarizeProcessAction.swift
[60/66] Compiling NotarizeProcess NotarizationInfo+AuditLog.swift
[61/66] Emitting module NotarizeProcess
[62/66] Compiling NotarizeProcess NotarizePlatform.swift
[63/66] Compiling NotarizeProcess NotarizeProcess.swift
[64/76] Compiling NotarizeFrontend Reporter.swift
[65/76] Compiling NotarizeFrontend PropertyListReporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeFrontend/Reporters/PropertyListReporter.swift:14:16: warning: static property 'outputFormat' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 |
13 |     static let identifier = "xml"
14 |     static var outputFormat: PropertyListSerialization.PropertyListFormat = .xml
   |                |- warning: static property 'outputFormat' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'outputFormat' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'outputFormat' 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
15 |
16 |     static func generateReport(info: NotarizationInfo) -> String {
[66/76] Compiling NotarizeFrontend JSONReporter.swift
[67/77] Compiling NotarizeFrontend NotarizeFrontend.swift
[68/77] Compiling NotarizeFrontend Version.swift
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeFrontend/Version.swift:13:23: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Version {
   |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
13 |     public static let current = Version(value: "0.0.1")
   |                       |- warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'current' 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
14 | }
15 |
[69/77] Compiling NotarizeFrontend NotarizeCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeFrontend/Config.swift:26:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Yams
10 |
11 | public struct Config: Codable {
   |               `- note: consider making struct 'Config' conform to the 'Sendable' protocol
12 |
13 |     public let username: String?
   :
24 |
25 |     public static let fileName = ".notarize.yml"
26 |     public static let `default` = Config.init()
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
27 |     public static let defaultReporter = "json"
28 |
[70/77] Compiling NotarizeFrontend VersionCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeFrontend/Version.swift:13:23: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Version {
   |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
13 |     public static let current = Version(value: "0.0.1")
   |                       |- warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'current' 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
14 | }
15 |
[71/77] Compiling NotarizeFrontend Config.swift
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeFrontend/Config.swift:26:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Yams
10 |
11 | public struct Config: Codable {
   |               `- note: consider making struct 'Config' conform to the 'Sendable' protocol
12 |
13 |     public let username: String?
   :
24 |
25 |     public static let fileName = ".notarize.yml"
26 |     public static let `default` = Config.init()
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
27 |     public static let defaultReporter = "json"
28 |
[72/77] Emitting module NotarizeFrontend
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeFrontend/Config.swift:26:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Yams
10 |
11 | public struct Config: Codable {
   |               `- note: consider making struct 'Config' conform to the 'Sendable' protocol
12 |
13 |     public let username: String?
   :
24 |
25 |     public static let fileName = ".notarize.yml"
26 |     public static let `default` = Config.init()
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
27 |     public static let defaultReporter = "json"
28 |
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeFrontend/Reporters/PropertyListReporter.swift:14:16: warning: static property 'outputFormat' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 |
13 |     static let identifier = "xml"
14 |     static var outputFormat: PropertyListSerialization.PropertyListFormat = .xml
   |                |- warning: static property 'outputFormat' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'outputFormat' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'outputFormat' 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
15 |
16 |     static func generateReport(info: NotarizationInfo) -> String {
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeFrontend/Version.swift:13:23: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Version {
   |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
13 |     public static let current = Version(value: "0.0.1")
   |                       |- warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'current' 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
14 | }
15 |
[73/77] Compiling NotarizeFrontend InfoCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeFrontend/Config.swift:26:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Yams
10 |
11 | public struct Config: Codable {
   |               `- note: consider making struct 'Config' conform to the 'Sendable' protocol
12 |
13 |     public let username: String?
   :
24 |
25 |     public static let fileName = ".notarize.yml"
26 |     public static let `default` = Config.init()
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
27 |     public static let defaultReporter = "json"
28 |
[74/77] Compiling NotarizeFrontend HistoryCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeFrontend/Config.swift:26:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Yams
10 |
11 | public struct Config: Codable {
   |               `- note: consider making struct 'Config' conform to the 'Sendable' protocol
12 |
13 |     public let username: String?
   :
24 |
25 |     public static let fileName = ".notarize.yml"
26 |     public static let `default` = Config.init()
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Config' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
27 |     public static let defaultReporter = "json"
28 |
[75/79] Emitting module Notarize
[76/79] Compiling Notarize main.swift
[76/79] Write Objects.LinkFileList
[77/79] Linking notarize
[78/79] Applying notarize
Build complete! (59.73s)
Fetching https://github.com/phimage/NotarizationInfo
[1/85] Fetching notarizationinfo
Fetched https://github.com/phimage/NotarizationInfo from cache (0.69s)
Fetching https://github.com/phimage/NotarizationAuditLog
[1/32] Fetching notarizationauditlog
Fetched https://github.com/phimage/NotarizationAuditLog from cache (0.60s)
Fetching https://github.com/phimage/NotarizeProcess
[1/133] Fetching notarizeprocess
Fetched https://github.com/phimage/NotarizeProcess from cache (0.67s)
Fetching https://github.com/Quick/Nimble.git
Fetching https://github.com/kylef/PathKit.git
Fetching https://github.com/mattgallagher/CwlCatchException.git
Fetching https://github.com/jpsim/Yams.git
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
Fetching https://github.com/Quick/Quick.git
Fetching https://github.com/kylef/Spectre.git
[1/439] Fetching cwlcatchexception
[32/1460] Fetching cwlcatchexception, spectre
[196/2707] Fetching cwlcatchexception, spectre, cwlpreconditiontesting
[671/4118] Fetching cwlcatchexception, spectre, cwlpreconditiontesting, pathkit
[1237/13455] Fetching cwlcatchexception, spectre, cwlpreconditiontesting, pathkit, yams
[3156/28004] Fetching cwlcatchexception, spectre, cwlpreconditiontesting, pathkit, yams, quick
Fetched https://github.com/kylef/PathKit.git from cache (1.01s)
Fetching https://github.com/Carthage/Commandant.git
[2947/26593] Fetching cwlcatchexception, spectre, cwlpreconditiontesting, yams, quick
[18042/45233] Fetching cwlcatchexception, spectre, cwlpreconditiontesting, yams, quick, nimble
[26124/47556] Fetching cwlcatchexception, spectre, cwlpreconditiontesting, yams, quick, nimble, commandant
Fetched https://github.com/Carthage/Commandant.git from cache (0.93s)
[38337/45233] Fetching cwlcatchexception, spectre, cwlpreconditiontesting, yams, quick, nimble
Fetched https://github.com/Quick/Quick.git from cache (2.72s)
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (2.72s)
Fetched https://github.com/kylef/Spectre.git from cache (2.72s)
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (2.72s)
Fetched https://github.com/Quick/Nimble.git from cache (2.72s)
Fetched https://github.com/jpsim/Yams.git from cache (2.72s)
Computing version for https://github.com/kylef/PathKit.git
Computed https://github.com/kylef/PathKit.git at 1.0.0 (2.87s)
Computing version for https://github.com/jpsim/Yams.git
Computed https://github.com/jpsim/Yams.git at 2.0.0 (0.71s)
Computing version for https://github.com/Carthage/Commandant.git
Computed https://github.com/Carthage/Commandant.git at 0.17.0 (0.69s)
Computing version for https://github.com/kylef/Spectre.git
Computed https://github.com/kylef/Spectre.git at 0.9.0 (0.69s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 8.0.4 (0.70s)
Computing version for https://github.com/Quick/Quick.git
Computed https://github.com/Quick/Quick.git at 2.2.0 (0.76s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 1.2.0 (2.36s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 1.2.0 (0.68s)
Creating working copy for https://github.com/kylef/PathKit.git
Working copy of https://github.com/kylef/PathKit.git resolved at 1.0.0
Creating working copy for https://github.com/kylef/Spectre.git
Working copy of https://github.com/kylef/Spectre.git resolved at 0.9.0
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 1.2.0
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 1.2.0
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 8.0.4
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 2.2.0
Creating working copy for https://github.com/jpsim/Yams.git
Working copy of https://github.com/jpsim/Yams.git resolved at 2.0.0
Creating working copy for https://github.com/phimage/NotarizationAuditLog
Working copy of https://github.com/phimage/NotarizationAuditLog resolved at HEAD (daa6a29)
Creating working copy for https://github.com/Carthage/Commandant.git
Working copy of https://github.com/Carthage/Commandant.git resolved at 0.17.0
Creating working copy for https://github.com/phimage/NotarizationInfo
Working copy of https://github.com/phimage/NotarizationInfo resolved at HEAD (d45147a)
Creating working copy for https://github.com/phimage/NotarizeProcess
Working copy of https://github.com/phimage/NotarizeProcess resolved at HEAD (ae77b9c)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "notarizationinfo",
      "requirement" : {
        "revision" : [
          "HEAD"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/phimage/NotarizationInfo"
    },
    {
      "identity" : "notarizationauditlog",
      "requirement" : {
        "revision" : [
          "HEAD"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/phimage/NotarizationAuditLog"
    },
    {
      "identity" : "notarizeprocess",
      "requirement" : {
        "revision" : [
          "HEAD"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/phimage/NotarizeProcess"
    },
    {
      "identity" : "commandant",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.17.0",
            "upper_bound" : "0.18.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Carthage/Commandant.git"
    },
    {
      "identity" : "yams",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "2.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/jpsim/Yams.git"
    },
    {
      "identity" : "pathkit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "1.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kylef/PathKit.git"
    }
  ],
  "manifest_display_name" : "Notarize",
  "name" : "Notarize",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "notarize",
      "targets" : [
        "Notarize"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "NotarizeFrontend",
      "targets" : [
        "NotarizeFrontend"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "NotarizeFrontend",
      "module_type" : "SwiftTarget",
      "name" : "NotarizeFrontend",
      "path" : "Sources/NotarizeFrontend",
      "product_dependencies" : [
        "NotarizationInfo",
        "NotarizationAuditLog",
        "NotarizeProcess",
        "PathKit",
        "Commandant",
        "Yams"
      ],
      "product_memberships" : [
        "notarize",
        "NotarizeFrontend"
      ],
      "sources" : [
        "Commands/HistoryCommand.swift",
        "Commands/InfoCommand.swift",
        "Commands/NotarizeCommand.swift",
        "Commands/VersionCommand.swift",
        "Config.swift",
        "NotarizeFrontend.swift",
        "Reporters/JSONReporter.swift",
        "Reporters/PropertyListReporter.swift",
        "Reporters/Reporter.swift",
        "Version.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Notarize",
      "module_type" : "SwiftTarget",
      "name" : "Notarize",
      "path" : "Sources/Notarize",
      "product_memberships" : [
        "notarize"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "NotarizeFrontend"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.1"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.