Build Information
Successful build of HSHelpers, reference 0.3.5 (9dd6a3
), with Swift 6.0 for macOS (SPM) on 4 Nov 2024 23:40:02 UTC.
Swift 6 data race errors: 2
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/ConfusedVorlon/HSHelpers.git
Reference: 0.3.5
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ConfusedVorlon/HSHelpers
* tag 0.3.5 -> FETCH_HEAD
HEAD is now at 9dd6a37 relax version requirements for hshelpers
Cloned https://github.com/ConfusedVorlon/HSHelpers.git
Revision (git rev-parse @):
9dd6a3707c393fba0dea0fec1622639d41b6ede4
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/ConfusedVorlon/HSHelpers.git at 0.3.5
Fetching https://github.com/dreymonde/Time.git
[1/254] Fetching time
Fetched https://github.com/dreymonde/Time.git from cache (0.74s)
Computing version for https://github.com/dreymonde/Time.git
Computed https://github.com/dreymonde/Time.git at 1.1.0 (2.69s)
Creating working copy for https://github.com/dreymonde/Time.git
Working copy of https://github.com/dreymonde/Time.git resolved at 1.1.0
========================================
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": "hshelpers",
"name": "HSHelpers",
"url": "https://github.com/ConfusedVorlon/HSHelpers.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/HSHelpers",
"dependencies": [
{
"identity": "time",
"name": "Time",
"url": "https://github.com/dreymonde/Time.git",
"version": "1.1.0",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Time",
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/ConfusedVorlon/HSHelpers.git
[1/1552] Fetching hshelpers
Fetched https://github.com/ConfusedVorlon/HSHelpers.git from cache (1.07s)
Fetching https://github.com/dreymonde/Time.git from cache
Fetched https://github.com/dreymonde/Time.git from cache (0.47s)
Computing version for https://github.com/dreymonde/Time.git
Computed https://github.com/dreymonde/Time.git at 1.1.0 (0.03s)
Creating working copy for https://github.com/dreymonde/Time.git
Working copy of https://github.com/dreymonde/Time.git resolved at 1.1.0
Creating working copy for https://github.com/ConfusedVorlon/HSHelpers.git
Working copy of https://github.com/ConfusedVorlon/HSHelpers.git resolved at 0.3.5 (9dd6a37)
warning: '.resolve-product-dependencies': dependency 'hshelpers' is not used by any target
Found 1 product dependencies
- Time
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/ConfusedVorlon/HSHelpers.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/6] Write sources
[5/6] Write swift-version--7754E27361AE5C74.txt
[7/49] Compiling Time Time+Foundation.swift
[8/49] Compiling Time Time.swift
[9/49] Emitting module Time
[10/51] Compiling HSTime Time+HS.swift
[11/51] Emitting module HSTime
[12/51] Emitting module HSHelpers
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:14:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
12 |
13 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
14 | extension Published: Decodable where Value: Decodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init(from decoder: Decoder) throws {
16 | let decoded = try Value(from: decoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:22:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
20 |
21 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
22 | extension Published: Encodable where Value: Encodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public func encode(to encoder: Encoder) throws {
24 | try unofficialValue.encode(to: encoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/RuntimeWarning.swift:22:13: warning: let 'rw' is not concurrency-safe because non-'Sendable' type '(dso: UnsafeMutableRawPointer, log: OSLog)' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // Feedback filed: https://gist.github.com/stephencelis/a8d06383ed6ccde3e5ef5d1b3ad52bbc
21 | @available(iOS 10.0, *)
22 | private let rw = (
| |- warning: let 'rw' is not concurrency-safe because non-'Sendable' type '(dso: UnsafeMutableRawPointer, log: OSLog)' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rw' 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 | dso: { () -> UnsafeMutableRawPointer in
24 | let count = _dyld_image_count()
[13/55] Compiling HSHelpers NSRegularExpression+HS.swift
[14/55] Compiling HSHelpers NSTextCheckingResult+HS.swift
[15/55] Compiling HSHelpers Number+PositiveModulus.swift
[16/55] Compiling HSHelpers Optional+HS.swift
[17/55] Compiling HSHelpers AnyHashable+HS.swift
[18/55] Compiling HSHelpers Array+HS.swift
[19/55] Compiling HSHelpers Bundle+HS.swift
[20/55] Compiling HSHelpers CGColor+HS.swift
[21/55] Compiling HSHelpers CGImage+HS.swift
[22/55] Compiling HSHelpers WeakTimer.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
12 | public class func scheduledTimer(withTimeInterval interval: TimeInterval,
13 | repeats: Bool,
14 | block: @MainActor @escaping (Timer) -> Void) -> WeakTimer {
| `- note: parameter 'block' is implicitly non-sendable
15 |
16 |
:
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
25 | }
26 | else {
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
25 | }
26 | else {
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:21: warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
38 | }
39 | })
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:21: warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
38 | }
39 | })
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:27: warning: capture of 'timer' with non-sendable type 'Timer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| `- warning: capture of 'timer' with non-sendable type 'Timer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 | }
39 | })
Foundation.Timer:1:12: note: class 'Timer' does not conform to the 'Sendable' protocol
1 | open class Timer : NSObject {
| `- note: class 'Timer' does not conform to the 'Sendable' protocol
2 | public /*not inherited*/ init(timeInterval ti: TimeInterval, invocation: NSInvocation, repeats yesOrNo: Bool)
3 | @available(*, unavailable, renamed: "init(timeInterval:invocation:repeats:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:27: warning: sending 'timer' risks causing data races; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: sending 'timer' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'timer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
38 | }
39 | })
[23/55] Compiling HSHelpers URL+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
12 | public class func scheduledTimer(withTimeInterval interval: TimeInterval,
13 | repeats: Bool,
14 | block: @MainActor @escaping (Timer) -> Void) -> WeakTimer {
| `- note: parameter 'block' is implicitly non-sendable
15 |
16 |
:
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
25 | }
26 | else {
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
25 | }
26 | else {
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:21: warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
38 | }
39 | })
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:21: warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
38 | }
39 | })
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:27: warning: capture of 'timer' with non-sendable type 'Timer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| `- warning: capture of 'timer' with non-sendable type 'Timer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 | }
39 | })
Foundation.Timer:1:12: note: class 'Timer' does not conform to the 'Sendable' protocol
1 | open class Timer : NSObject {
| `- note: class 'Timer' does not conform to the 'Sendable' protocol
2 | public /*not inherited*/ init(timeInterval ti: TimeInterval, invocation: NSInvocation, repeats yesOrNo: Bool)
3 | @available(*, unavailable, renamed: "init(timeInterval:invocation:repeats:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:27: warning: sending 'timer' risks causing data races; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: sending 'timer' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'timer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
38 | }
39 | })
[24/55] Compiling HSHelpers URLComponents+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
12 | public class func scheduledTimer(withTimeInterval interval: TimeInterval,
13 | repeats: Bool,
14 | block: @MainActor @escaping (Timer) -> Void) -> WeakTimer {
| `- note: parameter 'block' is implicitly non-sendable
15 |
16 |
:
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
25 | }
26 | else {
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
25 | }
26 | else {
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:21: warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
38 | }
39 | })
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:21: warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
38 | }
39 | })
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:27: warning: capture of 'timer' with non-sendable type 'Timer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| `- warning: capture of 'timer' with non-sendable type 'Timer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 | }
39 | })
Foundation.Timer:1:12: note: class 'Timer' does not conform to the 'Sendable' protocol
1 | open class Timer : NSObject {
| `- note: class 'Timer' does not conform to the 'Sendable' protocol
2 | public /*not inherited*/ init(timeInterval ti: TimeInterval, invocation: NSInvocation, repeats yesOrNo: Bool)
3 | @available(*, unavailable, renamed: "init(timeInterval:invocation:repeats:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:27: warning: sending 'timer' risks causing data races; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: sending 'timer' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'timer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
38 | }
39 | })
[25/55] Compiling HSHelpers WKWebView+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
12 | public class func scheduledTimer(withTimeInterval interval: TimeInterval,
13 | repeats: Bool,
14 | block: @MainActor @escaping (Timer) -> Void) -> WeakTimer {
| `- note: parameter 'block' is implicitly non-sendable
15 |
16 |
:
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
25 | }
26 | else {
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
25 | }
26 | else {
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:21: warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
38 | }
39 | })
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:21: warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: capture of 'block' with non-sendable type '@MainActor (Timer) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
38 | }
39 | })
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:27: warning: capture of 'timer' with non-sendable type 'Timer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| `- warning: capture of 'timer' with non-sendable type 'Timer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 | }
39 | })
Foundation.Timer:1:12: note: class 'Timer' does not conform to the 'Sendable' protocol
1 | open class Timer : NSObject {
| `- note: class 'Timer' does not conform to the 'Sendable' protocol
2 | public /*not inherited*/ init(timeInterval ti: TimeInterval, invocation: NSInvocation, repeats yesOrNo: Bool)
3 | @available(*, unavailable, renamed: "init(timeInterval:invocation:repeats:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:37:27: warning: sending 'timer' risks causing data races; this is an error in the Swift 6 language mode
35 | repeats: repeats, block: { timer in
36 | DispatchQueue.main.async {
37 | block(timer)
| |- warning: sending 'timer' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'timer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
38 | }
39 | })
[26/55] Compiling HSHelpers FloatConvertible.swift
[27/55] Compiling HSHelpers Int.swift
[28/55] Compiling HSHelpers JSONEncoder+HS.swift
[29/55] Compiling HSHelpers NSMutableAttributedString+HS.swift
[30/55] Compiling HSHelpers SKProduct+HS.swift
[31/55] Compiling HSHelpers String+HS.swift
[32/55] Compiling HSHelpers String+MD5.swift
[33/55] Compiling HSHelpers Aliases.swift
[34/55] Compiling HSHelpers CGImageSource+HS.swift
[35/55] Compiling HSHelpers CGRect+HS.swift
[36/55] Compiling HSHelpers ClosedRange+HS.swift
[37/55] Compiling HSHelpers Comparable+clamp.swift
[38/55] Compiling HSHelpers Data+HS.swift
[39/55] Compiling HSHelpers RuntimeWarning.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/RuntimeWarning.swift:22:13: warning: let 'rw' is not concurrency-safe because non-'Sendable' type '(dso: UnsafeMutableRawPointer, log: OSLog)' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // Feedback filed: https://gist.github.com/stephencelis/a8d06383ed6ccde3e5ef5d1b3ad52bbc
21 | @available(iOS 10.0, *)
22 | private let rw = (
| |- warning: let 'rw' is not concurrency-safe because non-'Sendable' type '(dso: UnsafeMutableRawPointer, log: OSLog)' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rw' 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 | dso: { () -> UnsafeMutableRawPointer in
24 | let count = _dyld_image_count()
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:49:17: warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: generic class 'ThreadsafeArray' does not conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
47 | set(newValue) {
48 | queue.async(flags: .barrier) {
49 | self.array[index] = newValue!
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
50 | }
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:49:37: warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
47 | set(newValue) {
48 | queue.async(flags: .barrier) {
49 | self.array[index] = newValue!
| `- warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
50 | }
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:58:13: warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: generic class 'ThreadsafeArray' does not conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
56 | public func append(_ newValue: Value) {
57 | queue.async(flags: .barrier) {
58 | self.array.append(newValue)
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:58:31: warning: capture of 'newValue' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
56 | public func append(_ newValue: Value) {
57 | queue.async(flags: .barrier) {
58 | self.array.append(newValue)
| `- warning: capture of 'newValue' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:17: warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: generic class 'ThreadsafeDict' does not conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:27: warning: capture of 'index' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'index' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:36: warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:59:13: warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: generic class 'ThreadsafeDict' does not conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
57 | public func removeValue(forKey key: Key) {
58 | queue.async(flags: .barrier) {
59 | self.dict.removeValue(forKey: key)
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
60 | }
61 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:59:43: warning: capture of 'key' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
57 | public func removeValue(forKey key: Key) {
58 | queue.async(flags: .barrier) {
59 | self.dict.removeValue(forKey: key)
| `- warning: capture of 'key' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
60 | }
61 | }
[40/55] Compiling HSHelpers ThreadsafeArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/RuntimeWarning.swift:22:13: warning: let 'rw' is not concurrency-safe because non-'Sendable' type '(dso: UnsafeMutableRawPointer, log: OSLog)' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // Feedback filed: https://gist.github.com/stephencelis/a8d06383ed6ccde3e5ef5d1b3ad52bbc
21 | @available(iOS 10.0, *)
22 | private let rw = (
| |- warning: let 'rw' is not concurrency-safe because non-'Sendable' type '(dso: UnsafeMutableRawPointer, log: OSLog)' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rw' 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 | dso: { () -> UnsafeMutableRawPointer in
24 | let count = _dyld_image_count()
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:49:17: warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: generic class 'ThreadsafeArray' does not conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
47 | set(newValue) {
48 | queue.async(flags: .barrier) {
49 | self.array[index] = newValue!
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
50 | }
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:49:37: warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
47 | set(newValue) {
48 | queue.async(flags: .barrier) {
49 | self.array[index] = newValue!
| `- warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
50 | }
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:58:13: warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: generic class 'ThreadsafeArray' does not conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
56 | public func append(_ newValue: Value) {
57 | queue.async(flags: .barrier) {
58 | self.array.append(newValue)
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:58:31: warning: capture of 'newValue' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
56 | public func append(_ newValue: Value) {
57 | queue.async(flags: .barrier) {
58 | self.array.append(newValue)
| `- warning: capture of 'newValue' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:17: warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: generic class 'ThreadsafeDict' does not conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:27: warning: capture of 'index' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'index' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:36: warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:59:13: warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: generic class 'ThreadsafeDict' does not conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
57 | public func removeValue(forKey key: Key) {
58 | queue.async(flags: .barrier) {
59 | self.dict.removeValue(forKey: key)
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
60 | }
61 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:59:43: warning: capture of 'key' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
57 | public func removeValue(forKey key: Key) {
58 | queue.async(flags: .barrier) {
59 | self.dict.removeValue(forKey: key)
| `- warning: capture of 'key' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
60 | }
61 | }
[41/55] Compiling HSHelpers ThreadsafeDict.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/RuntimeWarning.swift:22:13: warning: let 'rw' is not concurrency-safe because non-'Sendable' type '(dso: UnsafeMutableRawPointer, log: OSLog)' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // Feedback filed: https://gist.github.com/stephencelis/a8d06383ed6ccde3e5ef5d1b3ad52bbc
21 | @available(iOS 10.0, *)
22 | private let rw = (
| |- warning: let 'rw' is not concurrency-safe because non-'Sendable' type '(dso: UnsafeMutableRawPointer, log: OSLog)' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rw' 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 | dso: { () -> UnsafeMutableRawPointer in
24 | let count = _dyld_image_count()
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:49:17: warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: generic class 'ThreadsafeArray' does not conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
47 | set(newValue) {
48 | queue.async(flags: .barrier) {
49 | self.array[index] = newValue!
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
50 | }
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:49:37: warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
47 | set(newValue) {
48 | queue.async(flags: .barrier) {
49 | self.array[index] = newValue!
| `- warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
50 | }
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:58:13: warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: generic class 'ThreadsafeArray' does not conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
56 | public func append(_ newValue: Value) {
57 | queue.async(flags: .barrier) {
58 | self.array.append(newValue)
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:58:31: warning: capture of 'newValue' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
56 | public func append(_ newValue: Value) {
57 | queue.async(flags: .barrier) {
58 | self.array.append(newValue)
| `- warning: capture of 'newValue' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:17: warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: generic class 'ThreadsafeDict' does not conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:27: warning: capture of 'index' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'index' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:36: warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:59:13: warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: generic class 'ThreadsafeDict' does not conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
57 | public func removeValue(forKey key: Key) {
58 | queue.async(flags: .barrier) {
59 | self.dict.removeValue(forKey: key)
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
60 | }
61 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:59:43: warning: capture of 'key' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
57 | public func removeValue(forKey key: Key) {
58 | queue.async(flags: .barrier) {
59 | self.dict.removeValue(forKey: key)
| `- warning: capture of 'key' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
60 | }
61 | }
[42/55] Compiling HSHelpers Vectors.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/RuntimeWarning.swift:22:13: warning: let 'rw' is not concurrency-safe because non-'Sendable' type '(dso: UnsafeMutableRawPointer, log: OSLog)' may have shared mutable state; this is an error in the Swift 6 language mode
20 | // Feedback filed: https://gist.github.com/stephencelis/a8d06383ed6ccde3e5ef5d1b3ad52bbc
21 | @available(iOS 10.0, *)
22 | private let rw = (
| |- warning: let 'rw' is not concurrency-safe because non-'Sendable' type '(dso: UnsafeMutableRawPointer, log: OSLog)' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rw' 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 | dso: { () -> UnsafeMutableRawPointer in
24 | let count = _dyld_image_count()
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:49:17: warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: generic class 'ThreadsafeArray' does not conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
47 | set(newValue) {
48 | queue.async(flags: .barrier) {
49 | self.array[index] = newValue!
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
50 | }
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:49:37: warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
47 | set(newValue) {
48 | queue.async(flags: .barrier) {
49 | self.array[index] = newValue!
| `- warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
50 | }
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:58:13: warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: generic class 'ThreadsafeArray' does not conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
56 | public func append(_ newValue: Value) {
57 | queue.async(flags: .barrier) {
58 | self.array.append(newValue)
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeArray<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeArray.swift:58:31: warning: capture of 'newValue' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | /// Threadsafe array using reader/writer pattern
10 | /// Codeable/Decodable if the contained type is
11 | public class ThreadsafeArray<Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
12 |
13 | private var array: [Value]
:
56 | public func append(_ newValue: Value) {
57 | queue.async(flags: .barrier) {
58 | self.array.append(newValue)
| `- warning: capture of 'newValue' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:17: warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: generic class 'ThreadsafeDict' does not conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:27: warning: capture of 'index' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'index' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:50:36: warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
48 | set(newValue) {
49 | queue.async(flags: .barrier) {
50 | self.dict[index] = newValue
| `- warning: capture of 'newValue' with non-sendable type 'Value?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | }
52 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:59:13: warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: generic class 'ThreadsafeDict' does not conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
57 | public func removeValue(forKey key: Key) {
58 | queue.async(flags: .barrier) {
59 | self.dict.removeValue(forKey: key)
| `- warning: capture of 'self' with non-sendable type 'ThreadsafeDict<Key, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
60 | }
61 | }
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/ThreadsafeDict.swift:59:43: warning: capture of 'key' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
10 | /// Threadsafe Dictionary using reader/writer pattern
11 | /// Codeable/Decodable if the contained types are
12 | public class ThreadsafeDict<Key: Hashable, Value> {
| `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
13 |
14 | private var dict: [Key: Value]
:
57 | public func removeValue(forKey key: Key) {
58 | queue.async(flags: .barrier) {
59 | self.dict.removeValue(forKey: key)
| `- warning: capture of 'key' with non-sendable type 'Key' in a `@Sendable` closure; this is an error in the Swift 6 language mode
60 | }
61 | }
[43/55] Compiling HSHelpers PlatformValues.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:14:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
12 |
13 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
14 | extension Published: Decodable where Value: Decodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init(from decoder: Decoder) throws {
16 | let decoded = try Value(from: decoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:22:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
20 |
21 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
22 | extension Published: Encodable where Value: Encodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public func encode(to encoder: Encoder) throws {
24 | try unofficialValue.encode(to: encoder)
[44/55] Compiling HSHelpers Published+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:14:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
12 |
13 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
14 | extension Published: Decodable where Value: Decodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init(from decoder: Decoder) throws {
16 | let decoded = try Value(from: decoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:22:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
20 |
21 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
22 | extension Published: Encodable where Value: Encodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public func encode(to encoder: Encoder) throws {
24 | try unofficialValue.encode(to: encoder)
[45/55] Compiling HSHelpers Result+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:14:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
12 |
13 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
14 | extension Published: Decodable where Value: Decodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init(from decoder: Decoder) throws {
16 | let decoded = try Value(from: decoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:22:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
20 |
21 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
22 | extension Published: Encodable where Value: Encodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public func encode(to encoder: Encoder) throws {
24 | try unofficialValue.encode(to: encoder)
[46/55] Compiling HSHelpers SKError+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:14:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
12 |
13 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
14 | extension Published: Decodable where Value: Decodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init(from decoder: Decoder) throws {
16 | let decoded = try Value(from: decoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:22:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
20 |
21 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
22 | extension Published: Encodable where Value: Encodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public func encode(to encoder: Encoder) throws {
24 | try unofficialValue.encode(to: encoder)
[47/55] Compiling HSHelpers Data+MD5.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/DispatchQueue+HS.swift:27:13: warning: capture of 'work' with non-sendable type '@convention(block) () -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 | func asyncAfter(delay: TimeInterval, execute work: @escaping @convention(block) () -> Swift.Void) {
26 | self.asyncAfter(deadline: .now() + delay) {
27 | work()
| |- warning: capture of 'work' with non-sendable type '@convention(block) () -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 | }
29 | }
[48/55] Compiling HSHelpers Date+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/DispatchQueue+HS.swift:27:13: warning: capture of 'work' with non-sendable type '@convention(block) () -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 | func asyncAfter(delay: TimeInterval, execute work: @escaping @convention(block) () -> Swift.Void) {
26 | self.asyncAfter(deadline: .now() + delay) {
27 | work()
| |- warning: capture of 'work' with non-sendable type '@convention(block) () -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 | }
29 | }
[49/55] Compiling HSHelpers DispatchQueue+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/DispatchQueue+HS.swift:27:13: warning: capture of 'work' with non-sendable type '@convention(block) () -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 | func asyncAfter(delay: TimeInterval, execute work: @escaping @convention(block) () -> Swift.Void) {
26 | self.asyncAfter(deadline: .now() + delay) {
27 | work()
| |- warning: capture of 'work' with non-sendable type '@convention(block) () -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 | }
29 | }
[50/55] Compiling HSHelpers Equatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/DispatchQueue+HS.swift:27:13: warning: capture of 'work' with non-sendable type '@convention(block) () -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 | func asyncAfter(delay: TimeInterval, execute work: @escaping @convention(block) () -> Swift.Void) {
26 | self.asyncAfter(deadline: .now() + delay) {
27 | work()
| |- warning: capture of 'work' with non-sendable type '@convention(block) () -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 | }
29 | }
[51/55] Compiling HSHelpers FileManager+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/DispatchQueue+HS.swift:27:13: warning: capture of 'work' with non-sendable type '@convention(block) () -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 | func asyncAfter(delay: TimeInterval, execute work: @escaping @convention(block) () -> Swift.Void) {
26 | self.asyncAfter(deadline: .now() + delay) {
27 | work()
| |- warning: capture of 'work' with non-sendable type '@convention(block) () -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 | }
29 | }
[52/55] Compiling HSHelpers Build.swift
[53/55] Compiling HSHelpers Filetypes.swift
[54/55] Compiling HSHelpers HSColor+SwiftUI.swift
[55/55] Compiling HSHelpers HSColour.swift
[56/87] Compiling HSUIKit UIViewController+HS.swift
[57/87] Compiling HSUIKit UIViewController+Preview.swift
[58/89] Compiling HSUIKit UIUserInterfaceIdiom+HS.swift
[59/89] Compiling HSUIKit UIView+HS.swift
[60/89] Compiling HSUIKit UIViewController+Alert.swift
[61/89] Compiling HSUIKit UIViewController+Email.swift
[62/89] Compiling HSUIKit ColorCompatibility.swift
[63/89] Compiling HSUIKit UIAlertController+HS.swift
[64/89] Compiling HSUIKit UIImageView+HS.swift
[65/89] Compiling HSUIKit UILabel+HS.swift
[66/89] Compiling HSUIKit UIBarButtonItem+HS.swift
[67/89] Compiling HSUIKit UIButton+HS.swift
[68/89] Compiling HSUIKit UIEdgeInsets+HS.swift
[69/89] Compiling HSUIKit UIFont+HS.swift
[70/89] Compiling HSUIKit UIColor+HS.swift
[71/89] Compiling HSUIKit UIDevice+HS.swift
[72/89] Emitting module HSUIKit
[73/89] Compiling HSAppKit NSDocument+SaveCompletion.swift
[74/89] Compiling HSAppKit NSGraphicsContext+HS.swift
[75/89] Compiling HSUIKit UIViewController+Safari.swift
[76/89] Compiling HSUIKit UIViewController+Share.swift
[77/89] Compiling HSAppKit NSWindow+HS.swift
[78/89] Compiling HSAppKit NSViewController+HS.swift
[79/90] Compiling HSAppKit NSView+NibLoadable.swift
[80/90] Compiling HSAppKit NSScreen+HS.swift
[81/90] Compiling HSAppKit NSView+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSAppKit/NSView+HS.swift:47:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
45 | return ComparisonResult.orderedSame
46 | }
47 | }, context: &theView)
| `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/HSAppKit/NSView+HS.swift:63:21: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
61 | return ComparisonResult.orderedSame
62 | }
63 | }, context: &theView)
| `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
64 | }
65 |
[82/90] Compiling HSAppKit NSImage+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSAppKit/NSDocument+SaveCompletion.swift:31:13: warning: var 'NSDocSaveCompletionAssociatedObjectHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | // swiftlint:disable:next identifier_name
31 | private var NSDocSaveCompletionAssociatedObjectHandle: UInt8 = 0
| |- warning: var 'NSDocSaveCompletionAssociatedObjectHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NSDocSaveCompletionAssociatedObjectHandle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NSDocSaveCompletionAssociatedObjectHandle' 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
32 |
33 | public extension NSDocument {
/Users/admin/builder/spi-builder-workspace/Sources/HSAppKit/NSDocument+SaveCompletion.swift:21:14: warning: main actor-isolated property 'saveCompletionHolder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 |
18 | @objc
19 | func document(_ doc: NSDocument?, didSave: Bool, contextInfo: UnsafeMutableRawPointer?) {
| `- note: add '@MainActor' to make instance method 'document(_:didSave:contextInfo:)' part of global actor 'MainActor'
20 | completion(didSave, contextInfo)
21 | doc?.saveCompletionHolder = nil
| `- warning: main actor-isolated property 'saveCompletionHolder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
:
40 | }
41 |
42 | fileprivate var saveCompletionHolder: SaveCompletionHolder? {
| `- note: mutation of this property is only permitted within the actor
43 | get {
44 | return objc_getAssociatedObject(self, &NSDocSaveCompletionAssociatedObjectHandle) as? SaveCompletionHolder
/Users/admin/builder/spi-builder-workspace/Sources/HSAppKit/NSDocument+SaveCompletion.swift:31:13: warning: var 'NSDocSaveCompletionAssociatedObjectHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | // swiftlint:disable:next identifier_name
31 | private var NSDocSaveCompletionAssociatedObjectHandle: UInt8 = 0
| |- warning: var 'NSDocSaveCompletionAssociatedObjectHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NSDocSaveCompletionAssociatedObjectHandle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NSDocSaveCompletionAssociatedObjectHandle' 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
32 |
33 | public extension NSDocument {
/Users/admin/builder/spi-builder-workspace/Sources/HSAppKit/NSDocument+SaveCompletion.swift:21:14: warning: main actor-isolated property 'saveCompletionHolder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 |
18 | @objc
19 | func document(_ doc: NSDocument?, didSave: Bool, contextInfo: UnsafeMutableRawPointer?) {
| `- note: add '@MainActor' to make instance method 'document(_:didSave:contextInfo:)' part of global actor 'MainActor'
20 | completion(didSave, contextInfo)
21 | doc?.saveCompletionHolder = nil
| `- warning: main actor-isolated property 'saveCompletionHolder' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
:
40 | }
41 |
42 | fileprivate var saveCompletionHolder: SaveCompletionHolder? {
| `- note: mutation of this property is only permitted within the actor
43 | get {
44 | return objc_getAssociatedObject(self, &NSDocSaveCompletionAssociatedObjectHandle) as? SaveCompletionHolder
[89/90] Emitting module HSAppKit
/Users/admin/builder/spi-builder-workspace/Sources/HSAppKit/NSDocument+SaveCompletion.swift:31:13: warning: var 'NSDocSaveCompletionAssociatedObjectHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | // swiftlint:disable:next identifier_name
31 | private var NSDocSaveCompletionAssociatedObjectHandle: UInt8 = 0
| |- warning: var 'NSDocSaveCompletionAssociatedObjectHandle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NSDocSaveCompletionAssociatedObjectHandle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NSDocSaveCompletionAssociatedObjectHandle' 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
32 |
33 | public extension NSDocument {
[90/90] Compiling HSAppKit PresentedNSViewController.swift
Build complete! (15.75s)
Build complete.
{
"dependencies" : [
{
"identity" : "time",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/dreymonde/Time.git"
}
],
"manifest_display_name" : "HSHelpers",
"name" : "HSHelpers",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "tvos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "HSHelpers",
"targets" : [
"HSHelpers"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HSAppKit",
"targets" : [
"HSAppKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HSUIKit",
"targets" : [
"HSUIKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "HSTime",
"targets" : [
"HSTime"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "HSUIKit",
"module_type" : "SwiftTarget",
"name" : "HSUIKit",
"path" : "Sources/HSUIKit",
"product_memberships" : [
"HSUIKit"
],
"sources" : [
"Types/ColorCompatibility.swift",
"UIAlertController+HS.swift",
"UIBarButtonItem+HS.swift",
"UIButton+HS.swift",
"UIColor+HS.swift",
"UIDevice+HS.swift",
"UIEdgeInsets+HS.swift",
"UIFont+HS.swift",
"UIImageView+HS.swift",
"UILabel+HS.swift",
"UIStackView+HS.swift",
"UITextView+HS.swift",
"UIUserInterfaceIdiom+HS.swift",
"UIView+HS.swift",
"UIViewController+Alert.swift",
"UIViewController+Email.swift",
"UIViewController+HS.swift",
"UIViewController+Preview.swift",
"UIViewController+Safari.swift",
"UIViewController+Share.swift"
],
"target_dependencies" : [
"HSHelpers"
],
"type" : "library"
},
{
"c99name" : "HSTime",
"module_type" : "SwiftTarget",
"name" : "HSTime",
"path" : "Sources/HSTime",
"product_dependencies" : [
"Time"
],
"product_memberships" : [
"HSTime"
],
"sources" : [
"Time+HS.swift"
],
"type" : "library"
},
{
"c99name" : "HSHelpersTests",
"module_type" : "SwiftTarget",
"name" : "HSHelpersTests",
"path" : "Tests/HSHelpersTests",
"sources" : [
"FloatConvertibleTests.swift",
"PublishedCodeableTests.swift",
"StringTests.swift",
"URLComponentsTests.swift"
],
"target_dependencies" : [
"HSHelpers"
],
"type" : "test"
},
{
"c99name" : "HSHelpers",
"module_type" : "SwiftTarget",
"name" : "HSHelpers",
"path" : "Sources/HSHelpers",
"product_memberships" : [
"HSHelpers",
"HSAppKit",
"HSUIKit"
],
"sources" : [
"AnyHashable+HS.swift",
"Array+HS.swift",
"Bundle+HS.swift",
"CGColor+HS.swift",
"CGImage+HS.swift",
"CGImageSource+HS.swift",
"CGRect+HS.swift",
"ClosedRange+HS.swift",
"Comparable+clamp.swift",
"Data+HS.swift",
"Data+MD5.swift",
"Date+HS.swift",
"DispatchQueue+HS.swift",
"Equatable.swift",
"FileManager+HS.swift",
"FloatConvertible.swift",
"Int.swift",
"JSONEncoder+HS.swift",
"NSMutableAttributedString+HS.swift",
"NSRegularExpression+HS.swift",
"NSTextCheckingResult+HS.swift",
"Number+PositiveModulus.swift",
"Optional+HS.swift",
"PlatformValues.swift",
"Published+Codable.swift",
"Result+HS.swift",
"SKError+HS.swift",
"SKProduct+HS.swift",
"String+HS.swift",
"String+MD5.swift",
"Types/Aliases.swift",
"Types/Build.swift",
"Types/Filetypes.swift",
"Types/HSColor+SwiftUI.swift",
"Types/HSColour.swift",
"Types/RuntimeWarning.swift",
"Types/ThreadsafeArray.swift",
"Types/ThreadsafeDict.swift",
"Types/Vectors.swift",
"Types/WeakTimer.swift",
"URL+HS.swift",
"URLComponents+HS.swift",
"WKWebView+HS.swift"
],
"type" : "library"
},
{
"c99name" : "HSAppKit",
"module_type" : "SwiftTarget",
"name" : "HSAppKit",
"path" : "Sources/HSAppKit",
"product_memberships" : [
"HSAppKit"
],
"sources" : [
"CGDirectDisplayID+HS.swift",
"HoverView.swift",
"NSAlert+HS.swift",
"NSButton+HS.swift",
"NSDocument+SaveCompletion.swift",
"NSGraphicsContext+HS.swift",
"NSImage+HS.swift",
"NSScreen+HS.swift",
"NSView+HS.swift",
"NSView+NibLoadable.swift",
"NSViewController+HS.swift",
"NSWindow+HS.swift",
"PresentedNSViewController.swift"
],
"target_dependencies" : [
"HSHelpers"
],
"type" : "library"
}
],
"tools_version" : "5.2"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/confusedvorlon/hshelpers/0.3.5
Repository: ConfusedVorlon/HSHelpers
Swift version used: 6.0
Target: HSHelpers
Extracting symbol information for 'HSHelpers'...
Finished extracting symbol information for 'HSHelpers'. (6.58s)
Building documentation for 'HSHelpers'...
warning: Parameter 'paragraphSpacing' is missing documentation
--> Sources/HSHelpers/NSMutableAttributedString+HS.swift:105:41-105:41
103 | /// Sets line spacing - but actually replaces whole paragraph style
104 | ///
105 + /// - Parameter lineSpacing: spacing
| ╰─suggestion: Document 'paragraphSpacing' parameter
106 | func set(lineSpacing: CGFloat, paragraphSpacing: CGFloat? = nil) {
107 |
warning: Parameter 'address' not found in instance method declaration
--> Sources/HSHelpers/WKWebView+HS.swift:27:9-27:37
25 | /// Load a url
26 | ///
27 + /// - Parameter address: web url
| ╰─suggestion: Remove 'address' parameter documentation
28 | func load(url: URL) {
29 | let myRequest = URLRequest(url: url)
warning: Parameter 'url' is missing documentation
--> Sources/HSHelpers/WKWebView+HS.swift:27:37-27:37
25 | /// Load a url
26 | ///
27 + /// - Parameter address: web url
| ╰─suggestion: Document 'url' parameter
28 | func load(url: URL) {
29 | let myRequest = URLRequest(url: url)Finished building documentation for 'HSHelpers' (0.31s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/confusedvorlon/hshelpers/0.3.5
Fetching https://github.com/swiftlang/swift-docc-plugin
Updating https://github.com/dreymonde/Time.git
Updated https://github.com/dreymonde/Time.git (0.47s)
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.32s)
Computing version for https://github.com/dreymonde/Time.git
Computed https://github.com/dreymonde/Time.git at 1.1.0 (0.71s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.73s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3153] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.27s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.73s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit SemanticVersion.swift
[8/57] Compiling SymbolKit AccessControl.swift
[9/57] Compiling SymbolKit Availability.swift
[10/57] Compiling SymbolKit AvailabilityItem.swift
[11/57] Compiling SymbolKit Domain.swift
[12/57] Compiling SymbolKit Mixin+Equals.swift
[13/57] Compiling SymbolKit Mixin+Hash.swift
[14/57] Compiling SymbolKit Mixin.swift
[15/57] Compiling SymbolKit LineList.swift
[16/57] Compiling SymbolKit Position.swift
[17/57] Compiling SymbolKit Names.swift
[18/57] Compiling SymbolKit SPI.swift
[19/57] Compiling SymbolKit Snippet.swift
[20/57] Compiling SymbolKit Extension.swift
[21/57] Compiling SymbolKit DeclarationFragments.swift
[22/57] Compiling SymbolKit Fragment.swift
[23/57] Compiling SymbolKit FragmentKind.swift
[24/57] Compiling SymbolKit FunctionParameter.swift
[25/57] Compiling SymbolKit FunctionSignature.swift
[26/57] Compiling SymbolKit Identifier.swift
[27/57] Compiling SymbolKit KindIdentifier.swift
[28/57] Compiling SymbolKit Location.swift
[29/57] Compiling SymbolKit Mutability.swift
[30/57] Compiling SymbolKit Relationship.swift
[31/57] Compiling SymbolKit RelationshipKind.swift
[32/57] Compiling SymbolKit SourceOrigin.swift
[33/57] Compiling SymbolKit GenericConstraints.swift
[34/57] Compiling SymbolKit Swift.swift
[35/57] Compiling SymbolKit SourceRange.swift
[36/57] Compiling SymbolKit Metadata.swift
[37/57] Compiling SymbolKit Module.swift
[38/57] Compiling SymbolKit OperatingSystem.swift
[39/57] Compiling SymbolKit Platform.swift
[40/57] Compiling SymbolKit GenericConstraint.swift
[41/57] Compiling SymbolKit GenericParameter.swift
[42/57] Compiling SymbolKit Generics.swift
[43/57] Compiling SymbolKit Namespace.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract SnippetBuildCommand.swift
[56/61] Emitting module snippet_extract
[57/61] Compiling snippet_extract URL+Status.swift
[58/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (5.03s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/41] Compiling HSHelpers AnyHashable+HS.swift
[3/41] Compiling HSHelpers Array+HS.swift
[4/41] Compiling HSHelpers Bundle+HS.swift
[5/41] Compiling HSHelpers CGColor+HS.swift
[6/41] Compiling HSHelpers CGImage+HS.swift
[7/41] Compiling HSHelpers CGImageSource+HS.swift
[8/41] Compiling HSHelpers CGRect+HS.swift
[9/41] Compiling HSHelpers ClosedRange+HS.swift
[10/41] Compiling HSHelpers Comparable+clamp.swift
[11/41] Compiling HSHelpers Data+HS.swift
[12/45] Compiling HSHelpers RuntimeWarning.swift
[13/45] Compiling HSHelpers ThreadsafeArray.swift
[14/45] Compiling HSHelpers ThreadsafeDict.swift
[15/45] Compiling HSHelpers Vectors.swift
[16/45] Compiling HSHelpers NSRegularExpression+HS.swift
[17/45] Compiling HSHelpers NSTextCheckingResult+HS.swift
[18/45] Compiling HSHelpers Number+PositiveModulus.swift
[19/45] Compiling HSHelpers Optional+HS.swift
[20/45] Emitting module HSHelpers
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:14:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
12 |
13 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
14 | extension Published: Decodable where Value: Decodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init(from decoder: Decoder) throws {
16 | let decoded = try Value(from: decoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:22:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
20 |
21 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
22 | extension Published: Encodable where Value: Encodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public func encode(to encoder: Encoder) throws {
24 | try unofficialValue.encode(to: encoder)
[21/45] Compiling HSHelpers PlatformValues.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:14:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
12 |
13 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
14 | extension Published: Decodable where Value: Decodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init(from decoder: Decoder) throws {
16 | let decoded = try Value(from: decoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:22:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
20 |
21 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
22 | extension Published: Encodable where Value: Encodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public func encode(to encoder: Encoder) throws {
24 | try unofficialValue.encode(to: encoder)
[22/45] Compiling HSHelpers Published+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:14:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
12 |
13 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
14 | extension Published: Decodable where Value: Decodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init(from decoder: Decoder) throws {
16 | let decoded = try Value(from: decoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:22:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
20 |
21 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
22 | extension Published: Encodable where Value: Encodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public func encode(to encoder: Encoder) throws {
24 | try unofficialValue.encode(to: encoder)
[23/45] Compiling HSHelpers Result+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:14:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
12 |
13 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
14 | extension Published: Decodable where Value: Decodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init(from decoder: Decoder) throws {
16 | let decoded = try Value(from: decoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:22:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
20 |
21 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
22 | extension Published: Encodable where Value: Encodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public func encode(to encoder: Encoder) throws {
24 | try unofficialValue.encode(to: encoder)
[24/45] Compiling HSHelpers SKError+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:14:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
12 |
13 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
14 | extension Published: Decodable where Value: Decodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | public init(from decoder: Decoder) throws {
16 | let decoded = try Value(from: decoder)
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Published+Codable.swift:22:1: warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
20 |
21 | @available(macOS 10.15,iOS 13.0,tvOS 13.0, *)
22 | extension Published: Encodable where Value: Encodable {
| |- warning: extension declares a conformance of imported type 'Published' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'Combine' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public func encode(to encoder: Encoder) throws {
24 | try unofficialValue.encode(to: encoder)
[25/45] Compiling HSHelpers Build.swift
[26/45] Compiling HSHelpers Filetypes.swift
[27/45] Compiling HSHelpers HSColor+SwiftUI.swift
[28/45] Compiling HSHelpers HSColour.swift
[29/45] Compiling HSHelpers Data+MD5.swift
[30/45] Compiling HSHelpers Date+HS.swift
[31/45] Compiling HSHelpers DispatchQueue+HS.swift
[32/45] Compiling HSHelpers Equatable.swift
[33/45] Compiling HSHelpers FileManager+HS.swift
[34/45] Compiling HSHelpers FloatConvertible.swift
[35/45] Compiling HSHelpers Int.swift
[36/45] Compiling HSHelpers JSONEncoder+HS.swift
[37/45] Compiling HSHelpers NSMutableAttributedString+HS.swift
[38/45] Compiling HSHelpers SKProduct+HS.swift
[39/45] Compiling HSHelpers String+HS.swift
[40/45] Compiling HSHelpers String+MD5.swift
[41/45] Compiling HSHelpers Aliases.swift
[42/45] Compiling HSHelpers WeakTimer.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
25 | }
26 | else {
[43/45] Compiling HSHelpers URL+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
25 | }
26 | else {
[44/45] Compiling HSHelpers URLComponents+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
25 | }
26 | else {
[45/45] Compiling HSHelpers WKWebView+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSHelpers/Types/WeakTimer.swift:24:59: warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | weakTimer.timer = Timer.scheduledTimer(withTimeInterval: interval,
23 | repeats: repeats,
24 | block: block)
| `- warning: converting function value of type '@MainActor (Timer) -> Void' to '@Sendable (Timer) -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
25 | }
26 | else {
Build of target: 'HSHelpers' complete! (1.67s)
Target: HSAppKit
Extracting symbol information for 'HSAppKit'...
Finished extracting symbol information for 'HSAppKit'. (2.08s)
Building documentation for 'HSAppKit'...
Finished building documentation for 'HSAppKit' (0.08s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/confusedvorlon/hshelpers/0.3.5
Building for debugging...
[0/3] Write swift-version--7754E27361AE5C74.txt
Build of product 'snippet-extract' complete! (0.20s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/14] Compiling HSAppKit NSWindow+HS.swift
[3/14] Compiling HSAppKit NSViewController+HS.swift
[4/15] Compiling HSAppKit NSScreen+HS.swift
[5/15] Compiling HSAppKit NSView+NibLoadable.swift
[6/15] Compiling HSAppKit NSDocument+SaveCompletion.swift
[7/15] Compiling HSAppKit NSGraphicsContext+HS.swift
[8/15] Compiling HSAppKit NSImage+HS.swift
[9/15] Compiling HSAppKit CGDirectDisplayID+HS.swift
[10/15] Compiling HSAppKit HoverView.swift
[11/15] Emitting module HSAppKit
[12/15] Compiling HSAppKit NSAlert+HS.swift
[13/15] Compiling HSAppKit NSButton+HS.swift
[14/15] Compiling HSAppKit NSView+HS.swift
/Users/admin/builder/spi-builder-workspace/Sources/HSAppKit/NSView+HS.swift:47:25: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
45 | return ComparisonResult.orderedSame
46 | }
47 | }, context: &theView)
| `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/HSAppKit/NSView+HS.swift:63:21: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
61 | return ComparisonResult.orderedSame
62 | }
63 | }, context: &theView)
| `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'NSView'; this is likely incorrect because 'NSView' may contain an object reference.
64 | }
65 |
[15/15] Compiling HSAppKit PresentedNSViewController.swift
Build of target: 'HSAppKit' complete! (1.67s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/confusedvorlon/hshelpers/0.3.5/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/confusedvorlon/hshelpers/0.3.5/linkable-paths.json
Target: HSTime
Extracting symbol information for 'HSTime'...
Finished extracting symbol information for 'HSTime'. (0.99s)
Building documentation for 'HSTime'...
Finished building documentation for 'HSTime' (0.05s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/confusedvorlon/hshelpers/0.3.5
Building for debugging...
[0/3] Write swift-version--7754E27361AE5C74.txt
Build of product 'snippet-extract' complete! (0.19s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/4] Compiling Time Time.swift
[3/4] Emitting module Time
[4/4] Compiling Time Time+Foundation.swift
[5/6] Compiling HSTime Time+HS.swift
[6/6] Emitting module HSTime
Build of target: 'HSTime' complete! (0.85s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/confusedvorlon/hshelpers/0.3.5/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/confusedvorlon/hshelpers/0.3.5/linkable-paths.json
1018
6 /Users/admin/builder/spi-builder-workspace/.docs/confusedvorlon/hshelpers/0.3.5
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/confusedvorlon/hshelpers/0.3.5
File count: 1018
Doc size: 6.0MB
Preparing doc bundle ...
Uploading prod-confusedvorlon-hshelpers-0.3.5-8c9b6dbf.zip to s3://spi-docs-inbox/prod-confusedvorlon-hshelpers-0.3.5-8c9b6dbf.zip
Copying... [14%]
Copying... [23%]
Copying... [33%]
Copying... [42%]
Copying... [52%]
Copying... [61%]
Copying... [70%]
Copying... [85%]
Copying... [94%]
Copying... [100%]
Done.