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 Variablur, reference v1.1.0 (3fb459), with Swift 6.1 for macOS (SPM) on 28 Apr 2025 02:13:29 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/daprice/Variablur.git
Reference: v1.1.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/daprice/Variablur
 * tag               v1.1.0     -> FETCH_HEAD
HEAD is now at 3fb4592 in depth documentation of the shader; use UV coordinates to sample from the mask (no longer requires mask size to match the view size); add a version of the modifier that takes an `Image` directly
Cloned https://github.com/daprice/Variablur.git
Revision (git rev-parse @):
3fb45923b000353f6391a6f7ff64c68d2ded3e91
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/daprice/Variablur.git at v1.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": "variablur",
      "name": "Variablur",
      "url": "https://github.com/daprice/Variablur.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Variablur",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/daprice/Variablur.git
[1/130] Fetching variablur
Fetched https://github.com/daprice/Variablur.git from cache (0.76s)
Creating working copy for https://github.com/daprice/Variablur.git
Working copy of https://github.com/daprice/Variablur.git resolved at v1.1.0 (3fb4592)
warning: '.resolve-product-dependencies': dependency 'variablur' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/daprice/Variablur.git
https://github.com/daprice/Variablur.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Variablur",
  "name" : "Variablur",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "tvos",
      "version" : "17.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "17.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "Variablur",
      "targets" : [
        "Variablur"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Variablur",
      "module_type" : "SwiftTarget",
      "name" : "Variablur",
      "path" : "Sources/Variablur",
      "product_memberships" : [
        "Variablur"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Variablur/Blurs.metal",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "View+variableBlur.swift",
        "VisualEffect+variableBlur.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/3] Write sources
[1/3] Copying Blurs.metal
[2/3] Write swift-version-2F0A5646E1D333AE.txt
[4/7] Compiling Variablur VisualEffect+variableBlur.swift
[5/7] Compiling Variablur View+variableBlur.swift
/Users/admin/builder/spi-builder-workspace/Sources/Variablur/View+variableBlur.swift:65:6: warning: capture of 'maskRenderer' with non-sendable type '(GeometryProxy, inout GraphicsContext) -> Void' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 63 | 				verticalPassFirst: verticalPassFirst,
 64 | 				mask: Image(size: geometryProxy.size, renderer: { context in
 65 | 					maskRenderer(geometryProxy, &context)
    |      |- warning: capture of 'maskRenderer' with non-sendable type '(GeometryProxy, inout GraphicsContext) -> 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'
 66 | 				})
 67 | 			)
/Users/admin/builder/spi-builder-workspace/Sources/Variablur/View+variableBlur.swift:65:6: warning: capture of 'maskRenderer' with non-sendable type '(GeometryProxy, inout GraphicsContext) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
 63 | 				verticalPassFirst: verticalPassFirst,
 64 | 				mask: Image(size: geometryProxy.size, renderer: { context in
 65 | 					maskRenderer(geometryProxy, &context)
    |      |- warning: capture of 'maskRenderer' with non-sendable type '(GeometryProxy, inout GraphicsContext) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
    |      `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 66 | 				})
 67 | 			)
[6/7] Emitting module Variablur
[7/7] Compiling Variablur resource_bundle_accessor.swift
Build complete! (8.99s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Variablur",
  "name" : "Variablur",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "tvos",
      "version" : "17.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "17.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "Variablur",
      "targets" : [
        "Variablur"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Variablur",
      "module_type" : "SwiftTarget",
      "name" : "Variablur",
      "path" : "Sources/Variablur",
      "product_memberships" : [
        "Variablur"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Variablur/Blurs.metal",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "View+variableBlur.swift",
        "VisualEffect+variableBlur.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/daprice/variablur/v1.1.0
Repository:               daprice/Variablur
Swift version used:       6.1
Target:                   Variablur
Extracting symbol information for 'Variablur'...
Finished extracting symbol information for 'Variablur'. (5.22s)
Building documentation for 'Variablur'...
warning: 'SwiftUI' doesn't exist at '/Variablur'
  --> Documentation.md:19:5-19:12
17 | ### Applying variable blur to a view
18 |
19 + - ``SwiftUI/View/variableBlur(radius:maxSampleCount:verticalPassFirst:maskRenderer:)``
   |     ╰─suggestion: Replace 'SwiftUI' with 'SwiftUICore'
20 | - ``SwiftUI/View/variableBlur(radius:maxSampleCount:verticalPassFirst:mask:)``
21 |
warning: 'SwiftUI' doesn't exist at '/Variablur'
  --> Documentation.md:20:5-20:12
18 |
19 | - ``SwiftUI/View/variableBlur(radius:maxSampleCount:verticalPassFirst:maskRenderer:)``
20 + - ``SwiftUI/View/variableBlur(radius:maxSampleCount:verticalPassFirst:mask:)``
   |     ╰─suggestion: Replace 'SwiftUI' with 'SwiftUICore'
21 |
22 | ### Applying variable blur as a VisualEffect
warning: 'SwiftUI' doesn't exist at '/Variablur'
  --> Documentation.md:24:5-24:12
22 | ### Applying variable blur as a VisualEffect
23 |
24 + - ``SwiftUI/VisualEffect/variableBlur(radius:maxSampleCount:verticalPassFirst:mask:isEnabled:)``
   |     ╰─suggestion: Replace 'SwiftUI' with 'SwiftUICore'
warning: 'SwiftUI' doesn't exist at '/Variablur/SwiftUICore/VisualEffect/variableBlur(radius:maxSampleCount:verticalPassFirst:mask:isEnabled:)'
  --> ../VisualEffect+variableBlur.swift:18:88-18:95
16 | 	/// Applies a variable blur, with the blur radius at each pixel determined by a mask image.
17 | 	///
18 + 	/// - Tip: To automatically generate a mask image of the same size as the view, use ``SwiftUI/View/variableBlur(radius:maxSampleCount:verticalPassFirst:maskRenderer:)`` which creates the image from drawing instructions you provide to a `GraphicsContext`.
19 | 	///
20 | 	/// - Parameters:
Finished building documentation for 'Variablur' (0.12s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/daprice/variablur/v1.1.0
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.46s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (1.22s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.80s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.49s)
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
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Emitting module Snippets
[7/53] Compiling Snippets Snippet.swift
[8/53] Compiling Snippets SnippetParser.swift
[9/53] Compiling SymbolKit SourceRange.swift
[10/53] Compiling SymbolKit Metadata.swift
[11/53] Compiling SymbolKit Module.swift
[12/53] Compiling SymbolKit OperatingSystem.swift
[13/53] Compiling SymbolKit Platform.swift
[14/57] Compiling SymbolKit Relationship.swift
[15/57] Compiling SymbolKit RelationshipKind.swift
[16/57] Compiling SymbolKit SourceOrigin.swift
[17/57] Compiling SymbolKit GenericConstraints.swift
[18/57] Compiling SymbolKit Swift.swift
[19/57] Compiling SymbolKit GenericConstraint.swift
[20/57] Compiling SymbolKit GenericParameter.swift
[21/57] Compiling SymbolKit Generics.swift
[22/57] Compiling SymbolKit Namespace.swift
[23/57] Compiling SymbolKit Mixin+Equals.swift
[24/57] Compiling SymbolKit Mixin+Hash.swift
[25/57] Compiling SymbolKit Mixin.swift
[26/57] Compiling SymbolKit LineList.swift
[27/57] Compiling SymbolKit Position.swift
[28/57] Compiling SymbolKit SemanticVersion.swift
[29/57] Compiling SymbolKit AccessControl.swift
[30/57] Compiling SymbolKit Availability.swift
[31/57] Compiling SymbolKit AvailabilityItem.swift
[32/57] Compiling SymbolKit Domain.swift
[33/57] Emitting module SymbolKit
[34/57] Compiling SymbolKit DeclarationFragments.swift
[35/57] Compiling SymbolKit Fragment.swift
[36/57] Compiling SymbolKit FragmentKind.swift
[37/57] Compiling SymbolKit FunctionParameter.swift
[38/57] Compiling SymbolKit FunctionSignature.swift
[39/57] Compiling SymbolKit Identifier.swift
[40/57] Compiling SymbolKit KindIdentifier.swift
[41/57] Compiling SymbolKit Location.swift
[42/57] Compiling SymbolKit Mutability.swift
[43/57] Compiling SymbolKit Symbol.swift
[44/57] Compiling SymbolKit SymbolKind.swift
[45/57] Compiling SymbolKit SymbolGraph.swift
[46/57] Compiling SymbolKit GraphCollector.swift
[47/57] Compiling SymbolKit Names.swift
[48/57] Compiling SymbolKit SPI.swift
[49/57] Compiling SymbolKit Snippet.swift
[50/57] Compiling SymbolKit Extension.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.71s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/5] Compiling Variablur resource_bundle_accessor.swift
[3/5] Compiling Variablur VisualEffect+variableBlur.swift
[4/5] Emitting module Variablur
[5/5] Compiling Variablur View+variableBlur.swift
Build of target: 'Variablur' complete! (1.04s)
      68
2	/Users/admin/builder/spi-builder-workspace/.docs/daprice/variablur/v1.1.0
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/daprice/variablur/v1.1.0
File count: 68
Doc size:   2.0MB
Preparing doc bundle ...
Uploading prod-daprice-variablur-v1.1.0-307175fc.zip to s3://spi-docs-inbox/prod-daprice-variablur-v1.1.0-307175fc.zip
Copying... [11%]
Copying... [21%]
Copying... [32%]
Copying... [42%]
Copying... [53%]
Copying... [64%]
Copying... [74%]
Copying... [85%]
Copying... [95%]
Copying... [100%]
Done.