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 TriforkSwiftNetworking 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/trifork/TriforkSwiftNetworking.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/trifork/TriforkSwiftNetworking
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 4ff0711 Merge pull request #5 from trifork/tkc/mock-helpers
Cloned https://github.com/trifork/TriforkSwiftNetworking.git
Revision (git rev-parse @):
4ff071159447d6f4fe6c4454d4538aabe112029e
SUCCESS checkout https://github.com/trifork/TriforkSwiftNetworking.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/trifork/TriforkSwiftNetworking.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/3] Write sources
[2/3] Write swift-version-6F35C1178C84523A.txt
[4/18] Compiling TriforkSwiftNetworking URLSession+NetworkSession.swift
/Users/admin/builder/spi-builder-workspace/Sources/TriforkSwiftNetworking/URLSession+NetworkSession.swift:11:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'NetworkSession'; this is an error in the Swift 6 language mode
 9 |
10 | /// Default implementaion
11 | extension URLSession: NetworkSession { }
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'NetworkSession'; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/Sources/TriforkSwiftNetworking/NetworkSession.swift:30:10: note: expected sendability to match requirement here
 28 |     ///      - `error`: An error object that indicates why the request failed, or nil if the request was successful.
 29 |     /// - Returns: The new session data task.
 30 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
    |          `- note: expected sendability to match requirement here
 31 |
 32 |     #if canImport(Combine)
[5/18] Compiling TriforkSwiftNetworking Response.swift
[6/18] Compiling TriforkSwiftNetworking HTTPRequest.swift
[7/18] Compiling TriforkSwiftNetworking CollectionResponse.swift
[8/18] Compiling TriforkSwiftNetworking EntityResponse.swift
[9/18] Compiling TriforkSwiftNetworking URL+URLComponents.swift
[10/18] Compiling TriforkSwiftNetworking TriforkSwiftNetworkingConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/TriforkSwiftNetworking/Config/TriforkSwiftNetworkingConfig.swift:7:23: warning: static property 'isDebugPrintingEnabled' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 |     /// All requests will be printed if set to `true`. Default value is `false`
 7 |     public static var isDebugPrintingEnabled: Bool = false
   |                       |- warning: static property 'isDebugPrintingEnabled' 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 'isDebugPrintingEnabled' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'isDebugPrintingEnabled' 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 |
[11/18] Compiling TriforkSwiftNetworking NetworkSession.swift
/Users/admin/builder/spi-builder-workspace/Sources/TriforkSwiftNetworking/Config/TriforkSwiftNetworkingConfig.swift:7:23: warning: static property 'isDebugPrintingEnabled' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 |     /// All requests will be printed if set to `true`. Default value is `false`
 7 |     public static var isDebugPrintingEnabled: Bool = false
   |                       |- warning: static property 'isDebugPrintingEnabled' 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 'isDebugPrintingEnabled' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'isDebugPrintingEnabled' 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 |
[12/18] Emitting module TSNMockHelpers
/Users/admin/builder/spi-builder-workspace/Sources/TSNMockHelpers/URLSessionMockResult.swift:6:23: warning: static property 'resultsForUrls' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | public struct URLSessionStubResults {
 5 |     /// Contains stub results for specific URLs, which will be used when mocking `URLSession` via `URLSessionMockProtocol`
 6 |     public static var resultsForUrls: [URL?: URLSessionStubResult] = [:]
   |                       |- warning: static property 'resultsForUrls' 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 'resultsForUrls' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'resultsForUrls' 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 |
 8 |     /// Resets the stub storage
[13/18] Compiling TSNMockHelpers URLSessionMockProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/TSNMockHelpers/URLSessionMockResult.swift:6:23: warning: static property 'resultsForUrls' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | public struct URLSessionStubResults {
 5 |     /// Contains stub results for specific URLs, which will be used when mocking `URLSession` via `URLSessionMockProtocol`
 6 |     public static var resultsForUrls: [URL?: URLSessionStubResult] = [:]
   |                       |- warning: static property 'resultsForUrls' 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 'resultsForUrls' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'resultsForUrls' 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 |
 8 |     /// Resets the stub storage
[14/18] Compiling TSNMockHelpers URLSession+Extensions.swift
[15/18] Compiling TSNMockHelpers URLSessionStubResponses.swift
[16/18] Compiling TSNMockHelpers URLSessionMockResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/TSNMockHelpers/URLSessionMockResult.swift:6:23: warning: static property 'resultsForUrls' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | public struct URLSessionStubResults {
 5 |     /// Contains stub results for specific URLs, which will be used when mocking `URLSession` via `URLSessionMockProtocol`
 6 |     public static var resultsForUrls: [URL?: URLSessionStubResult] = [:]
   |                       |- warning: static property 'resultsForUrls' 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 'resultsForUrls' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'resultsForUrls' 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 |
 8 |     /// Resets the stub storage
[17/18] Emitting module TriforkSwiftNetworking
/Users/admin/builder/spi-builder-workspace/Sources/TriforkSwiftNetworking/Config/TriforkSwiftNetworkingConfig.swift:7:23: warning: static property 'isDebugPrintingEnabled' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 |     /// All requests will be printed if set to `true`. Default value is `false`
 7 |     public static var isDebugPrintingEnabled: Bool = false
   |                       |- warning: static property 'isDebugPrintingEnabled' 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 'isDebugPrintingEnabled' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'isDebugPrintingEnabled' 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 |
/Users/admin/builder/spi-builder-workspace/Sources/TriforkSwiftNetworking/URLSession+NetworkSession.swift:11:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'NetworkSession'; this is an error in the Swift 6 language mode
 9 |
10 | /// Default implementaion
11 | extension URLSession: NetworkSession { }
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'NetworkSession'; this is an error in the Swift 6 language mode
12 |
/Users/admin/builder/spi-builder-workspace/Sources/TriforkSwiftNetworking/NetworkSession.swift:30:10: note: expected sendability to match requirement here
 28 |     ///      - `error`: An error object that indicates why the request failed, or nil if the request was successful.
 29 |     /// - Returns: The new session data task.
 30 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
    |          `- note: expected sendability to match requirement here
 31 |
 32 |     #if canImport(Combine)
[18/18] Compiling TriforkSwiftNetworking Logger.swift
Build complete! (27.87s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "TriforkSwiftNetworking",
  "name" : "TriforkSwiftNetworking",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "TriforkSwiftNetworking",
      "targets" : [
        "TriforkSwiftNetworking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "TSNMockHelpers",
      "targets" : [
        "TSNMockHelpers"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TriforkSwiftNetworkingTests",
      "module_type" : "SwiftTarget",
      "name" : "TriforkSwiftNetworkingTests",
      "path" : "Tests/TriforkSwiftNetworkingTests",
      "sources" : [
        "Helpers/MockNetworkSession.swift",
        "Helpers/TestRequest.swift",
        "HttpRequestTests.swift",
        "NetworkSessionTests.swift",
        "RequestBuilderTests.swift"
      ],
      "target_dependencies" : [
        "TriforkSwiftNetworking",
        "TSNMockHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TriforkSwiftNetworking",
      "module_type" : "SwiftTarget",
      "name" : "TriforkSwiftNetworking",
      "path" : "Sources/TriforkSwiftNetworking",
      "product_memberships" : [
        "TriforkSwiftNetworking"
      ],
      "sources" : [
        "Config/Logger.swift",
        "Config/TriforkSwiftNetworkingConfig.swift",
        "Extensions/URL+URLComponents.swift",
        "NetworkSession.swift",
        "Request/HTTPRequest.swift",
        "Response/CollectionResponse.swift",
        "Response/EntityResponse.swift",
        "Response/Response.swift",
        "URLSession+NetworkSession.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "TSNMockHelpersTests",
      "module_type" : "SwiftTarget",
      "name" : "TSNMockHelpersTests",
      "path" : "Tests/TSNMockHelpersTests",
      "sources" : [
        "URLSessionMockTests.swift"
      ],
      "target_dependencies" : [
        "TSNMockHelpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TSNMockHelpers",
      "module_type" : "SwiftTarget",
      "name" : "TSNMockHelpers",
      "path" : "Sources/TSNMockHelpers",
      "product_memberships" : [
        "TSNMockHelpers"
      ],
      "sources" : [
        "URLSession+Extensions.swift",
        "URLSessionMockProtocol.swift",
        "URLSessionMockResult.swift",
        "URLSessionStubResponses.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.