fastlane 2.196.0 → 2.199.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +94 -94
  3. data/cert/lib/cert/runner.rb +5 -2
  4. data/deliver/lib/assets/ScreenshotsHelp +29 -6
  5. data/deliver/lib/deliver/app_screenshot.rb +5 -4
  6. data/deliver/lib/deliver/app_screenshot_iterator.rb +1 -1
  7. data/deliver/lib/deliver/runner.rb +1 -1
  8. data/deliver/lib/deliver/upload_screenshots.rb +1 -1
  9. data/fastlane/lib/.DS_Store +0 -0
  10. data/fastlane/lib/fastlane/.DS_Store +0 -0
  11. data/fastlane/lib/fastlane/actions/.DS_Store +0 -0
  12. data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +1 -1
  13. data/fastlane/lib/fastlane/actions/download_dsyms.rb +61 -45
  14. data/fastlane/lib/fastlane/actions/ensure_xcode_version.rb +1 -1
  15. data/fastlane/lib/fastlane/actions/get_push_certificate.rb +1 -1
  16. data/fastlane/lib/fastlane/actions/get_version_number.rb +6 -2
  17. data/fastlane/lib/fastlane/actions/notarize.rb +29 -11
  18. data/fastlane/lib/fastlane/actions/set_github_release.rb +11 -5
  19. data/fastlane/lib/fastlane/actions/update_code_signing_settings.rb +18 -1
  20. data/fastlane/lib/fastlane/actions/xcversion.rb +18 -3
  21. data/fastlane/lib/fastlane/documentation/docs_generator.rb +17 -12
  22. data/fastlane/lib/fastlane/version.rb +1 -1
  23. data/fastlane/swift/Deliverfile.swift +1 -1
  24. data/fastlane/swift/DeliverfileProtocol.swift +1 -1
  25. data/fastlane/swift/Fastlane.swift +66 -21
  26. data/fastlane/swift/Gymfile.swift +1 -1
  27. data/fastlane/swift/GymfileProtocol.swift +5 -1
  28. data/fastlane/swift/Matchfile.swift +1 -1
  29. data/fastlane/swift/MatchfileProtocol.swift +1 -1
  30. data/fastlane/swift/Precheckfile.swift +1 -1
  31. data/fastlane/swift/PrecheckfileProtocol.swift +1 -1
  32. data/fastlane/swift/Runner.swift +3 -7
  33. data/fastlane/swift/Scanfile.swift +1 -1
  34. data/fastlane/swift/ScanfileProtocol.swift +3 -3
  35. data/fastlane/swift/Screengrabfile.swift +1 -1
  36. data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
  37. data/fastlane/swift/Snapshotfile.swift +1 -1
  38. data/fastlane/swift/SnapshotfileProtocol.swift +1 -1
  39. data/fastlane/swift/formatting/Brewfile.lock.json +26 -21
  40. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +38 -7
  41. data/frameit/lib/frameit/editor.rb +16 -18
  42. data/frameit/lib/frameit/trim_box.rb +6 -0
  43. data/gym/lib/gym/generators/build_command_generator.rb +1 -1
  44. data/gym/lib/gym/options.rb +6 -0
  45. data/match/lib/match/nuke.rb +79 -1
  46. data/match/lib/match/spaceship_ensure.rb +1 -0
  47. data/pem/lib/pem/manager.rb +29 -6
  48. data/pem/lib/pem/options.rb +9 -0
  49. data/pilot/lib/pilot/build_manager.rb +1 -1
  50. data/scan/lib/scan/options.rb +2 -2
  51. data/scan/lib/scan/runner.rb +1 -1
  52. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +1 -1
  53. data/spaceship/lib/spaceship/client.rb +35 -15
  54. data/spaceship/lib/spaceship/commands_generator.rb +1 -1
  55. data/spaceship/lib/spaceship/connect_api/models/build.rb +4 -2
  56. data/spaceship/lib/spaceship/connect_api/models/build_bundle.rb +59 -0
  57. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +3 -0
  58. data/spaceship/lib/spaceship/connect_api/response.rb +13 -0
  59. data/spaceship/lib/spaceship/connect_api.rb +1 -0
  60. data/spaceship/lib/spaceship/globals.rb +9 -0
  61. data/spaceship/lib/spaceship/spaceauth_runner.rb +1 -1
  62. data/trainer/lib/.DS_Store +0 -0
  63. metadata +24 -18
@@ -1322,6 +1322,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1322
1322
  - analyzeBuildTime: Analyze the project build time and store the output in 'culprits.txt' file
1323
1323
  - xcprettyUtf: Have xcpretty use unicode encoding when reporting builds
1324
1324
  - skipProfileDetection: Do not try to build a profile mapping from the xcodeproj. Match or a manually provided mapping should be used
1325
+ - xcodebuildCommand: Allows for override of the default `xcodebuild` command
1325
1326
  - clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
1326
1327
  - skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
1327
1328
  - disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
@@ -1374,6 +1375,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1374
1375
  analyzeBuildTime: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
1375
1376
  xcprettyUtf: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
1376
1377
  skipProfileDetection: OptionalConfigValue<Bool> = .fastlaneDefault(false),
1378
+ xcodebuildCommand: String = "xcodebuild",
1377
1379
  clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
1378
1380
  skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
1379
1381
  disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
@@ -1422,6 +1424,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1422
1424
  let analyzeBuildTimeArg = analyzeBuildTime.asRubyArgument(name: "analyze_build_time", type: nil)
1423
1425
  let xcprettyUtfArg = xcprettyUtf.asRubyArgument(name: "xcpretty_utf", type: nil)
1424
1426
  let skipProfileDetectionArg = skipProfileDetection.asRubyArgument(name: "skip_profile_detection", type: nil)
1427
+ let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
1425
1428
  let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
1426
1429
  let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
1427
1430
  let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
@@ -1469,6 +1472,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1469
1472
  analyzeBuildTimeArg,
1470
1473
  xcprettyUtfArg,
1471
1474
  skipProfileDetectionArg,
1475
+ xcodebuildCommandArg,
1472
1476
  clonedSourcePackagesPathArg,
1473
1477
  skipPackageDependenciesResolutionArg,
1474
1478
  disablePackageAutomaticUpdatesArg,
@@ -1524,6 +1528,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1524
1528
  - analyzeBuildTime: Analyze the project build time and store the output in 'culprits.txt' file
1525
1529
  - xcprettyUtf: Have xcpretty use unicode encoding when reporting builds
1526
1530
  - skipProfileDetection: Do not try to build a profile mapping from the xcodeproj. Match or a manually provided mapping should be used
1531
+ - xcodebuildCommand: Allows for override of the default `xcodebuild` command
1527
1532
  - clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
1528
1533
  - skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
1529
1534
  - disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
@@ -1573,6 +1578,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1573
1578
  analyzeBuildTime: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
1574
1579
  xcprettyUtf: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
1575
1580
  skipProfileDetection: OptionalConfigValue<Bool> = .fastlaneDefault(false),
1581
+ xcodebuildCommand: String = "xcodebuild",
1576
1582
  clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
1577
1583
  skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
1578
1584
  disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
@@ -1618,6 +1624,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1618
1624
  let analyzeBuildTimeArg = analyzeBuildTime.asRubyArgument(name: "analyze_build_time", type: nil)
1619
1625
  let xcprettyUtfArg = xcprettyUtf.asRubyArgument(name: "xcpretty_utf", type: nil)
1620
1626
  let skipProfileDetectionArg = skipProfileDetection.asRubyArgument(name: "skip_profile_detection", type: nil)
1627
+ let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
1621
1628
  let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
1622
1629
  let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
1623
1630
  let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
@@ -1662,6 +1669,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1662
1669
  analyzeBuildTimeArg,
1663
1670
  xcprettyUtfArg,
1664
1671
  skipProfileDetectionArg,
1672
+ xcodebuildCommandArg,
1665
1673
  clonedSourcePackagesPathArg,
1666
1674
  skipPackageDependenciesResolutionArg,
1667
1675
  disablePackageAutomaticUpdatesArg,
@@ -1718,6 +1726,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1718
1726
  - analyzeBuildTime: Analyze the project build time and store the output in 'culprits.txt' file
1719
1727
  - xcprettyUtf: Have xcpretty use unicode encoding when reporting builds
1720
1728
  - skipProfileDetection: Do not try to build a profile mapping from the xcodeproj. Match or a manually provided mapping should be used
1729
+ - xcodebuildCommand: Allows for override of the default `xcodebuild` command
1721
1730
  - clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
1722
1731
  - skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
1723
1732
  - disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
@@ -1768,6 +1777,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1768
1777
  analyzeBuildTime: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
1769
1778
  xcprettyUtf: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
1770
1779
  skipProfileDetection: OptionalConfigValue<Bool> = .fastlaneDefault(false),
1780
+ xcodebuildCommand: String = "xcodebuild",
1771
1781
  clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
1772
1782
  skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
1773
1783
  disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
@@ -1814,6 +1824,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1814
1824
  let analyzeBuildTimeArg = analyzeBuildTime.asRubyArgument(name: "analyze_build_time", type: nil)
1815
1825
  let xcprettyUtfArg = xcprettyUtf.asRubyArgument(name: "xcpretty_utf", type: nil)
1816
1826
  let skipProfileDetectionArg = skipProfileDetection.asRubyArgument(name: "skip_profile_detection", type: nil)
1827
+ let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
1817
1828
  let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
1818
1829
  let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
1819
1830
  let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
@@ -1859,6 +1870,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
1859
1870
  analyzeBuildTimeArg,
1860
1871
  xcprettyUtfArg,
1861
1872
  skipProfileDetectionArg,
1873
+ xcodebuildCommandArg,
1862
1874
  clonedSourcePackagesPathArg,
1863
1875
  skipPackageDependenciesResolutionArg,
1864
1876
  disablePackageAutomaticUpdatesArg,
@@ -4013,6 +4025,8 @@ public func downloadAppPrivacyDetailsFromAppStore(username: String,
4013
4025
  Download dSYM files from App Store Connect for Bitcode apps
4014
4026
 
4015
4027
  - parameters:
4028
+ - apiKeyPath: Path to your App Store Connect API Key JSON file (https://docs.fastlane.tools/app-store-connect-api/#using-fastlane-api-key-json-file)
4029
+ - apiKey: Your App Store Connect API Key information (https://docs.fastlane.tools/app-store-connect-api/#use-return-value-and-pass-in-as-an-option)
4016
4030
  - username: Your Apple ID Username for App Store Connect
4017
4031
  - appIdentifier: The bundle identifier of your app
4018
4032
  - teamId: The ID of your App Store Connect team if you're in multiple teams
@@ -4037,7 +4051,9 @@ public func downloadAppPrivacyDetailsFromAppStore(username: String,
4037
4051
  ```|
4038
4052
  >|
4039
4053
  */
4040
- public func downloadDsyms(username: String,
4054
+ public func downloadDsyms(apiKeyPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
4055
+ apiKey: OptionalConfigValue<[String: Any]?> = .fastlaneDefault(nil),
4056
+ username: String,
4041
4057
  appIdentifier: String,
4042
4058
  teamId: OptionalConfigValue<String?> = .fastlaneDefault(nil),
4043
4059
  teamName: OptionalConfigValue<String?> = .fastlaneDefault(nil),
@@ -4050,6 +4066,8 @@ public func downloadDsyms(username: String,
4050
4066
  waitForDsymProcessing: OptionalConfigValue<Bool> = .fastlaneDefault(false),
4051
4067
  waitTimeout: Int = 300)
4052
4068
  {
4069
+ let apiKeyPathArg = apiKeyPath.asRubyArgument(name: "api_key_path", type: nil)
4070
+ let apiKeyArg = apiKey.asRubyArgument(name: "api_key", type: nil)
4053
4071
  let usernameArg = RubyCommand.Argument(name: "username", value: username, type: nil)
4054
4072
  let appIdentifierArg = RubyCommand.Argument(name: "app_identifier", value: appIdentifier, type: nil)
4055
4073
  let teamIdArg = teamId.asRubyArgument(name: "team_id", type: nil)
@@ -4062,7 +4080,9 @@ public func downloadDsyms(username: String,
4062
4080
  let outputDirectoryArg = outputDirectory.asRubyArgument(name: "output_directory", type: nil)
4063
4081
  let waitForDsymProcessingArg = waitForDsymProcessing.asRubyArgument(name: "wait_for_dsym_processing", type: nil)
4064
4082
  let waitTimeoutArg = RubyCommand.Argument(name: "wait_timeout", value: waitTimeout, type: nil)
4065
- let array: [RubyCommand.Argument?] = [usernameArg,
4083
+ let array: [RubyCommand.Argument?] = [apiKeyPathArg,
4084
+ apiKeyArg,
4085
+ usernameArg,
4066
4086
  appIdentifierArg,
4067
4087
  teamIdArg,
4068
4088
  teamNameArg,
@@ -4303,7 +4323,7 @@ public func ensureNoDebugCode(text: String,
4303
4323
 
4304
4324
  If building your app requires a specific version of Xcode, you can invoke this command before using gym.
4305
4325
  For example, to ensure that a beta version of Xcode is not accidentally selected to build, which would make uploading to TestFlight fail.
4306
- You can either manually provide a specific version using `version: ` or you make use of the `.xcode-version` file.
4326
+ You can either manually provide a specific version using `version:` or you make use of the `.xcode-version` file.
4307
4327
  Using the `strict` parameter, you can either verify the full set of version numbers strictly (i.e. `11.3.1`) or only a subset of them (i.e. `11.3` or `11`).
4308
4328
  */
4309
4329
  public func ensureXcodeVersion(version: OptionalConfigValue<String?> = .fastlaneDefault(nil),
@@ -4985,6 +5005,7 @@ public func getManagedPlayStorePublishingRights(jsonKey: OptionalConfigValue<Str
4985
5005
  Ensure a valid push profile is active, creating a new one if needed (via _pem_)
4986
5006
 
4987
5007
  - parameters:
5008
+ - platform: Set certificate's platform. Used for creation of production & development certificates. Supported platforms: ios, macos
4988
5009
  - development: Renew the development push certificate instead of the production one
4989
5010
  - websitePush: Create a Website Push certificate
4990
5011
  - generateP12: Generate a p12 file additionally to a PEM file
@@ -5012,7 +5033,8 @@ public func getManagedPlayStorePublishingRights(jsonKey: OptionalConfigValue<Str
5012
5033
  ```|
5013
5034
  >|
5014
5035
  */
5015
- public func getPushCertificate(development: OptionalConfigValue<Bool> = .fastlaneDefault(false),
5036
+ public func getPushCertificate(platform: String = "ios",
5037
+ development: OptionalConfigValue<Bool> = .fastlaneDefault(false),
5016
5038
  websitePush: OptionalConfigValue<Bool> = .fastlaneDefault(false),
5017
5039
  generateP12: OptionalConfigValue<Bool> = .fastlaneDefault(true),
5018
5040
  activeDaysLimit: Int = 30,
@@ -5027,6 +5049,7 @@ public func getPushCertificate(development: OptionalConfigValue<Bool> = .fastlan
5027
5049
  outputPath: String = ".",
5028
5050
  newProfile: ((String) -> Void)? = nil)
5029
5051
  {
5052
+ let platformArg = RubyCommand.Argument(name: "platform", value: platform, type: nil)
5030
5053
  let developmentArg = development.asRubyArgument(name: "development", type: nil)
5031
5054
  let websitePushArg = websitePush.asRubyArgument(name: "website_push", type: nil)
5032
5055
  let generateP12Arg = generateP12.asRubyArgument(name: "generate_p12", type: nil)
@@ -5041,7 +5064,8 @@ public func getPushCertificate(development: OptionalConfigValue<Bool> = .fastlan
5041
5064
  let pemNameArg = pemName.asRubyArgument(name: "pem_name", type: nil)
5042
5065
  let outputPathArg = RubyCommand.Argument(name: "output_path", value: outputPath, type: nil)
5043
5066
  let newProfileArg = RubyCommand.Argument(name: "new_profile", value: newProfile, type: .stringClosure)
5044
- let array: [RubyCommand.Argument?] = [developmentArg,
5067
+ let array: [RubyCommand.Argument?] = [platformArg,
5068
+ developmentArg,
5045
5069
  websitePushArg,
5046
5070
  generateP12Arg,
5047
5071
  activeDaysLimitArg,
@@ -5070,7 +5094,7 @@ public func getPushCertificate(development: OptionalConfigValue<Bool> = .fastlan
5070
5094
  - target: Target name, optional. Will be needed if you have more than one non-test target to avoid being prompted to select one
5071
5095
  - configuration: Configuration name, optional. Will be needed if you have altered the configurations from the default or your version number depends on the configuration selected
5072
5096
 
5073
- This action will return the current version number set on your project.
5097
+ This action will return the current version number set on your project. It first looks in the plist and then for '$(MARKETING_VERSION)' in the build settings.
5074
5098
  */
5075
5099
  @discardableResult public func getVersionNumber(xcodeproj: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5076
5100
  target: OptionalConfigValue<String?> = .fastlaneDefault(nil),
@@ -5513,6 +5537,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5513
5537
  - analyzeBuildTime: Analyze the project build time and store the output in 'culprits.txt' file
5514
5538
  - xcprettyUtf: Have xcpretty use unicode encoding when reporting builds
5515
5539
  - skipProfileDetection: Do not try to build a profile mapping from the xcodeproj. Match or a manually provided mapping should be used
5540
+ - xcodebuildCommand: Allows for override of the default `xcodebuild` command
5516
5541
  - clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
5517
5542
  - skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
5518
5543
  - disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
@@ -5565,6 +5590,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5565
5590
  analyzeBuildTime: OptionalConfigValue<Bool?> = .fastlaneDefault(gymfile.analyzeBuildTime),
5566
5591
  xcprettyUtf: OptionalConfigValue<Bool?> = .fastlaneDefault(gymfile.xcprettyUtf),
5567
5592
  skipProfileDetection: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.skipProfileDetection),
5593
+ xcodebuildCommand: String = gymfile.xcodebuildCommand,
5568
5594
  clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(gymfile.clonedSourcePackagesPath),
5569
5595
  skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.skipPackageDependenciesResolution),
5570
5596
  disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.disablePackageAutomaticUpdates),
@@ -5613,6 +5639,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5613
5639
  let analyzeBuildTimeArg = analyzeBuildTime.asRubyArgument(name: "analyze_build_time", type: nil)
5614
5640
  let xcprettyUtfArg = xcprettyUtf.asRubyArgument(name: "xcpretty_utf", type: nil)
5615
5641
  let skipProfileDetectionArg = skipProfileDetection.asRubyArgument(name: "skip_profile_detection", type: nil)
5642
+ let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
5616
5643
  let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
5617
5644
  let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
5618
5645
  let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
@@ -5660,6 +5687,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5660
5687
  analyzeBuildTimeArg,
5661
5688
  xcprettyUtfArg,
5662
5689
  skipProfileDetectionArg,
5690
+ xcodebuildCommandArg,
5663
5691
  clonedSourcePackagesPathArg,
5664
5692
  skipPackageDependenciesResolutionArg,
5665
5693
  disablePackageAutomaticUpdatesArg,
@@ -7090,6 +7118,7 @@ public func nexusUpload(file: String,
7090
7118
  - package: Path to package to notarize, e.g. .app bundle or disk image
7091
7119
  - useNotarytool: Whether to `xcrun notarytool` or `xcrun altool`
7092
7120
  - tryEarlyStapling: Whether to try early stapling while the notarization request is in progress
7121
+ - skipStapling: Do not staple the notarization ticket to the artifact; useful for single file executables and ZIP archives
7093
7122
  - bundleId: Bundle identifier to uniquely identify the package
7094
7123
  - username: Apple ID username
7095
7124
  - ascProvider: Provider short name for accounts associated with multiple providers
@@ -7101,6 +7130,7 @@ public func nexusUpload(file: String,
7101
7130
  public func notarize(package: String,
7102
7131
  useNotarytool: OptionalConfigValue<Bool> = .fastlaneDefault(true),
7103
7132
  tryEarlyStapling: OptionalConfigValue<Bool> = .fastlaneDefault(false),
7133
+ skipStapling: OptionalConfigValue<Bool> = .fastlaneDefault(false),
7104
7134
  bundleId: OptionalConfigValue<String?> = .fastlaneDefault(nil),
7105
7135
  username: OptionalConfigValue<String?> = .fastlaneDefault(nil),
7106
7136
  ascProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil),
@@ -7112,6 +7142,7 @@ public func notarize(package: String,
7112
7142
  let packageArg = RubyCommand.Argument(name: "package", value: package, type: nil)
7113
7143
  let useNotarytoolArg = useNotarytool.asRubyArgument(name: "use_notarytool", type: nil)
7114
7144
  let tryEarlyStaplingArg = tryEarlyStapling.asRubyArgument(name: "try_early_stapling", type: nil)
7145
+ let skipStaplingArg = skipStapling.asRubyArgument(name: "skip_stapling", type: nil)
7115
7146
  let bundleIdArg = bundleId.asRubyArgument(name: "bundle_id", type: nil)
7116
7147
  let usernameArg = username.asRubyArgument(name: "username", type: nil)
7117
7148
  let ascProviderArg = ascProvider.asRubyArgument(name: "asc_provider", type: nil)
@@ -7122,6 +7153,7 @@ public func notarize(package: String,
7122
7153
  let array: [RubyCommand.Argument?] = [packageArg,
7123
7154
  useNotarytoolArg,
7124
7155
  tryEarlyStaplingArg,
7156
+ skipStaplingArg,
7125
7157
  bundleIdArg,
7126
7158
  usernameArg,
7127
7159
  ascProviderArg,
@@ -7383,6 +7415,7 @@ public func optOutUsage() {
7383
7415
  Alias for the `get_push_certificate` action
7384
7416
 
7385
7417
  - parameters:
7418
+ - platform: Set certificate's platform. Used for creation of production & development certificates. Supported platforms: ios, macos
7386
7419
  - development: Renew the development push certificate instead of the production one
7387
7420
  - websitePush: Create a Website Push certificate
7388
7421
  - generateP12: Generate a p12 file additionally to a PEM file
@@ -7410,7 +7443,8 @@ public func optOutUsage() {
7410
7443
  ```|
7411
7444
  >|
7412
7445
  */
7413
- public func pem(development: OptionalConfigValue<Bool> = .fastlaneDefault(false),
7446
+ public func pem(platform: String = "ios",
7447
+ development: OptionalConfigValue<Bool> = .fastlaneDefault(false),
7414
7448
  websitePush: OptionalConfigValue<Bool> = .fastlaneDefault(false),
7415
7449
  generateP12: OptionalConfigValue<Bool> = .fastlaneDefault(true),
7416
7450
  activeDaysLimit: Int = 30,
@@ -7425,6 +7459,7 @@ public func pem(development: OptionalConfigValue<Bool> = .fastlaneDefault(false)
7425
7459
  outputPath: String = ".",
7426
7460
  newProfile: ((String) -> Void)? = nil)
7427
7461
  {
7462
+ let platformArg = RubyCommand.Argument(name: "platform", value: platform, type: nil)
7428
7463
  let developmentArg = development.asRubyArgument(name: "development", type: nil)
7429
7464
  let websitePushArg = websitePush.asRubyArgument(name: "website_push", type: nil)
7430
7465
  let generateP12Arg = generateP12.asRubyArgument(name: "generate_p12", type: nil)
@@ -7439,7 +7474,8 @@ public func pem(development: OptionalConfigValue<Bool> = .fastlaneDefault(false)
7439
7474
  let pemNameArg = pemName.asRubyArgument(name: "pem_name", type: nil)
7440
7475
  let outputPathArg = RubyCommand.Argument(name: "output_path", value: outputPath, type: nil)
7441
7476
  let newProfileArg = RubyCommand.Argument(name: "new_profile", value: newProfile, type: .stringClosure)
7442
- let array: [RubyCommand.Argument?] = [developmentArg,
7477
+ let array: [RubyCommand.Argument?] = [platformArg,
7478
+ developmentArg,
7443
7479
  websitePushArg,
7444
7480
  generateP12Arg,
7445
7481
  activeDaysLimitArg,
@@ -8500,8 +8536,8 @@ public func rubyVersion() {
8500
8536
  - project: Path to the project file
8501
8537
  - packagePath: Path to the Swift Package
8502
8538
  - scheme: The project's scheme. Make sure it's marked as `Shared`
8503
- - device: The name of the simulator type you want to run tests on (e.g. 'iPhone 6')
8504
- - devices: Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air'])
8539
+ - device: The name of the simulator type you want to run tests on (e.g. 'iPhone 6' or 'iPhone SE (2nd generation) (14.5)')
8540
+ - devices: Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air', 'iPhone SE (2nd generation) (14.5)'])
8505
8541
  - skipDetectDevices: Should skip auto detecting of devices if none were specified
8506
8542
  - ensureDevicesFound: Should fail if devices not found
8507
8543
  - forceQuitSimulator: Enabling this option will automatically killall Simulator processes before the run
@@ -8905,8 +8941,8 @@ public func say(text: [String],
8905
8941
  - project: Path to the project file
8906
8942
  - packagePath: Path to the Swift Package
8907
8943
  - scheme: The project's scheme. Make sure it's marked as `Shared`
8908
- - device: The name of the simulator type you want to run tests on (e.g. 'iPhone 6')
8909
- - devices: Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air'])
8944
+ - device: The name of the simulator type you want to run tests on (e.g. 'iPhone 6' or 'iPhone SE (2nd generation) (14.5)')
8945
+ - devices: Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air', 'iPhone SE (2nd generation) (14.5)'])
8910
8946
  - skipDetectDevices: Should skip auto detecting of devices if none were specified
8911
8947
  - ensureDevicesFound: Should fail if devices not found
8912
8948
  - forceQuitSimulator: Enabling this option will automatically killall Simulator processes before the run
@@ -9430,6 +9466,7 @@ public func setChangelog(apiKeyPath: OptionalConfigValue<String?> = .fastlaneDef
9430
9466
  - description: Description of this release
9431
9467
  - isDraft: Whether the release should be marked as draft
9432
9468
  - isPrerelease: Whether the release should be marked as prerelease
9469
+ - isGenerateReleaseNotes: Whether the name and body of this release should be generated automatically
9433
9470
  - uploadAssets: Path to assets to be uploaded with the release
9434
9471
 
9435
9472
  - returns: A hash containing all relevant information of this release
@@ -9449,6 +9486,7 @@ public func setChangelog(apiKeyPath: OptionalConfigValue<String?> = .fastlaneDef
9449
9486
  description: OptionalConfigValue<String?> = .fastlaneDefault(nil),
9450
9487
  isDraft: OptionalConfigValue<Bool> = .fastlaneDefault(false),
9451
9488
  isPrerelease: OptionalConfigValue<Bool> = .fastlaneDefault(false),
9489
+ isGenerateReleaseNotes: OptionalConfigValue<Bool> = .fastlaneDefault(false),
9452
9490
  uploadAssets: OptionalConfigValue<[String]?> = .fastlaneDefault(nil)) -> [String: Any]
9453
9491
  {
9454
9492
  let repositoryNameArg = RubyCommand.Argument(name: "repository_name", value: repositoryName, type: nil)
@@ -9461,6 +9499,7 @@ public func setChangelog(apiKeyPath: OptionalConfigValue<String?> = .fastlaneDef
9461
9499
  let descriptionArg = description.asRubyArgument(name: "description", type: nil)
9462
9500
  let isDraftArg = isDraft.asRubyArgument(name: "is_draft", type: nil)
9463
9501
  let isPrereleaseArg = isPrerelease.asRubyArgument(name: "is_prerelease", type: nil)
9502
+ let isGenerateReleaseNotesArg = isGenerateReleaseNotes.asRubyArgument(name: "is_generate_release_notes", type: nil)
9464
9503
  let uploadAssetsArg = uploadAssets.asRubyArgument(name: "upload_assets", type: nil)
9465
9504
  let array: [RubyCommand.Argument?] = [repositoryNameArg,
9466
9505
  serverUrlArg,
@@ -9472,6 +9511,7 @@ public func setChangelog(apiKeyPath: OptionalConfigValue<String?> = .fastlaneDef
9472
9511
  descriptionArg,
9473
9512
  isDraftArg,
9474
9513
  isPrereleaseArg,
9514
+ isGenerateReleaseNotesArg,
9475
9515
  uploadAssetsArg]
9476
9516
  let args: [RubyCommand.Argument] = array
9477
9517
  .filter { $0?.value != nil }
@@ -11509,6 +11549,7 @@ public func updateAppIdentifier(xcodeproj: String,
11509
11549
  - targets: Specify targets you want to toggle the signing mech. (default to all targets)
11510
11550
  - buildConfigurations: Specify build_configurations you want to toggle the signing mech. (default to all configurations)
11511
11551
  - codeSignIdentity: Code signing identity type (iPhone Developer, iPhone Distribution)
11552
+ - entitlementsFilePath: Path to your entitlements file
11512
11553
  - profileName: Provisioning profile name to use for code signing
11513
11554
  - profileUuid: Provisioning profile UUID to use for code signing
11514
11555
  - bundleIdentifier: Application Product Bundle Identifier
@@ -11523,6 +11564,7 @@ public func updateCodeSigningSettings(path: String,
11523
11564
  targets: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
11524
11565
  buildConfigurations: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
11525
11566
  codeSignIdentity: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11567
+ entitlementsFilePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11526
11568
  profileName: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11527
11569
  profileUuid: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11528
11570
  bundleIdentifier: OptionalConfigValue<String?> = .fastlaneDefault(nil))
@@ -11533,6 +11575,7 @@ public func updateCodeSigningSettings(path: String,
11533
11575
  let targetsArg = targets.asRubyArgument(name: "targets", type: nil)
11534
11576
  let buildConfigurationsArg = buildConfigurations.asRubyArgument(name: "build_configurations", type: nil)
11535
11577
  let codeSignIdentityArg = codeSignIdentity.asRubyArgument(name: "code_sign_identity", type: nil)
11578
+ let entitlementsFilePathArg = entitlementsFilePath.asRubyArgument(name: "entitlements_file_path", type: nil)
11536
11579
  let profileNameArg = profileName.asRubyArgument(name: "profile_name", type: nil)
11537
11580
  let profileUuidArg = profileUuid.asRubyArgument(name: "profile_uuid", type: nil)
11538
11581
  let bundleIdentifierArg = bundleIdentifier.asRubyArgument(name: "bundle_identifier", type: nil)
@@ -11542,6 +11585,7 @@ public func updateCodeSigningSettings(path: String,
11542
11585
  targetsArg,
11543
11586
  buildConfigurationsArg,
11544
11587
  codeSignIdentityArg,
11588
+ entitlementsFilePathArg,
11545
11589
  profileNameArg,
11546
11590
  profileUuidArg,
11547
11591
  bundleIdentifierArg]
@@ -13040,7 +13084,7 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
13040
13084
  coverallsServiceJobId: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13041
13085
  coverallsRepoToken: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13042
13086
  xcconfig: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13043
- ideFoundationPath: String = "/Applications/Xcode.app/Contents/Developer/../Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation",
13087
+ ideFoundationPath: String = "/Applications/Xcode-13.1.0.app/Contents/Developer/../Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation",
13044
13088
  legacySupport: OptionalConfigValue<Bool> = .fastlaneDefault(false))
13045
13089
  {
13046
13090
  let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
@@ -13134,6 +13178,7 @@ public func xctool() {
13134
13178
  - parameter version: The version of Xcode to select specified as a Gem::Version requirement string (e.g. '~> 7.1.0')
13135
13179
 
13136
13180
  Finds and selects a version of an installed Xcode that best matches the provided [`Gem::Version` requirement specifier](http://www.rubydoc.info/github/rubygems/rubygems/Gem/Version)
13181
+ You can either manually provide a specific version using `version:` or you make use of the `.xcode-version` file.
13137
13182
  */
13138
13183
  public func xcversion(version: String) {
13139
13184
  let versionArg = RubyCommand.Argument(name: "version", value: version, type: nil)
@@ -13232,14 +13277,14 @@ func parseInt(fromString: String, function: String = #function) -> Int {
13232
13277
  return NSString(string: fromString.trimmingCharacters(in: .punctuationCharacters)).integerValue
13233
13278
  }
13234
13279
 
13235
- public let deliverfile = Deliverfile()
13236
- public let gymfile = Gymfile()
13237
- public let matchfile = Matchfile()
13238
- public let precheckfile = Precheckfile()
13239
- public let scanfile = Scanfile()
13240
- public let screengrabfile = Screengrabfile()
13241
- public let snapshotfile = Snapshotfile()
13280
+ public let deliverfile: Deliverfile = .init()
13281
+ public let gymfile: Gymfile = .init()
13282
+ public let matchfile: Matchfile = .init()
13283
+ public let precheckfile: Precheckfile = .init()
13284
+ public let scanfile: Scanfile = .init()
13285
+ public let screengrabfile: Screengrabfile = .init()
13286
+ public let snapshotfile: Snapshotfile = .init()
13242
13287
 
13243
13288
  // Please don't remove the lines below
13244
13289
  // They are used to detect outdated files
13245
- // FastlaneRunnerAPIVersion [0.9.138]
13290
+ // FastlaneRunnerAPIVersion [0.9.142]
@@ -17,4 +17,4 @@ public class Gymfile: GymfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.196.0
20
+ // Generated with fastlane 2.199.0
@@ -131,6 +131,9 @@ public protocol GymfileProtocol: class {
131
131
  /// Do not try to build a profile mapping from the xcodeproj. Match or a manually provided mapping should be used
132
132
  var skipProfileDetection: Bool { get }
133
133
 
134
+ /// Allows for override of the default `xcodebuild` command
135
+ var xcodebuildCommand: String { get }
136
+
134
137
  /// Sets a custom path for Swift Package Manager dependencies
135
138
  var clonedSourcePackagesPath: String? { get }
136
139
 
@@ -188,6 +191,7 @@ public extension GymfileProtocol {
188
191
  var analyzeBuildTime: Bool? { return nil }
189
192
  var xcprettyUtf: Bool? { return nil }
190
193
  var skipProfileDetection: Bool { return false }
194
+ var xcodebuildCommand: String { return "xcodebuild" }
191
195
  var clonedSourcePackagesPath: String? { return nil }
192
196
  var skipPackageDependenciesResolution: Bool { return false }
193
197
  var disablePackageAutomaticUpdates: Bool { return false }
@@ -196,4 +200,4 @@ public extension GymfileProtocol {
196
200
 
197
201
  // Please don't remove the lines below
198
202
  // They are used to detect outdated files
199
- // FastlaneRunnerAPIVersion [0.9.88]
203
+ // FastlaneRunnerAPIVersion [0.9.92]
@@ -17,4 +17,4 @@ public class Matchfile: MatchfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.196.0
20
+ // Generated with fastlane 2.199.0
@@ -192,4 +192,4 @@ public extension MatchfileProtocol {
192
192
 
193
193
  // Please don't remove the lines below
194
194
  // They are used to detect outdated files
195
- // FastlaneRunnerAPIVersion [0.9.82]
195
+ // FastlaneRunnerAPIVersion [0.9.86]
@@ -17,4 +17,4 @@ public class Precheckfile: PrecheckfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.196.0
20
+ // Generated with fastlane 2.199.0
@@ -52,4 +52,4 @@ public extension PrecheckfileProtocol {
52
52
 
53
53
  // Please don't remove the lines below
54
54
  // They are used to detect outdated files
55
- // FastlaneRunnerAPIVersion [0.9.81]
55
+ // FastlaneRunnerAPIVersion [0.9.85]
@@ -10,13 +10,9 @@
10
10
 
11
11
  import Foundation
12
12
 
13
- let logger: Logger = {
14
- Logger()
15
- }()
13
+ let logger: Logger = .init()
16
14
 
17
- let runner: Runner = {
18
- Runner()
19
- }()
15
+ let runner: Runner = .init()
20
16
 
21
17
  func desc(_: String) {
22
18
  // no-op, this is handled in fastlane/lane_list.rb
@@ -71,7 +67,7 @@ class Runner {
71
67
 
72
68
  let runLoop = RunLoop.current
73
69
  let timeoutDate = Date(timeInterval: TimeInterval(timeout), since: Date())
74
- var fulfilled: Bool = false
70
+ var fulfilled = false
75
71
  let _expression = memoizedClosure(expression)
76
72
  repeat {
77
73
  do {
@@ -17,4 +17,4 @@ public class Scanfile: ScanfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.196.0
20
+ // Generated with fastlane 2.199.0
@@ -14,10 +14,10 @@ public protocol ScanfileProtocol: class {
14
14
  /// The project's scheme. Make sure it's marked as `Shared`
15
15
  var scheme: String? { get }
16
16
 
17
- /// The name of the simulator type you want to run tests on (e.g. 'iPhone 6')
17
+ /// The name of the simulator type you want to run tests on (e.g. 'iPhone 6' or 'iPhone SE (2nd generation) (14.5)')
18
18
  var device: String? { get }
19
19
 
20
- /// Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air'])
20
+ /// Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air', 'iPhone SE (2nd generation) (14.5)'])
21
21
  var devices: [String]? { get }
22
22
 
23
23
  /// Should skip auto detecting of devices if none were specified
@@ -296,4 +296,4 @@ public extension ScanfileProtocol {
296
296
 
297
297
  // Please don't remove the lines below
298
298
  // They are used to detect outdated files
299
- // FastlaneRunnerAPIVersion [0.9.93]
299
+ // FastlaneRunnerAPIVersion [0.9.97]
@@ -17,4 +17,4 @@ public class Screengrabfile: ScreengrabfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.196.0
20
+ // Generated with fastlane 2.199.0
@@ -96,4 +96,4 @@ public extension ScreengrabfileProtocol {
96
96
 
97
97
  // Please don't remove the lines below
98
98
  // They are used to detect outdated files
99
- // FastlaneRunnerAPIVersion [0.9.83]
99
+ // FastlaneRunnerAPIVersion [0.9.87]
@@ -17,4 +17,4 @@ public class Snapshotfile: SnapshotfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.196.0
20
+ // Generated with fastlane 2.199.0
@@ -200,4 +200,4 @@ public extension SnapshotfileProtocol {
200
200
 
201
201
  // Please don't remove the lines below
202
202
  // They are used to detect outdated files
203
- // FastlaneRunnerAPIVersion [0.9.77]
203
+ // FastlaneRunnerAPIVersion [0.9.81]
@@ -2,30 +2,35 @@
2
2
  "entries": {
3
3
  "brew": {
4
4
  "swiftformat": {
5
- "version": "0.48.16",
5
+ "version": "0.49.1",
6
6
  "bottle": {
7
7
  "rebuild": 0,
8
8
  "root_url": "https://ghcr.io/v2/homebrew/core",
9
9
  "files": {
10
+ "arm64_monterey": {
11
+ "cellar": ":any_skip_relocation",
12
+ "url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:c43caffb4d2cf9546b0a8fa732ffe5d95b1b1fd7ab03f1c5da39c8e7a0e8ecb4",
13
+ "sha256": "c43caffb4d2cf9546b0a8fa732ffe5d95b1b1fd7ab03f1c5da39c8e7a0e8ecb4"
14
+ },
10
15
  "arm64_big_sur": {
11
16
  "cellar": ":any_skip_relocation",
12
- "url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:6e754174bb20c391ccebe2685d1ab2dcba66020f0bb0eb118c09272d9daebbbd",
13
- "sha256": "6e754174bb20c391ccebe2685d1ab2dcba66020f0bb0eb118c09272d9daebbbd"
17
+ "url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:ad0ce5fc15fe1d339d366ece18694fdc1d14021684462a126ed20b537a1a9bf5",
18
+ "sha256": "ad0ce5fc15fe1d339d366ece18694fdc1d14021684462a126ed20b537a1a9bf5"
14
19
  },
15
- "big_sur": {
20
+ "monterey": {
16
21
  "cellar": ":any_skip_relocation",
17
- "url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:a6d4e1a74a8904358df45ea9cc694dbf9b228e6fcf1bcf88bb9f5e18681411ac",
18
- "sha256": "a6d4e1a74a8904358df45ea9cc694dbf9b228e6fcf1bcf88bb9f5e18681411ac"
22
+ "url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:33652b8015d31dbe45e00bdc598f1b228cb63c7083b90137fdec66318a88010f",
23
+ "sha256": "33652b8015d31dbe45e00bdc598f1b228cb63c7083b90137fdec66318a88010f"
19
24
  },
20
- "catalina": {
25
+ "big_sur": {
21
26
  "cellar": ":any_skip_relocation",
22
- "url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:c88cdbc2ade1ad4635fdafcb9b3ad23b6ba12aa50f5507bd2615dca2f9d21530",
23
- "sha256": "c88cdbc2ade1ad4635fdafcb9b3ad23b6ba12aa50f5507bd2615dca2f9d21530"
27
+ "url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:f0ad88e5594a6a3e5a35834a9a22473a05511375942dbb046d1085cc537d60b8",
28
+ "sha256": "f0ad88e5594a6a3e5a35834a9a22473a05511375942dbb046d1085cc537d60b8"
24
29
  },
25
- "mojave": {
30
+ "catalina": {
26
31
  "cellar": ":any_skip_relocation",
27
- "url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:0a4d4a8b561e961e8cd98c216fb4589cbbcf127c26fc25c81f794360295950ec",
28
- "sha256": "0a4d4a8b561e961e8cd98c216fb4589cbbcf127c26fc25c81f794360295950ec"
32
+ "url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:564f5daf9cd82407843aed590bd4190f3e5aaa73a30b3bc8ae07135f1319ac97",
33
+ "sha256": "564f5daf9cd82407843aed590bd4190f3e5aaa73a30b3bc8ae07135f1319ac97"
29
34
  }
30
35
  }
31
36
  }
@@ -43,20 +48,20 @@
43
48
  "macOS": "10.15.7"
44
49
  },
45
50
  "big_sur": {
46
- "HOMEBREW_VERSION": "3.2.16",
47
- "HOMEBREW_PREFIX": "/usr/local",
48
- "Homebrew/homebrew-core": "f01e43d7cecd622bb39ab48504bb01e350ab36db",
51
+ "HOMEBREW_VERSION": "3.2.17",
52
+ "HOMEBREW_PREFIX": "/opt/homebrew",
53
+ "Homebrew/homebrew-core": "d975bb4c6f50e8cafd6df9fc7f2ebf04d22ffa41",
49
54
  "CLT": "13.0.0.0.1.1630607135",
50
55
  "Xcode": "13.0",
51
56
  "macOS": "11.6"
52
57
  },
53
58
  "monterey": {
54
- "HOMEBREW_VERSION": "3.2.13-55-ga6959e4",
55
- "HOMEBREW_PREFIX": "/usr/local",
56
- "Homebrew/homebrew-core": "3fb109275770551bba03c7055d75ceec2c38b1b2",
57
- "CLT": "13.0.0.0.1.1628499445",
58
- "Xcode": "13.0",
59
- "macOS": "12.0"
59
+ "HOMEBREW_VERSION": "3.3.7-38-g6295b08",
60
+ "HOMEBREW_PREFIX": "/opt/homebrew",
61
+ "Homebrew/homebrew-core": "e340d22f5ef83cf4acc489b34e2478426dbf53b9",
62
+ "CLT": "13.1.0.0.1.1633545042",
63
+ "Xcode": "13.1",
64
+ "macOS": "12.0.1"
60
65
  }
61
66
  }
62
67
  }