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

Swift 6 data race errors: 2

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/JosephDuffy/SwiftChecksDangerPlugin.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/JosephDuffy/SwiftChecksDangerPlugin
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 19a6298 Update to Danger 3.12.3 and Swift 5.5
Cloned https://github.com/JosephDuffy/SwiftChecksDangerPlugin.git
Revision (git rev-parse @):
19a6298dc882b26bd5444ea80a17d1fd97e6d8a9
SUCCESS checkout https://github.com/JosephDuffy/SwiftChecksDangerPlugin.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/JosephDuffy/SwiftChecksDangerPlugin.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/9] Write sources
[6/9] Write swift-version-6F35C1178C84523A.txt
[8/17] Emitting module Logger
[9/17] Compiling Logger Logger.swift
[10/17] Emitting module DangerShellExecutor
[11/17] Compiling DangerShellExecutor ShellExecutor.swift
[12/17] Emitting module RequestKit
[13/17] Compiling RequestKit RequestKitSession.swift
[14/17] Compiling RequestKit JSONPostRouter.swift
[15/17] Compiling RequestKit Router.swift
[16/39] Compiling OctoKit Milestone.swift
[17/39] Compiling OctoKit Octokit.swift
[18/39] Compiling OctoKit Parameters.swift
[19/39] Compiling OctoKit String+PercentEncoding.swift
[20/39] Compiling OctoKit Time.swift
[21/41] Compiling OctoKit Plan.swift
[22/41] Compiling OctoKit PreviewHeader.swift
[23/41] Compiling OctoKit Stars.swift
[24/41] Compiling OctoKit Statuses.swift
[25/41] Compiling OctoKit Reactions.swift
[26/41] Compiling OctoKit Releases.swift
[27/41] Emitting module OctoKit
[28/41] Compiling OctoKit Repositories.swift
[29/41] Compiling OctoKit Review.swift
[30/41] Compiling OctoKit PublicKey.swift
[31/41] Compiling OctoKit PullRequest.swift
[32/41] Compiling OctoKit URL+URLParameters.swift
[33/41] Compiling OctoKit User.swift
[34/41] Compiling OctoKit Configuration.swift
[35/41] Compiling OctoKit File.swift
[36/41] Compiling OctoKit Follow.swift
[37/41] Compiling OctoKit Gist.swift
[38/41] Compiling OctoKit Issue.swift
[39/41] Compiling OctoKit Label.swift
[40/60] Compiling Danger SwiftLintViolation.swift
[41/60] Compiling Danger SwiftlintReportDeleter.swift
[42/62] Compiling Danger CurrentPathProvider.swift
[43/62] Compiling Danger SwiftLint.swift
[44/62] Compiling Danger Report.swift
[45/62] Compiling Danger Settings.swift
[46/62] Compiling Danger GitDSL.swift
[47/62] Compiling Danger GitDiff.swift
[48/62] Compiling Danger BitBucketCloud.swift
[49/62] Compiling Danger BitBucketMetadata.swift
[50/62] Compiling Danger NSRegularExpressionExtensions.swift
[51/62] Compiling Danger File.swift
[52/62] Compiling Danger BitBucketServerDSL.swift
[53/62] Compiling Danger Danger.swift
[54/62] Compiling Danger DangerUtils.swift
[55/62] Compiling Danger DateFormatterExtensions.swift
[56/62] Compiling Danger DangerDSL.swift
[57/62] Compiling Danger DangerResults.swift
[58/62] Emitting module Danger
[59/62] Compiling Danger GitHubDSL.swift
[60/62] Compiling Danger GitLabDSL.swift
[61/69] Compiling SwiftChecksDangerPlugin SwiftChecks.swift
[62/69] Compiling SwiftChecksDangerPlugin InfoPlistFileProvider.swift
[63/69] Compiling SwiftChecksDangerPlugin FileProvider.swift
[64/69] Compiling SwiftChecksDangerPlugin InfoPlistFile.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChecksDangerPlugin/InfoPlistFile.swift:6:27: warning: static property 'versionNumber' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     public struct PlistKey: RawRepresentable, ExpressibleByStringLiteral {
 6 |         public static var versionNumber: PlistKey = "CFBundleShortVersionString"
   |                           |- warning: static property 'versionNumber' 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 'versionNumber' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'versionNumber' 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
 7 |         public static var buildNumber: PlistKey = "CFBundleVersion"
 8 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChecksDangerPlugin/InfoPlistFile.swift:7:27: warning: static property 'buildNumber' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |     public struct PlistKey: RawRepresentable, ExpressibleByStringLiteral {
 6 |         public static var versionNumber: PlistKey = "CFBundleShortVersionString"
 7 |         public static var buildNumber: PlistKey = "CFBundleVersion"
   |                           |- warning: static property 'buildNumber' 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 'buildNumber' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'buildNumber' 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
 8 |
 9 |         public let rawValue: String
[65/69] Compiling SwiftChecksDangerPlugin File.swift
[66/69] Compiling SwiftChecksDangerPlugin VersionFile.swift
[67/69] Emitting module SwiftChecksDangerPlugin
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChecksDangerPlugin/InfoPlistFile.swift:6:27: warning: static property 'versionNumber' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |     public struct PlistKey: RawRepresentable, ExpressibleByStringLiteral {
 6 |         public static var versionNumber: PlistKey = "CFBundleShortVersionString"
   |                           |- warning: static property 'versionNumber' 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 'versionNumber' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'versionNumber' 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
 7 |         public static var buildNumber: PlistKey = "CFBundleVersion"
 8 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChecksDangerPlugin/InfoPlistFile.swift:7:27: warning: static property 'buildNumber' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |     public struct PlistKey: RawRepresentable, ExpressibleByStringLiteral {
 6 |         public static var versionNumber: PlistKey = "CFBundleShortVersionString"
 7 |         public static var buildNumber: PlistKey = "CFBundleVersion"
   |                           |- warning: static property 'buildNumber' 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 'buildNumber' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'buildNumber' 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
 8 |
 9 |         public let rawValue: String
[67/69] Write Objects.LinkFileList
[68/69] Linking libSwiftChecksDangerPlugin.dylib
Build complete! (41.50s)
Fetching https://github.com/danger/swift.git
Fetching https://github.com/nerdishbynature/RequestKit.git
Fetching https://github.com/nerdishbynature/octokit.swift
Fetching https://github.com/shibapm/Logger
Fetching https://github.com/mxcl/Version
[1/116] Fetching logger
[122/367] Fetching logger, version
[210/4689] Fetching logger, version, octokit.swift
[297/6243] Fetching logger, version, octokit.swift, requestkit
[452/15870] Fetching logger, version, octokit.swift, requestkit, swift
Fetched https://github.com/nerdishbynature/RequestKit.git from cache (1.38s)
Fetched https://github.com/shibapm/Logger from cache (1.38s)
Fetched https://github.com/danger/swift.git from cache (1.38s)
Computing version for https://github.com/danger/swift.git
Fetched https://github.com/mxcl/Version from cache (1.38s)
Fetched https://github.com/nerdishbynature/octokit.swift from cache (1.38s)
Computed https://github.com/danger/swift.git at 3.12.3 (0.69s)
Computing version for https://github.com/nerdishbynature/octokit.swift
Computed https://github.com/nerdishbynature/octokit.swift at 0.11.0 (2.72s)
Computing version for https://github.com/mxcl/Version
Computed https://github.com/mxcl/Version at 1.2.0 (2.40s)
Computing version for https://github.com/shibapm/Logger
Computed https://github.com/shibapm/Logger at 0.2.3 (0.68s)
Computing version for https://github.com/nerdishbynature/RequestKit.git
Computed https://github.com/nerdishbynature/RequestKit.git at 2.3.0 (0.69s)
Creating working copy for https://github.com/danger/swift.git
Working copy of https://github.com/danger/swift.git resolved at 3.12.3
Creating working copy for https://github.com/mxcl/Version
Working copy of https://github.com/mxcl/Version resolved at 1.2.0
Creating working copy for https://github.com/nerdishbynature/RequestKit.git
Working copy of https://github.com/nerdishbynature/RequestKit.git resolved at 2.3.0
Creating working copy for https://github.com/shibapm/Logger
Working copy of https://github.com/shibapm/Logger resolved at 0.2.3
Creating working copy for https://github.com/nerdishbynature/octokit.swift
Working copy of https://github.com/nerdishbynature/octokit.swift resolved at 0.11.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.12.3",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/danger/swift.git"
    }
  ],
  "manifest_display_name" : "SwiftChecksDangerPlugin",
  "name" : "SwiftChecksDangerPlugin",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    }
  ],
  "products" : [
    {
      "name" : "SwiftChecksDangerPlugin",
      "targets" : [
        "SwiftChecksDangerPlugin"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "SwiftChecksDangerPlugin",
      "module_type" : "SwiftTarget",
      "name" : "SwiftChecksDangerPlugin",
      "path" : "Sources/SwiftChecksDangerPlugin",
      "product_dependencies" : [
        "Danger"
      ],
      "product_memberships" : [
        "SwiftChecksDangerPlugin"
      ],
      "sources" : [
        "File.swift",
        "FileProvider.swift",
        "InfoPlistFile.swift",
        "InfoPlistFileProvider.swift",
        "SwiftChecks.swift",
        "VersionFile.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.