fastlane 2.197.0 → 2.200.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +72 -72
  4. data/cert/lib/cert/runner.rb +5 -2
  5. data/deliver/lib/deliver/app_screenshot.rb +8 -0
  6. data/deliver/lib/deliver/app_screenshot_iterator.rb +1 -1
  7. data/deliver/lib/deliver/runner.rb +1 -1
  8. data/fastlane/lib/.DS_Store +0 -0
  9. data/fastlane/lib/fastlane/.DS_Store +0 -0
  10. data/fastlane/lib/fastlane/actions/.DS_Store +0 -0
  11. data/fastlane/lib/fastlane/actions/download_dsyms.rb +26 -27
  12. data/fastlane/lib/fastlane/actions/ensure_xcode_version.rb +1 -1
  13. data/fastlane/lib/fastlane/actions/get_push_certificate.rb +1 -1
  14. data/fastlane/lib/fastlane/actions/get_version_number.rb +7 -2
  15. data/fastlane/lib/fastlane/actions/notarize.rb +29 -11
  16. data/fastlane/lib/fastlane/actions/set_github_release.rb +11 -5
  17. data/fastlane/lib/fastlane/actions/update_code_signing_settings.rb +18 -1
  18. data/fastlane/lib/fastlane/actions/xcversion.rb +18 -3
  19. data/fastlane/lib/fastlane/documentation/docs_generator.rb +17 -12
  20. data/fastlane/lib/fastlane/version.rb +1 -1
  21. data/fastlane/swift/Actions.swift +1 -1
  22. data/fastlane/swift/Appfile.swift +1 -1
  23. data/fastlane/swift/ArgumentProcessor.swift +1 -1
  24. data/fastlane/swift/ControlCommand.swift +1 -1
  25. data/fastlane/swift/Deliverfile.swift +2 -2
  26. data/fastlane/swift/DeliverfileProtocol.swift +2 -2
  27. data/fastlane/swift/Fastlane.swift +65 -20
  28. data/fastlane/swift/Gymfile.swift +2 -2
  29. data/fastlane/swift/GymfileProtocol.swift +6 -2
  30. data/fastlane/swift/LaneFileProtocol.swift +1 -1
  31. data/fastlane/swift/MainProcess.swift +1 -1
  32. data/fastlane/swift/Matchfile.swift +2 -2
  33. data/fastlane/swift/MatchfileProtocol.swift +2 -2
  34. data/fastlane/swift/OptionalConfigValue.swift +1 -1
  35. data/fastlane/swift/Plugins.swift +1 -1
  36. data/fastlane/swift/Precheckfile.swift +2 -2
  37. data/fastlane/swift/PrecheckfileProtocol.swift +2 -2
  38. data/fastlane/swift/RubyCommand.swift +1 -1
  39. data/fastlane/swift/RubyCommandable.swift +1 -1
  40. data/fastlane/swift/Runner.swift +4 -8
  41. data/fastlane/swift/RunnerArgument.swift +1 -1
  42. data/fastlane/swift/Scanfile.swift +2 -2
  43. data/fastlane/swift/ScanfileProtocol.swift +4 -4
  44. data/fastlane/swift/Screengrabfile.swift +2 -2
  45. data/fastlane/swift/ScreengrabfileProtocol.swift +2 -2
  46. data/fastlane/swift/Snapshotfile.swift +2 -2
  47. data/fastlane/swift/SnapshotfileProtocol.swift +2 -2
  48. data/fastlane/swift/SocketClient.swift +1 -1
  49. data/fastlane/swift/SocketClientDelegateProtocol.swift +1 -1
  50. data/fastlane/swift/SocketResponse.swift +1 -1
  51. data/fastlane/swift/formatting/Brewfile.lock.json +23 -18
  52. data/fastlane/swift/main.swift +1 -1
  53. data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +10 -5
  54. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +41 -7
  55. data/gym/lib/gym/generators/build_command_generator.rb +2 -2
  56. data/gym/lib/gym/options.rb +6 -0
  57. data/match/lib/match/nuke.rb +79 -1
  58. data/match/lib/match/spaceship_ensure.rb +1 -0
  59. data/pem/lib/pem/manager.rb +29 -6
  60. data/pem/lib/pem/options.rb +9 -0
  61. data/pilot/lib/pilot/build_manager.rb +1 -1
  62. data/scan/lib/scan/options.rb +2 -2
  63. data/scan/lib/scan/runner.rb +2 -2
  64. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +1 -1
  65. data/spaceship/lib/spaceship/client.rb +35 -15
  66. data/spaceship/lib/spaceship/commands_generator.rb +1 -1
  67. data/spaceship/lib/spaceship/connect_api/models/app.rb +43 -0
  68. data/spaceship/lib/spaceship/connect_api/models/app_info.rb +1 -0
  69. data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +2 -0
  70. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +3 -0
  71. data/spaceship/lib/spaceship/connect_api/models/review_submission.rb +73 -0
  72. data/spaceship/lib/spaceship/connect_api/models/review_submission_item.rb +40 -0
  73. data/spaceship/lib/spaceship/connect_api/response.rb +13 -0
  74. data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +83 -0
  75. data/spaceship/lib/spaceship/connect_api.rb +2 -0
  76. data/spaceship/lib/spaceship/globals.rb +9 -0
  77. data/spaceship/lib/spaceship/spaceauth_runner.rb +1 -1
  78. data/supply/lib/supply/options.rb +8 -0
  79. data/supply/lib/supply/uploader.rb +6 -2
  80. data/trainer/lib/.DS_Store +0 -0
  81. metadata +25 -19
  82. data/spaceship/lib/spaceship/connect_api/models/.build.rb.swp +0 -0
@@ -1,5 +1,5 @@
1
1
  // Fastlane.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  import Foundation
5
5
  /**
@@ -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,
@@ -4311,7 +4323,7 @@ public func ensureNoDebugCode(text: String,
4311
4323
 
4312
4324
  If building your app requires a specific version of Xcode, you can invoke this command before using gym.
4313
4325
  For example, to ensure that a beta version of Xcode is not accidentally selected to build, which would make uploading to TestFlight fail.
4314
- 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.
4315
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`).
4316
4328
  */
4317
4329
  public func ensureXcodeVersion(version: OptionalConfigValue<String?> = .fastlaneDefault(nil),
@@ -4993,6 +5005,7 @@ public func getManagedPlayStorePublishingRights(jsonKey: OptionalConfigValue<Str
4993
5005
  Ensure a valid push profile is active, creating a new one if needed (via _pem_)
4994
5006
 
4995
5007
  - parameters:
5008
+ - platform: Set certificate's platform. Used for creation of production & development certificates. Supported platforms: ios, macos
4996
5009
  - development: Renew the development push certificate instead of the production one
4997
5010
  - websitePush: Create a Website Push certificate
4998
5011
  - generateP12: Generate a p12 file additionally to a PEM file
@@ -5020,7 +5033,8 @@ public func getManagedPlayStorePublishingRights(jsonKey: OptionalConfigValue<Str
5020
5033
  ```|
5021
5034
  >|
5022
5035
  */
5023
- public func getPushCertificate(development: OptionalConfigValue<Bool> = .fastlaneDefault(false),
5036
+ public func getPushCertificate(platform: String = "ios",
5037
+ development: OptionalConfigValue<Bool> = .fastlaneDefault(false),
5024
5038
  websitePush: OptionalConfigValue<Bool> = .fastlaneDefault(false),
5025
5039
  generateP12: OptionalConfigValue<Bool> = .fastlaneDefault(true),
5026
5040
  activeDaysLimit: Int = 30,
@@ -5035,6 +5049,7 @@ public func getPushCertificate(development: OptionalConfigValue<Bool> = .fastlan
5035
5049
  outputPath: String = ".",
5036
5050
  newProfile: ((String) -> Void)? = nil)
5037
5051
  {
5052
+ let platformArg = RubyCommand.Argument(name: "platform", value: platform, type: nil)
5038
5053
  let developmentArg = development.asRubyArgument(name: "development", type: nil)
5039
5054
  let websitePushArg = websitePush.asRubyArgument(name: "website_push", type: nil)
5040
5055
  let generateP12Arg = generateP12.asRubyArgument(name: "generate_p12", type: nil)
@@ -5049,7 +5064,8 @@ public func getPushCertificate(development: OptionalConfigValue<Bool> = .fastlan
5049
5064
  let pemNameArg = pemName.asRubyArgument(name: "pem_name", type: nil)
5050
5065
  let outputPathArg = RubyCommand.Argument(name: "output_path", value: outputPath, type: nil)
5051
5066
  let newProfileArg = RubyCommand.Argument(name: "new_profile", value: newProfile, type: .stringClosure)
5052
- let array: [RubyCommand.Argument?] = [developmentArg,
5067
+ let array: [RubyCommand.Argument?] = [platformArg,
5068
+ developmentArg,
5053
5069
  websitePushArg,
5054
5070
  generateP12Arg,
5055
5071
  activeDaysLimitArg,
@@ -5078,7 +5094,7 @@ public func getPushCertificate(development: OptionalConfigValue<Bool> = .fastlan
5078
5094
  - target: Target name, optional. Will be needed if you have more than one non-test target to avoid being prompted to select one
5079
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
5080
5096
 
5081
- 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.
5082
5098
  */
5083
5099
  @discardableResult public func getVersionNumber(xcodeproj: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5084
5100
  target: OptionalConfigValue<String?> = .fastlaneDefault(nil),
@@ -5521,6 +5537,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5521
5537
  - analyzeBuildTime: Analyze the project build time and store the output in 'culprits.txt' file
5522
5538
  - xcprettyUtf: Have xcpretty use unicode encoding when reporting builds
5523
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
5524
5541
  - clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
5525
5542
  - skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
5526
5543
  - disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
@@ -5573,6 +5590,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5573
5590
  analyzeBuildTime: OptionalConfigValue<Bool?> = .fastlaneDefault(gymfile.analyzeBuildTime),
5574
5591
  xcprettyUtf: OptionalConfigValue<Bool?> = .fastlaneDefault(gymfile.xcprettyUtf),
5575
5592
  skipProfileDetection: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.skipProfileDetection),
5593
+ xcodebuildCommand: String = gymfile.xcodebuildCommand,
5576
5594
  clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(gymfile.clonedSourcePackagesPath),
5577
5595
  skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.skipPackageDependenciesResolution),
5578
5596
  disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.disablePackageAutomaticUpdates),
@@ -5621,6 +5639,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5621
5639
  let analyzeBuildTimeArg = analyzeBuildTime.asRubyArgument(name: "analyze_build_time", type: nil)
5622
5640
  let xcprettyUtfArg = xcprettyUtf.asRubyArgument(name: "xcpretty_utf", type: nil)
5623
5641
  let skipProfileDetectionArg = skipProfileDetection.asRubyArgument(name: "skip_profile_detection", type: nil)
5642
+ let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
5624
5643
  let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
5625
5644
  let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
5626
5645
  let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
@@ -5668,6 +5687,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5668
5687
  analyzeBuildTimeArg,
5669
5688
  xcprettyUtfArg,
5670
5689
  skipProfileDetectionArg,
5690
+ xcodebuildCommandArg,
5671
5691
  clonedSourcePackagesPathArg,
5672
5692
  skipPackageDependenciesResolutionArg,
5673
5693
  disablePackageAutomaticUpdatesArg,
@@ -7098,6 +7118,7 @@ public func nexusUpload(file: String,
7098
7118
  - package: Path to package to notarize, e.g. .app bundle or disk image
7099
7119
  - useNotarytool: Whether to `xcrun notarytool` or `xcrun altool`
7100
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
7101
7122
  - bundleId: Bundle identifier to uniquely identify the package
7102
7123
  - username: Apple ID username
7103
7124
  - ascProvider: Provider short name for accounts associated with multiple providers
@@ -7109,6 +7130,7 @@ public func nexusUpload(file: String,
7109
7130
  public func notarize(package: String,
7110
7131
  useNotarytool: OptionalConfigValue<Bool> = .fastlaneDefault(true),
7111
7132
  tryEarlyStapling: OptionalConfigValue<Bool> = .fastlaneDefault(false),
7133
+ skipStapling: OptionalConfigValue<Bool> = .fastlaneDefault(false),
7112
7134
  bundleId: OptionalConfigValue<String?> = .fastlaneDefault(nil),
7113
7135
  username: OptionalConfigValue<String?> = .fastlaneDefault(nil),
7114
7136
  ascProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil),
@@ -7120,6 +7142,7 @@ public func notarize(package: String,
7120
7142
  let packageArg = RubyCommand.Argument(name: "package", value: package, type: nil)
7121
7143
  let useNotarytoolArg = useNotarytool.asRubyArgument(name: "use_notarytool", type: nil)
7122
7144
  let tryEarlyStaplingArg = tryEarlyStapling.asRubyArgument(name: "try_early_stapling", type: nil)
7145
+ let skipStaplingArg = skipStapling.asRubyArgument(name: "skip_stapling", type: nil)
7123
7146
  let bundleIdArg = bundleId.asRubyArgument(name: "bundle_id", type: nil)
7124
7147
  let usernameArg = username.asRubyArgument(name: "username", type: nil)
7125
7148
  let ascProviderArg = ascProvider.asRubyArgument(name: "asc_provider", type: nil)
@@ -7130,6 +7153,7 @@ public func notarize(package: String,
7130
7153
  let array: [RubyCommand.Argument?] = [packageArg,
7131
7154
  useNotarytoolArg,
7132
7155
  tryEarlyStaplingArg,
7156
+ skipStaplingArg,
7133
7157
  bundleIdArg,
7134
7158
  usernameArg,
7135
7159
  ascProviderArg,
@@ -7391,6 +7415,7 @@ public func optOutUsage() {
7391
7415
  Alias for the `get_push_certificate` action
7392
7416
 
7393
7417
  - parameters:
7418
+ - platform: Set certificate's platform. Used for creation of production & development certificates. Supported platforms: ios, macos
7394
7419
  - development: Renew the development push certificate instead of the production one
7395
7420
  - websitePush: Create a Website Push certificate
7396
7421
  - generateP12: Generate a p12 file additionally to a PEM file
@@ -7418,7 +7443,8 @@ public func optOutUsage() {
7418
7443
  ```|
7419
7444
  >|
7420
7445
  */
7421
- public func pem(development: OptionalConfigValue<Bool> = .fastlaneDefault(false),
7446
+ public func pem(platform: String = "ios",
7447
+ development: OptionalConfigValue<Bool> = .fastlaneDefault(false),
7422
7448
  websitePush: OptionalConfigValue<Bool> = .fastlaneDefault(false),
7423
7449
  generateP12: OptionalConfigValue<Bool> = .fastlaneDefault(true),
7424
7450
  activeDaysLimit: Int = 30,
@@ -7433,6 +7459,7 @@ public func pem(development: OptionalConfigValue<Bool> = .fastlaneDefault(false)
7433
7459
  outputPath: String = ".",
7434
7460
  newProfile: ((String) -> Void)? = nil)
7435
7461
  {
7462
+ let platformArg = RubyCommand.Argument(name: "platform", value: platform, type: nil)
7436
7463
  let developmentArg = development.asRubyArgument(name: "development", type: nil)
7437
7464
  let websitePushArg = websitePush.asRubyArgument(name: "website_push", type: nil)
7438
7465
  let generateP12Arg = generateP12.asRubyArgument(name: "generate_p12", type: nil)
@@ -7447,7 +7474,8 @@ public func pem(development: OptionalConfigValue<Bool> = .fastlaneDefault(false)
7447
7474
  let pemNameArg = pemName.asRubyArgument(name: "pem_name", type: nil)
7448
7475
  let outputPathArg = RubyCommand.Argument(name: "output_path", value: outputPath, type: nil)
7449
7476
  let newProfileArg = RubyCommand.Argument(name: "new_profile", value: newProfile, type: .stringClosure)
7450
- let array: [RubyCommand.Argument?] = [developmentArg,
7477
+ let array: [RubyCommand.Argument?] = [platformArg,
7478
+ developmentArg,
7451
7479
  websitePushArg,
7452
7480
  generateP12Arg,
7453
7481
  activeDaysLimitArg,
@@ -8508,8 +8536,8 @@ public func rubyVersion() {
8508
8536
  - project: Path to the project file
8509
8537
  - packagePath: Path to the Swift Package
8510
8538
  - scheme: The project's scheme. Make sure it's marked as `Shared`
8511
- - device: The name of the simulator type you want to run tests on (e.g. 'iPhone 6')
8512
- - 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)'])
8513
8541
  - skipDetectDevices: Should skip auto detecting of devices if none were specified
8514
8542
  - ensureDevicesFound: Should fail if devices not found
8515
8543
  - forceQuitSimulator: Enabling this option will automatically killall Simulator processes before the run
@@ -8913,8 +8941,8 @@ public func say(text: [String],
8913
8941
  - project: Path to the project file
8914
8942
  - packagePath: Path to the Swift Package
8915
8943
  - scheme: The project's scheme. Make sure it's marked as `Shared`
8916
- - device: The name of the simulator type you want to run tests on (e.g. 'iPhone 6')
8917
- - 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)'])
8918
8946
  - skipDetectDevices: Should skip auto detecting of devices if none were specified
8919
8947
  - ensureDevicesFound: Should fail if devices not found
8920
8948
  - forceQuitSimulator: Enabling this option will automatically killall Simulator processes before the run
@@ -9438,6 +9466,7 @@ public func setChangelog(apiKeyPath: OptionalConfigValue<String?> = .fastlaneDef
9438
9466
  - description: Description of this release
9439
9467
  - isDraft: Whether the release should be marked as draft
9440
9468
  - isPrerelease: Whether the release should be marked as prerelease
9469
+ - isGenerateReleaseNotes: Whether the name and body of this release should be generated automatically
9441
9470
  - uploadAssets: Path to assets to be uploaded with the release
9442
9471
 
9443
9472
  - returns: A hash containing all relevant information of this release
@@ -9457,6 +9486,7 @@ public func setChangelog(apiKeyPath: OptionalConfigValue<String?> = .fastlaneDef
9457
9486
  description: OptionalConfigValue<String?> = .fastlaneDefault(nil),
9458
9487
  isDraft: OptionalConfigValue<Bool> = .fastlaneDefault(false),
9459
9488
  isPrerelease: OptionalConfigValue<Bool> = .fastlaneDefault(false),
9489
+ isGenerateReleaseNotes: OptionalConfigValue<Bool> = .fastlaneDefault(false),
9460
9490
  uploadAssets: OptionalConfigValue<[String]?> = .fastlaneDefault(nil)) -> [String: Any]
9461
9491
  {
9462
9492
  let repositoryNameArg = RubyCommand.Argument(name: "repository_name", value: repositoryName, type: nil)
@@ -9469,6 +9499,7 @@ public func setChangelog(apiKeyPath: OptionalConfigValue<String?> = .fastlaneDef
9469
9499
  let descriptionArg = description.asRubyArgument(name: "description", type: nil)
9470
9500
  let isDraftArg = isDraft.asRubyArgument(name: "is_draft", type: nil)
9471
9501
  let isPrereleaseArg = isPrerelease.asRubyArgument(name: "is_prerelease", type: nil)
9502
+ let isGenerateReleaseNotesArg = isGenerateReleaseNotes.asRubyArgument(name: "is_generate_release_notes", type: nil)
9472
9503
  let uploadAssetsArg = uploadAssets.asRubyArgument(name: "upload_assets", type: nil)
9473
9504
  let array: [RubyCommand.Argument?] = [repositoryNameArg,
9474
9505
  serverUrlArg,
@@ -9480,6 +9511,7 @@ public func setChangelog(apiKeyPath: OptionalConfigValue<String?> = .fastlaneDef
9480
9511
  descriptionArg,
9481
9512
  isDraftArg,
9482
9513
  isPrereleaseArg,
9514
+ isGenerateReleaseNotesArg,
9483
9515
  uploadAssetsArg]
9484
9516
  let args: [RubyCommand.Argument] = array
9485
9517
  .filter { $0?.value != nil }
@@ -10676,6 +10708,7 @@ public func ssh(username: String,
10676
10708
  - skipUploadImages: Whether to skip uploading images, screenshots not included
10677
10709
  - skipUploadScreenshots: Whether to skip uploading SCREENSHOTS
10678
10710
  - trackPromoteTo: The track to promote to. The default available tracks are: production, beta, alpha, internal
10711
+ - trackPromoteReleaseStatus: Promoted track release status (used when promoting a track) - valid values are completed, draft, halted, inProgress
10679
10712
  - validateOnly: Only validate changes with Google Play rather than actually publish
10680
10713
  - mapping: Path to the mapping file to upload (mapping.txt or native-debug-symbols.zip alike)
10681
10714
  - mappingPaths: An array of paths to mapping files to upload (mapping.txt or native-debug-symbols.zip alike)
@@ -10717,6 +10750,7 @@ public func supply(packageName: String,
10717
10750
  skipUploadImages: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10718
10751
  skipUploadScreenshots: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10719
10752
  trackPromoteTo: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10753
+ trackPromoteReleaseStatus: String = "completed",
10720
10754
  validateOnly: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10721
10755
  mapping: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10722
10756
  mappingPaths: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
@@ -10756,6 +10790,7 @@ public func supply(packageName: String,
10756
10790
  let skipUploadImagesArg = skipUploadImages.asRubyArgument(name: "skip_upload_images", type: nil)
10757
10791
  let skipUploadScreenshotsArg = skipUploadScreenshots.asRubyArgument(name: "skip_upload_screenshots", type: nil)
10758
10792
  let trackPromoteToArg = trackPromoteTo.asRubyArgument(name: "track_promote_to", type: nil)
10793
+ let trackPromoteReleaseStatusArg = RubyCommand.Argument(name: "track_promote_release_status", value: trackPromoteReleaseStatus, type: nil)
10759
10794
  let validateOnlyArg = validateOnly.asRubyArgument(name: "validate_only", type: nil)
10760
10795
  let mappingArg = mapping.asRubyArgument(name: "mapping", type: nil)
10761
10796
  let mappingPathsArg = mappingPaths.asRubyArgument(name: "mapping_paths", type: nil)
@@ -10794,6 +10829,7 @@ public func supply(packageName: String,
10794
10829
  skipUploadImagesArg,
10795
10830
  skipUploadScreenshotsArg,
10796
10831
  trackPromoteToArg,
10832
+ trackPromoteReleaseStatusArg,
10797
10833
  validateOnlyArg,
10798
10834
  mappingArg,
10799
10835
  mappingPathsArg,
@@ -11517,6 +11553,7 @@ public func updateAppIdentifier(xcodeproj: String,
11517
11553
  - targets: Specify targets you want to toggle the signing mech. (default to all targets)
11518
11554
  - buildConfigurations: Specify build_configurations you want to toggle the signing mech. (default to all configurations)
11519
11555
  - codeSignIdentity: Code signing identity type (iPhone Developer, iPhone Distribution)
11556
+ - entitlementsFilePath: Path to your entitlements file
11520
11557
  - profileName: Provisioning profile name to use for code signing
11521
11558
  - profileUuid: Provisioning profile UUID to use for code signing
11522
11559
  - bundleIdentifier: Application Product Bundle Identifier
@@ -11531,6 +11568,7 @@ public func updateCodeSigningSettings(path: String,
11531
11568
  targets: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
11532
11569
  buildConfigurations: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
11533
11570
  codeSignIdentity: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11571
+ entitlementsFilePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11534
11572
  profileName: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11535
11573
  profileUuid: OptionalConfigValue<String?> = .fastlaneDefault(nil),
11536
11574
  bundleIdentifier: OptionalConfigValue<String?> = .fastlaneDefault(nil))
@@ -11541,6 +11579,7 @@ public func updateCodeSigningSettings(path: String,
11541
11579
  let targetsArg = targets.asRubyArgument(name: "targets", type: nil)
11542
11580
  let buildConfigurationsArg = buildConfigurations.asRubyArgument(name: "build_configurations", type: nil)
11543
11581
  let codeSignIdentityArg = codeSignIdentity.asRubyArgument(name: "code_sign_identity", type: nil)
11582
+ let entitlementsFilePathArg = entitlementsFilePath.asRubyArgument(name: "entitlements_file_path", type: nil)
11544
11583
  let profileNameArg = profileName.asRubyArgument(name: "profile_name", type: nil)
11545
11584
  let profileUuidArg = profileUuid.asRubyArgument(name: "profile_uuid", type: nil)
11546
11585
  let bundleIdentifierArg = bundleIdentifier.asRubyArgument(name: "bundle_identifier", type: nil)
@@ -11550,6 +11589,7 @@ public func updateCodeSigningSettings(path: String,
11550
11589
  targetsArg,
11551
11590
  buildConfigurationsArg,
11552
11591
  codeSignIdentityArg,
11592
+ entitlementsFilePathArg,
11553
11593
  profileNameArg,
11554
11594
  profileUuidArg,
11555
11595
  bundleIdentifierArg]
@@ -12316,6 +12356,7 @@ public func uploadToAppStore(apiKeyPath: OptionalConfigValue<String?> = .fastlan
12316
12356
  - skipUploadImages: Whether to skip uploading images, screenshots not included
12317
12357
  - skipUploadScreenshots: Whether to skip uploading SCREENSHOTS
12318
12358
  - trackPromoteTo: The track to promote to. The default available tracks are: production, beta, alpha, internal
12359
+ - trackPromoteReleaseStatus: Promoted track release status (used when promoting a track) - valid values are completed, draft, halted, inProgress
12319
12360
  - validateOnly: Only validate changes with Google Play rather than actually publish
12320
12361
  - mapping: Path to the mapping file to upload (mapping.txt or native-debug-symbols.zip alike)
12321
12362
  - mappingPaths: An array of paths to mapping files to upload (mapping.txt or native-debug-symbols.zip alike)
@@ -12357,6 +12398,7 @@ public func uploadToPlayStore(packageName: String,
12357
12398
  skipUploadImages: OptionalConfigValue<Bool> = .fastlaneDefault(false),
12358
12399
  skipUploadScreenshots: OptionalConfigValue<Bool> = .fastlaneDefault(false),
12359
12400
  trackPromoteTo: OptionalConfigValue<String?> = .fastlaneDefault(nil),
12401
+ trackPromoteReleaseStatus: String = "completed",
12360
12402
  validateOnly: OptionalConfigValue<Bool> = .fastlaneDefault(false),
12361
12403
  mapping: OptionalConfigValue<String?> = .fastlaneDefault(nil),
12362
12404
  mappingPaths: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
@@ -12396,6 +12438,7 @@ public func uploadToPlayStore(packageName: String,
12396
12438
  let skipUploadImagesArg = skipUploadImages.asRubyArgument(name: "skip_upload_images", type: nil)
12397
12439
  let skipUploadScreenshotsArg = skipUploadScreenshots.asRubyArgument(name: "skip_upload_screenshots", type: nil)
12398
12440
  let trackPromoteToArg = trackPromoteTo.asRubyArgument(name: "track_promote_to", type: nil)
12441
+ let trackPromoteReleaseStatusArg = RubyCommand.Argument(name: "track_promote_release_status", value: trackPromoteReleaseStatus, type: nil)
12399
12442
  let validateOnlyArg = validateOnly.asRubyArgument(name: "validate_only", type: nil)
12400
12443
  let mappingArg = mapping.asRubyArgument(name: "mapping", type: nil)
12401
12444
  let mappingPathsArg = mappingPaths.asRubyArgument(name: "mapping_paths", type: nil)
@@ -12434,6 +12477,7 @@ public func uploadToPlayStore(packageName: String,
12434
12477
  skipUploadImagesArg,
12435
12478
  skipUploadScreenshotsArg,
12436
12479
  trackPromoteToArg,
12480
+ trackPromoteReleaseStatusArg,
12437
12481
  validateOnlyArg,
12438
12482
  mappingArg,
12439
12483
  mappingPathsArg,
@@ -13048,7 +13092,7 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
13048
13092
  coverallsServiceJobId: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13049
13093
  coverallsRepoToken: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13050
13094
  xcconfig: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13051
- ideFoundationPath: String = "/Applications/Xcode.app/Contents/Developer/../Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation",
13095
+ ideFoundationPath: String = "/Applications/Xcode-13.2.1.app/Contents/Developer/../Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation",
13052
13096
  legacySupport: OptionalConfigValue<Bool> = .fastlaneDefault(false))
13053
13097
  {
13054
13098
  let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
@@ -13142,6 +13186,7 @@ public func xctool() {
13142
13186
  - parameter version: The version of Xcode to select specified as a Gem::Version requirement string (e.g. '~> 7.1.0')
13143
13187
 
13144
13188
  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)
13189
+ You can either manually provide a specific version using `version:` or you make use of the `.xcode-version` file.
13145
13190
  */
13146
13191
  public func xcversion(version: String) {
13147
13192
  let versionArg = RubyCommand.Argument(name: "version", value: version, type: nil)
@@ -13240,14 +13285,14 @@ func parseInt(fromString: String, function: String = #function) -> Int {
13240
13285
  return NSString(string: fromString.trimmingCharacters(in: .punctuationCharacters)).integerValue
13241
13286
  }
13242
13287
 
13243
- public let deliverfile = Deliverfile()
13244
- public let gymfile = Gymfile()
13245
- public let matchfile = Matchfile()
13246
- public let precheckfile = Precheckfile()
13247
- public let scanfile = Scanfile()
13248
- public let screengrabfile = Screengrabfile()
13249
- public let snapshotfile = Snapshotfile()
13288
+ public let deliverfile: Deliverfile = .init()
13289
+ public let gymfile: Gymfile = .init()
13290
+ public let matchfile: Matchfile = .init()
13291
+ public let precheckfile: Precheckfile = .init()
13292
+ public let scanfile: Scanfile = .init()
13293
+ public let screengrabfile: Screengrabfile = .init()
13294
+ public let snapshotfile: Snapshotfile = .init()
13250
13295
 
13251
13296
  // Please don't remove the lines below
13252
13297
  // They are used to detect outdated files
13253
- // FastlaneRunnerAPIVersion [0.9.139]
13298
+ // FastlaneRunnerAPIVersion [0.9.143]
@@ -1,5 +1,5 @@
1
1
  // Gymfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -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.197.0
20
+ // Generated with fastlane 2.200.0
@@ -1,5 +1,5 @@
1
1
  // GymfileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  public protocol GymfileProtocol: class {
5
5
  /// Path to the workspace file
@@ -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.89]
203
+ // FastlaneRunnerAPIVersion [0.9.93]
@@ -1,5 +1,5 @@
1
1
  // LaneFileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // MainProcess.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Matchfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -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.197.0
20
+ // Generated with fastlane 2.200.0
@@ -1,5 +1,5 @@
1
1
  // MatchfileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  public protocol MatchfileProtocol: class {
5
5
  /// Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution
@@ -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.83]
195
+ // FastlaneRunnerAPIVersion [0.9.87]
@@ -1,5 +1,5 @@
1
1
  // OptionalConfigValue.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Plugins.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This autogenerated file will be overwritten or replaced when installing/updating plugins or running "fastlane generate_swift"
5
5
  //
@@ -1,5 +1,5 @@
1
1
  // Precheckfile.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -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.197.0
20
+ // Generated with fastlane 2.200.0
@@ -1,5 +1,5 @@
1
1
  // PrecheckfileProtocol.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  public protocol PrecheckfileProtocol: class {
5
5
  /// Path to your App Store Connect API Key JSON file (https://docs.fastlane.tools/app-store-connect-api/#using-fastlane-api-key-json-file)
@@ -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.82]
55
+ // FastlaneRunnerAPIVersion [0.9.86]
@@ -1,5 +1,5 @@
1
1
  // RubyCommand.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // RubyCommandable.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Runner.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -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 {
@@ -1,5 +1,5 @@
1
1
  // RunnerArgument.swift
2
- // Copyright (c) 2021 FastlaneTools
2
+ // Copyright (c) 2022 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **