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 Chronicle, reference main (99b0ea), with Swift 6.0 for macOS (SPM) on 1 Nov 2024 19:13:17 UTC.

Swift 6 data race errors: 5

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.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/0xLeif/Chronicle.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/0xLeif/Chronicle
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 99b0ea8 Update README.md
Cloned https://github.com/0xLeif/Chronicle.git
Revision (git rev-parse @):
99b0ea8460fb6c83b3130fca65a1571b80cfe9cb
SUCCESS checkout https://github.com/0xLeif/Chronicle.git at main
========================================
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": "chronicle",
      "name": "Chronicle",
      "url": "https://github.com/0xLeif/Chronicle.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Chronicle",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/0xLeif/Chronicle.git
[1/130] Fetching chronicle
Fetched https://github.com/0xLeif/Chronicle.git from cache (0.70s)
Creating working copy for https://github.com/0xLeif/Chronicle.git
Working copy of https://github.com/0xLeif/Chronicle.git resolved at main (99b0ea8)
warning: '.resolve-product-dependencies': dependency 'chronicle' 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/0xLeif/Chronicle.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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/6] Compiling Chronicle Chronicle+DefaultFormatters.swift
[4/6] Emitting module Chronicle
/Users/admin/builder/spi-builder-workspace/Sources/Chronicle/Chronicle.swift:21:27: warning: static property 'successEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 | public struct Chronicle {
20 |     public enum LogLevel {
21 |         public static var successEmoji: String = "✅"
   |                           |- warning: static property 'successEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'successEmoji' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'successEmoji' 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
22 |         public static var infoEmoji: String = "ℹ️"
23 |         public static var warningEmoji: String = "⚠️"
/Users/admin/builder/spi-builder-workspace/Sources/Chronicle/Chronicle.swift:22:27: warning: static property 'infoEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |     public enum LogLevel {
21 |         public static var successEmoji: String = "✅"
22 |         public static var infoEmoji: String = "ℹ️"
   |                           |- warning: static property 'infoEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'infoEmoji' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'infoEmoji' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         public static var warningEmoji: String = "⚠️"
24 |         public static var errorEmoji: String = "❗️"
/Users/admin/builder/spi-builder-workspace/Sources/Chronicle/Chronicle.swift:23:27: warning: static property 'warningEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 |         public static var successEmoji: String = "✅"
22 |         public static var infoEmoji: String = "ℹ️"
23 |         public static var warningEmoji: String = "⚠️"
   |                           |- warning: static property 'warningEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'warningEmoji' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'warningEmoji' 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
24 |         public static var errorEmoji: String = "❗️"
25 |         public static var fatalEmoji: String = "🚨"
/Users/admin/builder/spi-builder-workspace/Sources/Chronicle/Chronicle.swift:24:27: warning: static property 'errorEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |         public static var infoEmoji: String = "ℹ️"
23 |         public static var warningEmoji: String = "⚠️"
24 |         public static var errorEmoji: String = "❗️"
   |                           |- warning: static property 'errorEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'errorEmoji' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'errorEmoji' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         public static var fatalEmoji: String = "🚨"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/Chronicle/Chronicle.swift:25:27: warning: static property 'fatalEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
23 |         public static var warningEmoji: String = "⚠️"
24 |         public static var errorEmoji: String = "❗️"
25 |         public static var fatalEmoji: String = "🚨"
   |                           |- warning: static property 'fatalEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'fatalEmoji' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'fatalEmoji' 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
26 |
27 |         case success(String)
[5/6] Compiling Chronicle Chronicle+DefaultHandlers.swift
[6/6] Compiling Chronicle Chronicle.swift
/Users/admin/builder/spi-builder-workspace/Sources/Chronicle/Chronicle.swift:21:27: warning: static property 'successEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
19 | public struct Chronicle {
20 |     public enum LogLevel {
21 |         public static var successEmoji: String = "✅"
   |                           |- warning: static property 'successEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'successEmoji' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'successEmoji' 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
22 |         public static var infoEmoji: String = "ℹ️"
23 |         public static var warningEmoji: String = "⚠️"
/Users/admin/builder/spi-builder-workspace/Sources/Chronicle/Chronicle.swift:22:27: warning: static property 'infoEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |     public enum LogLevel {
21 |         public static var successEmoji: String = "✅"
22 |         public static var infoEmoji: String = "ℹ️"
   |                           |- warning: static property 'infoEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'infoEmoji' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'infoEmoji' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         public static var warningEmoji: String = "⚠️"
24 |         public static var errorEmoji: String = "❗️"
/Users/admin/builder/spi-builder-workspace/Sources/Chronicle/Chronicle.swift:23:27: warning: static property 'warningEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 |         public static var successEmoji: String = "✅"
22 |         public static var infoEmoji: String = "ℹ️"
23 |         public static var warningEmoji: String = "⚠️"
   |                           |- warning: static property 'warningEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'warningEmoji' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'warningEmoji' 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
24 |         public static var errorEmoji: String = "❗️"
25 |         public static var fatalEmoji: String = "🚨"
/Users/admin/builder/spi-builder-workspace/Sources/Chronicle/Chronicle.swift:24:27: warning: static property 'errorEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |         public static var infoEmoji: String = "ℹ️"
23 |         public static var warningEmoji: String = "⚠️"
24 |         public static var errorEmoji: String = "❗️"
   |                           |- warning: static property 'errorEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'errorEmoji' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'errorEmoji' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |         public static var fatalEmoji: String = "🚨"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/Chronicle/Chronicle.swift:25:27: warning: static property 'fatalEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
23 |         public static var warningEmoji: String = "⚠️"
24 |         public static var errorEmoji: String = "❗️"
25 |         public static var fatalEmoji: String = "🚨"
   |                           |- warning: static property 'fatalEmoji' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: convert 'fatalEmoji' to a 'let' constant to make 'Sendable' shared state immutable
   |                           |- note: annotate 'fatalEmoji' 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
26 |
27 |         case success(String)
Build complete! (6.81s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Chronicle",
  "name" : "Chronicle",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Chronicle",
      "targets" : [
        "Chronicle"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ChronicleTests",
      "module_type" : "SwiftTarget",
      "name" : "ChronicleTests",
      "path" : "Tests/ChronicleTests",
      "sources" : [
        "ChronicalTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Chronicle"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Chronicle",
      "module_type" : "SwiftTarget",
      "name" : "Chronicle",
      "path" : "Sources/Chronicle",
      "product_memberships" : [
        "Chronicle"
      ],
      "sources" : [
        "Chronicle+DefaultFormatters.swift",
        "Chronicle+DefaultHandlers.swift",
        "Chronicle.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.