The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of UCLKit, reference main (823da0), with Swift 6.2 (beta) for macOS (SPM) on 17 Jun 2025 22:48:43 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tiferrei/UCLKit.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/tiferrei/UCLKit
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 823da01 Update LICENSE
Cloned https://github.com/tiferrei/UCLKit.git
Revision (git rev-parse @):
823da018a17d77852cf92841bef600bf7dc89657
SUCCESS checkout https://github.com/tiferrei/UCLKit.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/tiferrei/UCLKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-1EA4D86E10B52AF.txt
[4/7] Compiling RequestKit RequestKitSession.swift
[5/7] Compiling RequestKit JSONPostRouter.swift
[6/7] Compiling RequestKit Router.swift
[7/7] Emitting module RequestKit
[8/15] Compiling UCLKit UCLKit.swift
[9/15] Compiling UCLKit Search.swift
/Users/admin/builder/spi-builder-workspace/Source/UCLKit/Search.swift:77:6: warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
 75 |  - GET People router
 76 |  */
 77 | enum SearchRouter: Router {
    |      `- warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
 78 |     case searchPeople(Configuration, String)
 79 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/RequestKit/Sources/RequestKit/Router.swift:145:10: note: 'loadJSON(_:expectedResultType:completion:)' declared here
 61 |     func urlQuery(_ parameters: [String: Any]) -> [URLQueryItem]?
 62 |     func request(_ urlComponents: URLComponents, parameters: [String: Any]) -> URLRequest?
 63 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    |          `- note: requirement 'loadJSON(_:expectedResultType:completion:)' declared here
 64 |     func load<T: Codable>(_ session: RequestKitURLSession, dateDecodingStrategy: JSONDecoder.DateDecodingStrategy?, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
 65 |     func load<T: Codable>(_ session: RequestKitURLSession, decoder: JSONDecoder, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    :
143 |
144 |     @available(*, deprecated, message: "Plase use `load` method instead")
145 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession = URLSession.shared, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol? {
    |          `- note: 'loadJSON(_:expectedResultType:completion:)' declared here
146 |         return load(session, expectedResultType: expectedResultType, completion: completion)
147 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[10/15] Compiling UCLKit Time.swift
[11/15] Compiling UCLKit ErrorHandling.swift
[12/15] Compiling UCLKit Configuration.swift
[13/15] Compiling UCLKit DecodableToDictionary.swift
[14/15] Emitting module UCLKit
/Users/admin/builder/spi-builder-workspace/Source/UCLKit/RoomBookings.swift:292:6: warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
290 |  - GET Free Rooms router
291 | */
292 | enum RoomBookingsRouter: Router {
    |      `- warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
293 |     case readRooms(Configuration, String, String, String, String, Classification, String)
294 |     case readBookings(Configuration, String, String, String, String, String, String, String, String, String, String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/RequestKit/Sources/RequestKit/Router.swift:145:10: note: 'loadJSON(_:expectedResultType:completion:)' declared here
 61 |     func urlQuery(_ parameters: [String: Any]) -> [URLQueryItem]?
 62 |     func request(_ urlComponents: URLComponents, parameters: [String: Any]) -> URLRequest?
 63 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    |          `- note: requirement 'loadJSON(_:expectedResultType:completion:)' declared here
 64 |     func load<T: Codable>(_ session: RequestKitURLSession, dateDecodingStrategy: JSONDecoder.DateDecodingStrategy?, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
 65 |     func load<T: Codable>(_ session: RequestKitURLSession, decoder: JSONDecoder, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    :
143 |
144 |     @available(*, deprecated, message: "Plase use `load` method instead")
145 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession = URLSession.shared, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol? {
    |          `- note: 'loadJSON(_:expectedResultType:completion:)' declared here
146 |         return load(session, expectedResultType: expectedResultType, completion: completion)
147 |     }
/Users/admin/builder/spi-builder-workspace/Source/UCLKit/Search.swift:77:6: warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
 75 |  - GET People router
 76 |  */
 77 | enum SearchRouter: Router {
    |      `- warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
 78 |     case searchPeople(Configuration, String)
 79 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/RequestKit/Sources/RequestKit/Router.swift:145:10: note: 'loadJSON(_:expectedResultType:completion:)' declared here
 61 |     func urlQuery(_ parameters: [String: Any]) -> [URLQueryItem]?
 62 |     func request(_ urlComponents: URLComponents, parameters: [String: Any]) -> URLRequest?
 63 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    |          `- note: requirement 'loadJSON(_:expectedResultType:completion:)' declared here
 64 |     func load<T: Codable>(_ session: RequestKitURLSession, dateDecodingStrategy: JSONDecoder.DateDecodingStrategy?, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
 65 |     func load<T: Codable>(_ session: RequestKitURLSession, decoder: JSONDecoder, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    :
143 |
144 |     @available(*, deprecated, message: "Plase use `load` method instead")
145 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession = URLSession.shared, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol? {
    |          `- note: 'loadJSON(_:expectedResultType:completion:)' declared here
146 |         return load(session, expectedResultType: expectedResultType, completion: completion)
147 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[15/15] Compiling UCLKit RoomBookings.swift
/Users/admin/builder/spi-builder-workspace/Source/UCLKit/RoomBookings.swift:292:6: warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
290 |  - GET Free Rooms router
291 | */
292 | enum RoomBookingsRouter: Router {
    |      `- warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
293 |     case readRooms(Configuration, String, String, String, String, Classification, String)
294 |     case readBookings(Configuration, String, String, String, String, String, String, String, String, String, String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/RequestKit/Sources/RequestKit/Router.swift:145:10: note: 'loadJSON(_:expectedResultType:completion:)' declared here
 61 |     func urlQuery(_ parameters: [String: Any]) -> [URLQueryItem]?
 62 |     func request(_ urlComponents: URLComponents, parameters: [String: Any]) -> URLRequest?
 63 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    |          `- note: requirement 'loadJSON(_:expectedResultType:completion:)' declared here
 64 |     func load<T: Codable>(_ session: RequestKitURLSession, dateDecodingStrategy: JSONDecoder.DateDecodingStrategy?, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
 65 |     func load<T: Codable>(_ session: RequestKitURLSession, decoder: JSONDecoder, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    :
143 |
144 |     @available(*, deprecated, message: "Plase use `load` method instead")
145 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession = URLSession.shared, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol? {
    |          `- note: 'loadJSON(_:expectedResultType:completion:)' declared here
146 |         return load(session, expectedResultType: expectedResultType, completion: completion)
147 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Build complete! (6.14s)
Fetching https://github.com/nerdishbynature/RequestKit.git
[1/1554] Fetching requestkit
Fetched https://github.com/nerdishbynature/RequestKit.git from cache (0.86s)
Creating working copy for https://github.com/nerdishbynature/RequestKit.git
Working copy of https://github.com/nerdishbynature/RequestKit.git resolved at xcode-10.2 (eb41e20)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "requestkit",
      "requirement" : {
        "branch" : [
          "xcode-10.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nerdishbynature/RequestKit.git"
    }
  ],
  "manifest_display_name" : "UCLKit",
  "name" : "UCLKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "UCLKit",
      "targets" : [
        "UCLKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UCLKitTests",
      "module_type" : "SwiftTarget",
      "name" : "UCLKitTests",
      "path" : "Tests/UCLKitTests",
      "sources" : [
        "BookingTests.swift",
        "EquipmentTests.swift",
        "FreeRoomsTests.swift",
        "HelperToolsTests.swift",
        "ResourcesManager.swift",
        "RoomTests.swift",
        "SearchTests.swift",
        "TestHelper.swift",
        "TestURLSession.swift",
        "UCLKitTests.swift"
      ],
      "target_dependencies" : [
        "UCLKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "UCLKit",
      "module_type" : "SwiftTarget",
      "name" : "UCLKit",
      "path" : "Source/UCLKit",
      "product_dependencies" : [
        "RequestKit"
      ],
      "product_memberships" : [
        "UCLKit"
      ],
      "sources" : [
        "Configuration.swift",
        "DecodableToDictionary.swift",
        "ErrorHandling.swift",
        "RoomBookings.swift",
        "Search.swift",
        "Time.swift",
        "UCLKit.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
Done.