The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Typesense, reference master (0f6c55), with Swift 6.0 for Linux on 6 Nov 2024 00:06:26 UTC.

Swift 6 data race errors: 2

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/typesense/typesense-swift.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/typesense/typesense-swift
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 0f6c550 Merge pull request #39 from phiHero/conversation
Cloned https://github.com/typesense/typesense-swift.git
Revision (git rev-parse @):
0f6c550c627433d82b2f9698b1ed5c59490b56d2
SUCCESS checkout https://github.com/typesense/typesense-swift.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/typesense/typesense-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/Flight-School/AnyCodable
[1/782] Fetching anycodable
Fetched https://github.com/Flight-School/AnyCodable from cache (0.26s)
Computing version for https://github.com/Flight-School/AnyCodable
Computed https://github.com/Flight-School/AnyCodable at 0.6.7 (0.62s)
Creating working copy for https://github.com/Flight-School/AnyCodable
Working copy of https://github.com/Flight-School/AnyCodable resolved at 0.6.7
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/7] Emitting module AnyCodable
[5/7] Compiling AnyCodable AnyCodable.swift
[6/7] Compiling AnyCodable AnyDecodable.swift
[7/7] Compiling AnyCodable AnyEncodable.swift
[9/106] Compiling Typesense StopwordsSetDeleteSchema.swift
[10/106] Compiling Typesense StopwordsSetRetrieveSchema.swift
[11/106] Compiling Typesense StopwordsSetSchema.swift
[12/106] Compiling Typesense StopwordsSetUpsertSchema.swift
[13/106] Compiling Typesense StopwordsSetsRetrieveAllSchema.swift
[14/106] Compiling Typesense SuccessStatus.swift
[15/106] Compiling Typesense UpdateByFilterResponse.swift
[16/106] Compiling Typesense UpdateDocumentsByFilterParameters.swift
[17/106] Compiling Typesense VoiceQueryModelCollectionConfig.swift
[18/106] Compiling Typesense MultiSearch.swift
[19/106] Compiling Typesense Node.swift
[20/106] Compiling Typesense Operations.swift
[21/106] Compiling Typesense Override.swift
[22/119] Compiling Typesense Alias.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[23/119] Compiling Typesense Analytics.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[24/119] Compiling Typesense AnalyticsEvents.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[25/119] Compiling Typesense AnalyticsRule.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[26/119] Compiling Typesense AnalyticsRules.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[27/119] Compiling Typesense ApiCall.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[28/119] Compiling Typesense ApiKeys.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[29/119] Compiling Typesense Client.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[30/119] Compiling Typesense Collection.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[31/119] Compiling Typesense Collections.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[32/119] Compiling Typesense Configuration.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[33/119] Compiling Typesense ConversationModel.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[34/119] Compiling Typesense ConversationModels.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[35/119] Compiling Typesense Conversations.swift
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
[36/119] Compiling Typesense ApiKeySchema.swift
[37/119] Compiling Typesense ApiKeysResponse.swift
[38/119] Compiling Typesense ApiResponse.swift
[39/119] Compiling Typesense CollectionAlias.swift
[40/119] Compiling Typesense CollectionAliasSchema.swift
[41/119] Compiling Typesense CollectionAliasesResponse.swift
[42/119] Compiling Typesense CollectionResponse.swift
[43/119] Compiling Typesense CollectionSchema.swift
[44/119] Compiling Typesense CollectionUpdateSchema.swift
[45/119] Compiling Typesense ConversationModelCreateSchema.swift
[46/119] Compiling Typesense ConversationModelSchema.swift
[47/119] Compiling Typesense ConversationModelUpdateSchema.swift
[48/119] Compiling Typesense DebugRetrieveSchema.swift
[49/119] Compiling Typesense DeleteDocumentsParameters.swift
[50/119] Compiling Typesense Document.swift
[51/119] Compiling Typesense Documents.swift
[52/119] Compiling Typesense Errors.swift
[53/119] Compiling Typesense AnalyticsEventCreateResponse.swift
[54/119] Compiling Typesense AnalyticsEventCreateSchema.swift
[55/119] Compiling Typesense AnalyticsRuleDeleteResponse.swift
[56/119] Compiling Typesense AnalyticsRuleParameters.swift
[57/119] Compiling Typesense AnalyticsRuleParametersDestination.swift
[58/119] Compiling Typesense AnalyticsRuleParametersSource.swift
[59/119] Compiling Typesense AnalyticsRuleParametersSourceEvents.swift
[60/119] Compiling Typesense AnalyticsRuleSchema.swift
[61/119] Compiling Typesense AnalyticsRuleUpsertSchema.swift
[62/119] Compiling Typesense AnalyticsRulesRetrieveSchema.swift
[63/119] Compiling Typesense ApiKey.swift
[64/119] Compiling Typesense MultiSearchParameters.swift
[65/119] Compiling Typesense MultiSearchResult.swift
[66/119] Compiling Typesense MultiSearchSearchesParameter.swift
[67/119] Compiling Typesense PresetDeleteSchema.swift
[68/119] Compiling Typesense PresetSchema.swift
[69/119] Compiling Typesense PresetUpsertSchema.swift
[70/119] Compiling Typesense PresetValue.swift
[71/119] Compiling Typesense PresetsRetrieveSchema.swift
[72/119] Compiling Typesense ScopedKeyParameters.swift
[73/119] Compiling Typesense SearchGroupedHit.swift
[74/119] Compiling Typesense SearchHighlight.swift
[75/119] Compiling Typesense SearchOverride.swift
[76/119] Compiling Typesense SearchOverrideDeleteResponse.swift
[77/119] Compiling Typesense SearchOverrideExclude.swift
[78/119] Compiling Typesense DeleteDocumentsResponse.swift
[79/119] Compiling Typesense DocumentIndexParameters.swift
[80/119] Compiling Typesense ExportDocumentsParameters.swift
[81/119] Compiling Typesense FacetCounts.swift
[82/119] Compiling Typesense FacetCountsCounts.swift
[83/119] Compiling Typesense FacetCountsStats.swift
[84/119] Compiling Typesense Field.swift
[85/119] Compiling Typesense FieldEmbed.swift
[86/119] Compiling Typesense FieldEmbedModelConfig.swift
[87/119] Compiling Typesense HealthStatus.swift
[88/119] Compiling Typesense ImportDocumentsParameters.swift
[89/119] Compiling Typesense InlineResponse2002.swift
[90/119] Compiling Typesense ModelErrorResponse.swift
[91/119] Compiling Typesense MultiSearchCollectionParameters.swift
[92/119] Compiling Typesense SearchOverrideInclude.swift
[93/119] Compiling Typesense SearchOverrideRule.swift
[94/119] Compiling Typesense SearchOverrideSchema.swift
[95/119] Compiling Typesense SearchOverridesResponse.swift
[96/119] Compiling Typesense SearchParameters.swift
[97/119] Compiling Typesense SearchResult.swift
[98/119] Compiling Typesense SearchResultConversation.swift
[99/119] Compiling Typesense SearchResultHit.swift
[100/119] Compiling Typesense SearchResultRequestParams.swift
[101/119] Compiling Typesense SearchResultRequestParamsVoiceQuery.swift
[102/119] Compiling Typesense SearchSynonym.swift
[103/119] Compiling Typesense SearchSynonymSchema.swift
[104/119] Compiling Typesense SearchSynonymsResponse.swift
[105/119] Compiling Typesense SnapshotParameters.swift
[106/119] Compiling Typesense Overrides.swift
[107/119] Compiling Typesense Preset.swift
[108/119] Compiling Typesense Presets.swift
[109/119] Compiling Typesense RequestTypes.swift
[110/119] Compiling Typesense Coders.swift
[111/119] Compiling Typesense Enums.swift
[112/119] Compiling Typesense Logger.swift
[113/119] Compiling Typesense RequestNumber.swift
[114/119] Compiling Typesense Stopword.swift
[115/119] Compiling Typesense Stopwords.swift
[116/119] Compiling Typesense Synonyms.swift
[117/119] Compiling Typesense CreateURLQueryParams.swift
[118/119] Compiling Typesense Extensions.swift
[119/119] Emitting module Typesense
/host/spi-builder-workspace/Sources/Typesense/AnalyticsEvents.swift:7:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 |
 6 | public struct AnalyticsEvents {
 7 |     static var resourcePath: String = "\(Analytics.resourcePath)/events"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |     var apiCall: ApiCall
 9 |
/host/spi-builder-workspace/Sources/Typesense/AnalyticsRules.swift:9:16: warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | public struct AnalyticsRules {
 8 |     private var apiCall: ApiCall
 9 |     static var resourcePath: String = "\(Analytics.resourcePath)/rules"
   |                |- warning: static property 'resourcePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'resourcePath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'resourcePath' 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
10 |
11 |     init(apiCall: ApiCall) {
Build complete! (22.72s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "anycodable",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.6.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Flight-School/AnyCodable"
    }
  ],
  "manifest_display_name" : "Typesense",
  "name" : "Typesense",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "Typesense",
      "targets" : [
        "Typesense"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TypesenseTests",
      "module_type" : "SwiftTarget",
      "name" : "TypesenseTests",
      "path" : "Tests/TypesenseTests",
      "sources" : [
        "AnalyticsTests.swift",
        "ApiCallTests.swift",
        "ApiKeyTests.swift",
        "CollectionAliasTests.swift",
        "CollectionTests.swift",
        "ConfigurationTests.swift",
        "ConversationModelTests.swift",
        "CreateURLQueryParamsTests.swift",
        "DocumentTests.swift",
        "MultiSearchTests.swift",
        "OperationTests.swift",
        "OverrideTests.swift",
        "OverridesTests.swift",
        "PresetTests.swift",
        "PresetsTests.swift",
        "StopwordTests.swift",
        "StopwordsTests.swift",
        "SynonymTests.swift",
        "TestUtils.swift"
      ],
      "target_dependencies" : [
        "Typesense"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Typesense",
      "module_type" : "SwiftTarget",
      "name" : "Typesense",
      "path" : "Sources/Typesense",
      "product_dependencies" : [
        "AnyCodable"
      ],
      "product_memberships" : [
        "Typesense"
      ],
      "sources" : [
        "Alias.swift",
        "Analytics.swift",
        "AnalyticsEvents.swift",
        "AnalyticsRule.swift",
        "AnalyticsRules.swift",
        "ApiCall.swift",
        "ApiKeys.swift",
        "Client.swift",
        "Collection.swift",
        "Collections.swift",
        "Configuration.swift",
        "ConversationModel.swift",
        "ConversationModels.swift",
        "Conversations.swift",
        "Document.swift",
        "Documents.swift",
        "Errors.swift",
        "Models/AnalyticsEventCreateResponse.swift",
        "Models/AnalyticsEventCreateSchema.swift",
        "Models/AnalyticsRuleDeleteResponse.swift",
        "Models/AnalyticsRuleParameters.swift",
        "Models/AnalyticsRuleParametersDestination.swift",
        "Models/AnalyticsRuleParametersSource.swift",
        "Models/AnalyticsRuleParametersSourceEvents.swift",
        "Models/AnalyticsRuleSchema.swift",
        "Models/AnalyticsRuleUpsertSchema.swift",
        "Models/AnalyticsRulesRetrieveSchema.swift",
        "Models/ApiKey.swift",
        "Models/ApiKeySchema.swift",
        "Models/ApiKeysResponse.swift",
        "Models/ApiResponse.swift",
        "Models/CollectionAlias.swift",
        "Models/CollectionAliasSchema.swift",
        "Models/CollectionAliasesResponse.swift",
        "Models/CollectionResponse.swift",
        "Models/CollectionSchema.swift",
        "Models/CollectionUpdateSchema.swift",
        "Models/ConversationModelCreateSchema.swift",
        "Models/ConversationModelSchema.swift",
        "Models/ConversationModelUpdateSchema.swift",
        "Models/DebugRetrieveSchema.swift",
        "Models/DeleteDocumentsParameters.swift",
        "Models/DeleteDocumentsResponse.swift",
        "Models/DocumentIndexParameters.swift",
        "Models/ExportDocumentsParameters.swift",
        "Models/FacetCounts.swift",
        "Models/FacetCountsCounts.swift",
        "Models/FacetCountsStats.swift",
        "Models/Field.swift",
        "Models/FieldEmbed.swift",
        "Models/FieldEmbedModelConfig.swift",
        "Models/HealthStatus.swift",
        "Models/ImportDocumentsParameters.swift",
        "Models/InlineResponse2002.swift",
        "Models/ModelErrorResponse.swift",
        "Models/MultiSearchCollectionParameters.swift",
        "Models/MultiSearchParameters.swift",
        "Models/MultiSearchResult.swift",
        "Models/MultiSearchSearchesParameter.swift",
        "Models/PresetDeleteSchema.swift",
        "Models/PresetSchema.swift",
        "Models/PresetUpsertSchema.swift",
        "Models/PresetValue.swift",
        "Models/PresetsRetrieveSchema.swift",
        "Models/ScopedKeyParameters.swift",
        "Models/SearchGroupedHit.swift",
        "Models/SearchHighlight.swift",
        "Models/SearchOverride.swift",
        "Models/SearchOverrideDeleteResponse.swift",
        "Models/SearchOverrideExclude.swift",
        "Models/SearchOverrideInclude.swift",
        "Models/SearchOverrideRule.swift",
        "Models/SearchOverrideSchema.swift",
        "Models/SearchOverridesResponse.swift",
        "Models/SearchParameters.swift",
        "Models/SearchResult.swift",
        "Models/SearchResultConversation.swift",
        "Models/SearchResultHit.swift",
        "Models/SearchResultRequestParams.swift",
        "Models/SearchResultRequestParamsVoiceQuery.swift",
        "Models/SearchSynonym.swift",
        "Models/SearchSynonymSchema.swift",
        "Models/SearchSynonymsResponse.swift",
        "Models/SnapshotParameters.swift",
        "Models/StopwordsSetDeleteSchema.swift",
        "Models/StopwordsSetRetrieveSchema.swift",
        "Models/StopwordsSetSchema.swift",
        "Models/StopwordsSetUpsertSchema.swift",
        "Models/StopwordsSetsRetrieveAllSchema.swift",
        "Models/SuccessStatus.swift",
        "Models/UpdateByFilterResponse.swift",
        "Models/UpdateDocumentsByFilterParameters.swift",
        "Models/VoiceQueryModelCollectionConfig.swift",
        "MultiSearch.swift",
        "Node.swift",
        "Operations.swift",
        "Override.swift",
        "Overrides.swift",
        "Preset.swift",
        "Presets.swift",
        "RequestTypes.swift",
        "Shared/Coders.swift",
        "Shared/Enums.swift",
        "Shared/Logger.swift",
        "Shared/RequestNumber.swift",
        "Stopword.swift",
        "Stopwords.swift",
        "Synonyms.swift",
        "utils/CreateURLQueryParams.swift",
        "utils/Extensions.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.