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

Swift 6 data race errors: 9

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/happn-app/URLRequestOperation.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/happn-app/URLRequestOperation
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at cafea35 Merge pull request #7 from happn-app/remove_async_operation_result
Cloned https://github.com/happn-app/URLRequestOperation.git
Revision (git rev-parse @):
cafea350e06f73dfd82f20f926088fb62aed0eec
SUCCESS checkout https://github.com/happn-app/URLRequestOperation.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/happn-app/URLRequestOperation.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/11] Write sources
[5/11] Write ManualTest-entitlement.plist
[7/11] Write swift-version-6F35C1178C84523A.txt
[9/17] Compiling Logging Logging.swift
[10/17] Compiling Logging LogHandler.swift
[11/17] Emitting module Logging
[12/17] Compiling Logging Locks.swift
[13/22] Compiling RecursiveSyncDispatch RecursiveSyncDispatch.swift
[14/22] Emitting module RecursiveSyncDispatch
[15/26] Compiling RetryingOperation WrappedRetryingOperation.swift
[16/26] Compiling RetryingOperation RetryingOperationConfig.swift
[17/26] Compiling RetryingOperation RetryHelper.swift
[18/26] Emitting module RetryingOperation
[19/26] Compiling RetryingOperation RetryingOperation.swift
[20/26] Compiling SemiSingleton SemiSingletonStore.swift
[21/26] Emitting module SemiSingleton
[22/26] Compiling SemiSingleton SemiSingletonConfig.swift
[23/26] Compiling SemiSingleton LinuxStrongToWeakMapTable.swift
[24/35] Emitting module URLRequestOperation
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/GenericURLSessionDelegate.swift:37:12: warning: non-final class 'GenericURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
35 | The URLSessionDelegates and URLSessionTask are not retained by this class (weak
36 | references). */
37 | open class GenericURLSessionDelegate : NSObject, URLSessionDelegate {
   |            `- warning: non-final class 'GenericURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
38 |
39 | 	public func setTaskDelegate(_ delegate: AnyObject & URLSessionTaskDelegate, forTask task: URLSessionTask) {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/GenericURLSessionDelegate.swift:65:15: warning: stored property 'taskToDelegate' of 'Sendable'-conforming class 'GenericURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
63 | 	private let queueSyncForMapTable = DispatchQueue(label: "com.happn.URLRequestOperation.GenericURLSessionDelegate")
64 | 	#if !os(Linux)
65 | 		private var taskToDelegate = NSMapTable<URLSessionTask, URLSessionTaskDelegate>.weakToWeakObjects()
   |               `- warning: stored property 'taskToDelegate' of 'Sendable'-conforming class 'GenericURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
66 | 	#else
67 | 		private var taskToDelegate = LinuxWeakToWeakForGenericURLSessionDelegateMapTable()
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SemiSingleton/Sources/SemiSingleton/SemiSingletonStore.swift:69:20: warning: class property 'shared' is not concurrency-safe because non-'Sendable' type 'SemiSingletonStore' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 |
 61 | public class SemiSingletonStore {
    |              `- note: class 'SemiSingletonStore' does not conform to the 'Sendable' protocol
 62 |
 63 | 	public enum Error : Swift.Error {
    :
 67 | 	}
 68 |
 69 | 	public static let shared = SemiSingletonStore(forceClassInKeys: true)
    |                    |- warning: class property 'shared' is not concurrency-safe because non-'Sendable' type 'SemiSingletonStore' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'shared' 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
 70 |
 71 | 	public let forceClassInKeys: Bool
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/ReachabilitySubscriber.swift:24:42: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
22 |
23 | @objc
24 | public protocol ReachabilitySubscriber : class {
   |                                          `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
25 | 	/* We do not have optional methods in a protocol in (pure) Swift. So we cheat
26 | 	 * and use the ObjC feature.
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:298:21: warning: static property 'latestURLOperationIdentifier' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 296 | 	/** For debug purpose only: An arbitrary identifier for the operation. */
 297 | 	public let urlOperationIdentifier: Int
 298 | 	private static var latestURLOperationIdentifier = 0
     |                     |- warning: static property 'latestURLOperationIdentifier' 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 'latestURLOperationIdentifier' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: annotate 'latestURLOperationIdentifier' 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
 299 |
 300 | 	/* ************
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:108:12: warning: class 'URLRequestOperation' must restate inherited '@unchecked Sendable' conformance
 106 |      If the operation is told to be retried, when it is retried, we simply go
 107 |      back to step 2. (The URL is re-processed, etc.) */
 108 | open class URLRequestOperation : RetryingOperation, URLSessionDataDelegate, URLSessionDownloadDelegate {
     |            `- warning: class 'URLRequestOperation' must restate inherited '@unchecked Sendable' conformance
 109 |
 110 | 	public enum URLRequestOperationError : Int, Error {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:52:21: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
50 | 	#if canImport(os)
51 | 		@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
52 | 		public static var oslog: OSLog? = .default
   |                     |- warning: static property 'oslog' 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 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                     |- note: annotate 'oslog' 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
53 | 	#endif
54 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:54:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
52 | 		public static var oslog: OSLog? = .default
53 | 	#endif
54 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' 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 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
55 | 		#if canImport(os)
56 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:65:20: warning: static property 'logFetchedStrings' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
63 | 	/** When data has been fetched from a server, if it is a valid UTF-8 string,
64 | 	should we log it? Set to true for debug purpose. */
65 | 	public static var logFetchedStrings = false
   |                    |- warning: static property 'logFetchedStrings' 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 'logFetchedStrings' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logFetchedStrings' 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
66 | 	/** Log everything URL Session related in the file at the given URL. */
67 | 	public static var debugLogURL: URL?
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:67:20: warning: static property 'debugLogURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
65 | 	public static var logFetchedStrings = false
66 | 	/** Log everything URL Session related in the file at the given URL. */
67 | 	public static var debugLogURL: URL?
   |                    |- warning: static property 'debugLogURL' 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 'debugLogURL' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'debugLogURL' 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
68 |
69 | 	/** This struct is simply a container for static configuration properties. */
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationSessionDelegate.swift:23:12: warning: non-final class 'URLRequestOperationSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 |
22 |
23 | open class URLRequestOperationSessionDelegate : GenericURLSessionDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
   |            `- warning: non-final class 'URLRequestOperationSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
24 |
25 | 	public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse, completionHandler: @escaping (URLSession.ResponseDisposition) -> Void) {
[25/35] Compiling URLRequestOperation LinuxWeakToWeakMapTable.swift
[26/35] Compiling URLRequestOperation URLRequestOperationSessionDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationSessionDelegate.swift:23:12: warning: non-final class 'URLRequestOperationSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 |
22 |
23 | open class URLRequestOperationSessionDelegate : GenericURLSessionDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
   |            `- warning: non-final class 'URLRequestOperationSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
24 |
25 | 	public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse, completionHandler: @escaping (URLSession.ResponseDisposition) -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationSessionDelegate.swift:27:117: warning: passing non-sendable parameter 'completionHandler' to function expecting a @Sendable closure
23 | open class URLRequestOperationSessionDelegate : GenericURLSessionDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
24 |
25 | 	public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive response: URLResponse, completionHandler: @escaping (URLSession.ResponseDisposition) -> Void) {
   |                                                                                                                `- note: parameter 'completionHandler' is implicitly non-sendable
26 | 		#if !os(Linux)
27 | 			taskDelegateForTask(dataTask)?.urlSession?(session, dataTask: dataTask, didReceive: response, completionHandler: completionHandler)
   |                                                                                                                     `- warning: passing non-sendable parameter 'completionHandler' to function expecting a @Sendable closure
28 | 		#else
29 | 			taskDelegateForTask(dataTask)?.urlSession(session, dataTask: dataTask, didReceive: response, completionHandler: completionHandler)
[27/35] Compiling URLRequestOperation SockaddrWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:52:21: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
50 | 	#if canImport(os)
51 | 		@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
52 | 		public static var oslog: OSLog? = .default
   |                     |- warning: static property 'oslog' 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 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                     |- note: annotate 'oslog' 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
53 | 	#endif
54 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:54:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
52 | 		public static var oslog: OSLog? = .default
53 | 	#endif
54 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' 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 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
55 | 		#if canImport(os)
56 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[28/35] Compiling URLRequestOperation GenericURLSessionDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/GenericURLSessionDelegate.swift:37:12: warning: non-final class 'GenericURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
35 | The URLSessionDelegates and URLSessionTask are not retained by this class (weak
36 | references). */
37 | open class GenericURLSessionDelegate : NSObject, URLSessionDelegate {
   |            `- warning: non-final class 'GenericURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
38 |
39 | 	public func setTaskDelegate(_ delegate: AnyObject & URLSessionTaskDelegate, forTask task: URLSessionTask) {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/GenericURLSessionDelegate.swift:65:15: warning: stored property 'taskToDelegate' of 'Sendable'-conforming class 'GenericURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
63 | 	private let queueSyncForMapTable = DispatchQueue(label: "com.happn.URLRequestOperation.GenericURLSessionDelegate")
64 | 	#if !os(Linux)
65 | 		private var taskToDelegate = NSMapTable<URLSessionTask, URLSessionTaskDelegate>.weakToWeakObjects()
   |               `- warning: stored property 'taskToDelegate' of 'Sendable'-conforming class 'GenericURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
66 | 	#else
67 | 		private var taskToDelegate = LinuxWeakToWeakForGenericURLSessionDelegateMapTable()
[29/35] Compiling URLRequestOperation ReachabilitySubscriber.swift
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/ReachabilitySubscriber.swift:24:42: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
22 |
23 | @objc
24 | public protocol ReachabilitySubscriber : class {
   |                                          `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
25 | 	/* We do not have optional methods in a protocol in (pure) Swift. So we cheat
26 | 	 * and use the ObjC feature.
[30/35] Compiling URLRequestOperation ReachabilityObserver.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SemiSingleton/Sources/SemiSingleton/SemiSingletonStore.swift:69:20: warning: class property 'shared' is not concurrency-safe because non-'Sendable' type 'SemiSingletonStore' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 |
 61 | public class SemiSingletonStore {
    |              `- note: class 'SemiSingletonStore' does not conform to the 'Sendable' protocol
 62 |
 63 | 	public enum Error : Swift.Error {
    :
 67 | 	}
 68 |
 69 | 	public static let shared = SemiSingletonStore(forceClassInKeys: true)
    |                    |- warning: class property 'shared' is not concurrency-safe because non-'Sendable' type 'SemiSingletonStore' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'shared' 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
 70 |
 71 | 	public let forceClassInKeys: Bool
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:52:21: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
50 | 	#if canImport(os)
51 | 		@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
52 | 		public static var oslog: OSLog? = .default
   |                     |- warning: static property 'oslog' 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 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                     |- note: annotate 'oslog' 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
53 | 	#endif
54 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:54:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
52 | 		public static var oslog: OSLog? = .default
53 | 	#endif
54 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' 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 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
55 | 		#if canImport(os)
56 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
[31/35] Compiling URLRequestOperation URLRequestOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:298:21: warning: static property 'latestURLOperationIdentifier' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 296 | 	/** For debug purpose only: An arbitrary identifier for the operation. */
 297 | 	public let urlOperationIdentifier: Int
 298 | 	private static var latestURLOperationIdentifier = 0
     |                     |- warning: static property 'latestURLOperationIdentifier' 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 'latestURLOperationIdentifier' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: annotate 'latestURLOperationIdentifier' 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
 299 |
 300 | 	/* ************
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:108:12: warning: class 'URLRequestOperation' must restate inherited '@unchecked Sendable' conformance
 106 |      If the operation is told to be retried, when it is retried, we simply go
 107 |      back to step 2. (The URL is re-processed, etc.) */
 108 | open class URLRequestOperation : RetryingOperation, URLSessionDataDelegate, URLSessionDownloadDelegate {
     |            `- warning: class 'URLRequestOperation' must restate inherited '@unchecked Sendable' conformance
 109 |
 110 | 	public enum URLRequestOperationError : Int, Error {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:52:21: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
50 | 	#if canImport(os)
51 | 		@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
52 | 		public static var oslog: OSLog? = .default
   |                     |- warning: static property 'oslog' 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 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                     |- note: annotate 'oslog' 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
53 | 	#endif
54 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:54:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
52 | 		public static var oslog: OSLog? = .default
53 | 	#endif
54 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' 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 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
55 | 		#if canImport(os)
56 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:449:150: warning: converting non-sendable function value to '@Sendable () -> Void' may introduce data races
 447 | 			}
 448 | 		}
 449 | 		if let queueForProcessingURLRequestForRunning = config.queueForProcessingURLRequestForRunning {queueForProcessingURLRequestForRunning.addOperation(processURLBlock)}
     |                                                                                                                                                      `- warning: converting non-sendable function value to '@Sendable () -> Void' may introduce data races
 450 | 		else                                                                                          {processURLBlock()}
 451 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:67:20: warning: static property 'debugLogURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
65 | 	public static var logFetchedStrings = false
66 | 	/** Log everything URL Session related in the file at the given URL. */
67 | 	public static var debugLogURL: URL?
   |                    |- warning: static property 'debugLogURL' 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 'debugLogURL' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'debugLogURL' 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
68 |
69 | 	/** This struct is simply a container for static configuration properties. */
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:530:62: warning: passing non-sendable parameter 'dataCompletionHandler' to function expecting a @Sendable closure
 524 | 	*/
 525 | 	open func urlSessionTaskForURLRequest(_ request: URLRequest,
 526 | 		withDataCompletionHandler dataCompletionHandler: @escaping (Data?, URLResponse?, Error?) -> Void,
     |                             `- note: parameter 'dataCompletionHandler' is implicitly non-sendable
 527 | 		downloadCompletionHandler: @escaping (URL?, URLResponse?, Error?) -> Void
 528 | 	) -> URLSessionTask {
 529 | 		return (config.destinationURL == nil ?
 530 | 			config.session.dataTask(with: request, completionHandler: dataCompletionHandler) :
     |                                                              `- warning: passing non-sendable parameter 'dataCompletionHandler' to function expecting a @Sendable closure
 531 | 			config.session.downloadTask(with: request, completionHandler: downloadCompletionHandler)
 532 | 		)
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:531:66: warning: passing non-sendable parameter 'downloadCompletionHandler' to function expecting a @Sendable closure
 525 | 	open func urlSessionTaskForURLRequest(_ request: URLRequest,
 526 | 		withDataCompletionHandler dataCompletionHandler: @escaping (Data?, URLResponse?, Error?) -> Void,
 527 | 		downloadCompletionHandler: @escaping (URL?, URLResponse?, Error?) -> Void
     |   `- note: parameter 'downloadCompletionHandler' is implicitly non-sendable
 528 | 	) -> URLSessionTask {
 529 | 		return (config.destinationURL == nil ?
 530 | 			config.session.dataTask(with: request, completionHandler: dataCompletionHandler) :
 531 | 			config.session.downloadTask(with: request, completionHandler: downloadCompletionHandler)
     |                                                                  `- warning: passing non-sendable parameter 'downloadCompletionHandler' to function expecting a @Sendable closure
 532 | 		)
 533 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:65:20: warning: static property 'logFetchedStrings' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
63 | 	/** When data has been fetched from a server, if it is a valid UTF-8 string,
64 | 	should we log it? Set to true for debug purpose. */
65 | 	public static var logFetchedStrings = false
   |                    |- warning: static property 'logFetchedStrings' 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 'logFetchedStrings' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logFetchedStrings' 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
66 | 	/** Log everything URL Session related in the file at the given URL. */
67 | 	public static var debugLogURL: URL?
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:982:114: warning: converting non-sendable function value to '@Sendable () -> Void' may introduce data races
 980 | 			}
 981 | 		}
 982 | 		if let queueForComputingRetryInfo = config.queueForComputingRetryInfo {queueForComputingRetryInfo.addOperation(computeRetryInfoBlock)}
     |                                                                                                                  `- warning: converting non-sendable function value to '@Sendable () -> Void' may introduce data races
 983 | 		else                                                                  {computeRetryInfoBlock()}
 984 | 	}
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SemiSingleton/Sources/SemiSingleton/SemiSingletonStore.swift:69:20: warning: class property 'shared' is not concurrency-safe because non-'Sendable' type 'SemiSingletonStore' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 |
 61 | public class SemiSingletonStore {
    |              `- note: class 'SemiSingletonStore' does not conform to the 'Sendable' protocol
 62 |
 63 | 	public enum Error : Swift.Error {
    :
 67 | 	}
 68 |
 69 | 	public static let shared = SemiSingletonStore(forceClassInKeys: true)
    |                    |- warning: class property 'shared' is not concurrency-safe because non-'Sendable' type 'SemiSingletonStore' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'shared' 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
 70 |
 71 | 	public let forceClassInKeys: Bool
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:1039:28: warning: capture of 'self' with non-sendable type 'URLRequestOperation.OtherSuccessRetryHelper' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1025 | 	#endif
1026 |
1027 | 	private class OtherSuccessRetryHelper : RetryHelper {
     |                `- note: class 'OtherSuccessRetryHelper' does not conform to the 'Sendable' protocol
1028 |
1029 | 		init?(host h: String?, operation op: URLRequestOperation) {
     :
1037 | 			otherSuccessObserver = NotificationCenter.default.addObserver(forName: .URLRequestOperationDidSucceedOperation, object: nil, queue: nil) { notif in
1038 | 				let succeededHost = notif.userInfo?[URLRequestOperation.requestSucceededNotifUserInfoHostKey] as? String
1039 | 				guard succeededHost == self.host else {return}
     |                            `- warning: capture of 'self' with non-sendable type 'URLRequestOperation.OtherSuccessRetryHelper' in a `@Sendable` closure; this is an error in the Swift 6 language mode
1040 |
1041 | 				#if canImport(os)
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:1043:172: warning: capture of 'self' with non-sendable type 'URLRequestOperation.OtherSuccessRetryHelper' in an isolated closure; this is an error in the Swift 6 language mode
1025 | 	#endif
1026 |
1027 | 	private class OtherSuccessRetryHelper : RetryHelper {
     |                `- note: class 'OtherSuccessRetryHelper' does not conform to the 'Sendable' protocol
1028 |
1029 | 		init?(host h: String?, operation op: URLRequestOperation) {
     :
1041 | 				#if canImport(os)
1042 | 				if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
1043 | 					URLRequestOperationConfig.oslog.flatMap{ os_log("URL Op id %d: Got an URL operation succeeded with same host as me. Forcing retrying sooner.", log: $0, type: .debug, self.operation.urlOperationIdentifier) }}
     |                                                                                                                                                                            `- warning: capture of 'self' with non-sendable type 'URLRequestOperation.OtherSuccessRetryHelper' in an isolated closure; this is an error in the Swift 6 language mode
1044 | 				#endif
1045 | 				URLRequestOperationConfig.logger?.debug("URL Op id \(self.operation.urlOperationIdentifier): Got an URL operation succeeded with same host as me. Forcing retrying sooner.")
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift:1045:58: warning: implicit capture of 'self' requires that 'URLRequestOperation.OtherSuccessRetryHelper' conforms to `Sendable`; this is an error in the Swift 6 language mode
1025 | 	#endif
1026 |
1027 | 	private class OtherSuccessRetryHelper : RetryHelper {
     |                `- note: class 'OtherSuccessRetryHelper' does not conform to the 'Sendable' protocol
1028 |
1029 | 		init?(host h: String?, operation op: URLRequestOperation) {
     :
1043 | 					URLRequestOperationConfig.oslog.flatMap{ os_log("URL Op id %d: Got an URL operation succeeded with same host as me. Forcing retrying sooner.", log: $0, type: .debug, self.operation.urlOperationIdentifier) }}
1044 | 				#endif
1045 | 				URLRequestOperationConfig.logger?.debug("URL Op id \(self.operation.urlOperationIdentifier): Got an URL operation succeeded with same host as me. Forcing retrying sooner.")
     |                                                          `- warning: implicit capture of 'self' requires that 'URLRequestOperation.OtherSuccessRetryHelper' conforms to `Sendable`; this is an error in the Swift 6 language mode
1046 | 				self.operation.retry(in: self.operation.exponentialBackoffTimeForIndex(1))
1047 | 			}
[32/35] Compiling URLRequestOperation URLRequestOperationConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:52:21: warning: static property 'oslog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
50 | 	#if canImport(os)
51 | 		@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
52 | 		public static var oslog: OSLog? = .default
   |                     |- warning: static property 'oslog' 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 'oslog' to a 'let' constant to make 'Sendable' shared state immutable
   |                     |- note: annotate 'oslog' 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
53 | 	#endif
54 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:54:20: warning: static property 'logger' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
52 | 		public static var oslog: OSLog? = .default
53 | 	#endif
54 | 	public static var logger: Logging.Logger? = {
   |                    |- warning: static property 'logger' 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 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logger' 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
55 | 		#if canImport(os)
56 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:65:20: warning: static property 'logFetchedStrings' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
63 | 	/** When data has been fetched from a server, if it is a valid UTF-8 string,
64 | 	should we log it? Set to true for debug purpose. */
65 | 	public static var logFetchedStrings = false
   |                    |- warning: static property 'logFetchedStrings' 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 'logFetchedStrings' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'logFetchedStrings' 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
66 | 	/** Log everything URL Session related in the file at the given URL. */
67 | 	public static var debugLogURL: URL?
/Users/admin/builder/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:67:20: warning: static property 'debugLogURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
65 | 	public static var logFetchedStrings = false
66 | 	/** Log everything URL Session related in the file at the given URL. */
67 | 	public static var debugLogURL: URL?
   |                    |- warning: static property 'debugLogURL' 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 'debugLogURL' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'debugLogURL' 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
68 |
69 | 	/** This struct is simply a container for static configuration properties. */
[33/37] Compiling ManualTest main.swift
[34/37] Emitting module ManualTest
[34/37] Write Objects.LinkFileList
[35/37] Linking ManualTest
[36/37] Applying ManualTest
Build complete! (26.75s)
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/happn-app/RecursiveSyncDispatch.git
Fetching https://github.com/happn-app/SemiSingleton.git
Fetching https://github.com/happn-app/RetryingOperation.git
[1/421] Fetching semisingleton
[44/599] Fetching semisingleton, recursivesyncdispatch
[435/994] Fetching semisingleton, recursivesyncdispatch, retryingoperation
[690/4355] Fetching semisingleton, recursivesyncdispatch, retryingoperation, swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.20s)
Fetched https://github.com/happn-app/RecursiveSyncDispatch.git from cache (1.20s)
Fetched https://github.com/happn-app/SemiSingleton.git from cache (1.20s)
Fetched https://github.com/happn-app/RetryingOperation.git from cache (1.20s)
Computing version for https://github.com/happn-app/SemiSingleton.git
Computed https://github.com/happn-app/SemiSingleton.git at 2.0.5 (0.71s)
Computing version for https://github.com/happn-app/RetryingOperation.git
Computed https://github.com/happn-app/RetryingOperation.git at 1.1.7 (0.67s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.4.2 (0.68s)
Computing version for https://github.com/happn-app/RecursiveSyncDispatch.git
Computed https://github.com/happn-app/RecursiveSyncDispatch.git at 1.0.1 (0.69s)
Creating working copy for https://github.com/happn-app/RetryingOperation.git
Working copy of https://github.com/happn-app/RetryingOperation.git resolved at 1.1.7
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.4.2
Creating working copy for https://github.com/happn-app/RecursiveSyncDispatch.git
Working copy of https://github.com/happn-app/RecursiveSyncDispatch.git resolved at 1.0.1
Creating working copy for https://github.com/happn-app/SemiSingleton.git
Working copy of https://github.com/happn-app/SemiSingleton.git resolved at 2.0.5
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "retryingoperation",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/happn-app/RetryingOperation.git"
    },
    {
      "identity" : "semisingleton",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.3",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/happn-app/SemiSingleton.git"
    }
  ],
  "manifest_display_name" : "URLRequestOperation",
  "name" : "URLRequestOperation",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "URLRequestOperation",
      "targets" : [
        "URLRequestOperation"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ManualTest",
      "targets" : [
        "ManualTest"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "URLRequestOperationTests",
      "module_type" : "SwiftTarget",
      "name" : "URLRequestOperationTests",
      "path" : "Tests/URLRequestOperationTests",
      "sources" : [
        "IPUtilsTests.swift",
        "ReachabilityTests.swift",
        "URLRequestOperationTests.swift"
      ],
      "target_dependencies" : [
        "URLRequestOperation"
      ],
      "type" : "test"
    },
    {
      "c99name" : "URLRequestOperation",
      "module_type" : "SwiftTarget",
      "name" : "URLRequestOperation",
      "path" : "Sources/URLRequestOperation",
      "product_dependencies" : [
        "Logging",
        "RetryingOperation",
        "SemiSingleton"
      ],
      "product_memberships" : [
        "URLRequestOperation",
        "ManualTest"
      ],
      "sources" : [
        "GenericURLSessionDelegate.swift",
        "LinuxWeakToWeakMapTable.swift",
        "ReachabilityObserver.swift",
        "ReachabilitySubscriber.swift",
        "SockaddrWrapper.swift",
        "URLRequestOperation.swift",
        "URLRequestOperationConfig.swift",
        "URLRequestOperationSessionDelegate.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ManualTest",
      "module_type" : "SwiftTarget",
      "name" : "ManualTest",
      "path" : "Sources/ManualTest",
      "product_memberships" : [
        "ManualTest"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "URLRequestOperation"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.1"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.