fastlane 2.217.0 → 2.218.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (169) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +96 -96
  3. data/deliver/lib/deliver/app_screenshot.rb +2 -2
  4. data/deliver/lib/deliver/app_screenshot_iterator.rb +2 -2
  5. data/deliver/lib/deliver/detect_values.rb +1 -1
  6. data/deliver/lib/deliver/languages.rb +1 -1
  7. data/deliver/lib/deliver/loader.rb +2 -2
  8. data/deliver/lib/deliver/options.rb +4 -4
  9. data/deliver/lib/deliver/runner.rb +1 -1
  10. data/deliver/lib/deliver/sync_screenshots.rb +2 -2
  11. data/deliver/lib/deliver/upload_metadata.rb +4 -4
  12. data/deliver/lib/deliver/upload_price_tier.rb +1 -1
  13. data/deliver/lib/deliver/upload_screenshots.rb +3 -3
  14. data/fastlane/lib/fastlane/action.rb +1 -1
  15. data/fastlane/lib/fastlane/actions/appledoc.rb +1 -1
  16. data/fastlane/lib/fastlane/actions/apteligent.rb +1 -1
  17. data/fastlane/lib/fastlane/actions/backup_xcarchive.rb +1 -1
  18. data/fastlane/lib/fastlane/actions/commit_github_file.rb +2 -2
  19. data/fastlane/lib/fastlane/actions/copy_artifacts.rb +1 -1
  20. data/fastlane/lib/fastlane/actions/create_app_online.rb +1 -1
  21. data/fastlane/lib/fastlane/actions/create_pull_request.rb +1 -1
  22. data/fastlane/lib/fastlane/actions/get_certificates.rb +1 -1
  23. data/fastlane/lib/fastlane/actions/get_github_release.rb +1 -1
  24. data/fastlane/lib/fastlane/actions/get_provisioning_profile.rb +1 -1
  25. data/fastlane/lib/fastlane/actions/github_api.rb +1 -1
  26. data/fastlane/lib/fastlane/actions/gradle.rb +1 -1
  27. data/fastlane/lib/fastlane/actions/install_on_device.rb +1 -1
  28. data/fastlane/lib/fastlane/actions/ipa.rb +1 -1
  29. data/fastlane/lib/fastlane/actions/jazzy.rb +1 -1
  30. data/fastlane/lib/fastlane/actions/oclint.rb +3 -3
  31. data/fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb +2 -2
  32. data/fastlane/lib/fastlane/actions/restore_file.rb +1 -1
  33. data/fastlane/lib/fastlane/actions/set_github_release.rb +1 -1
  34. data/fastlane/lib/fastlane/actions/slather.rb +1 -1
  35. data/fastlane/lib/fastlane/actions/sonar.rb +12 -3
  36. data/fastlane/lib/fastlane/actions/splunkmint.rb +1 -1
  37. data/fastlane/lib/fastlane/actions/spm.rb +76 -2
  38. data/fastlane/lib/fastlane/actions/update_info_plist.rb +1 -1
  39. data/fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb +1 -1
  40. data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +1 -0
  41. data/fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb +1 -1
  42. data/fastlane/lib/fastlane/actions/upload_to_testflight.rb +2 -2
  43. data/fastlane/lib/fastlane/actions/verify_build.rb +7 -4
  44. data/fastlane/lib/fastlane/actions/xcov.rb +1 -1
  45. data/fastlane/lib/fastlane/cli_tools_distributor.rb +1 -1
  46. data/fastlane/lib/fastlane/command_line_handler.rb +2 -4
  47. data/fastlane/lib/fastlane/commands_generator.rb +2 -2
  48. data/fastlane/lib/fastlane/fast_file.rb +1 -1
  49. data/fastlane/lib/fastlane/helper/dotenv_helper.rb +1 -1
  50. data/fastlane/lib/fastlane/junit_generator.rb +1 -1
  51. data/fastlane/lib/fastlane/lane_manager.rb +1 -2
  52. data/fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb +0 -11
  53. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +5 -1
  54. data/fastlane/lib/fastlane/plugins/template/Gemfile.erb +27 -0
  55. data/fastlane/lib/fastlane/runner.rb +1 -1
  56. data/fastlane/lib/fastlane/setup/setup.rb +1 -1
  57. data/fastlane/lib/fastlane/swift_lane_manager.rb +2 -5
  58. data/fastlane/lib/fastlane/swift_runner_upgrader.rb +7 -4
  59. data/fastlane/lib/fastlane/version.rb +1 -1
  60. data/fastlane/swift/Actions.swift +1 -1
  61. data/fastlane/swift/Appfile.swift +1 -1
  62. data/fastlane/swift/ArgumentProcessor.swift +1 -1
  63. data/fastlane/swift/Atomic.swift +1 -1
  64. data/fastlane/swift/ControlCommand.swift +1 -1
  65. data/fastlane/swift/Deliverfile.swift +2 -2
  66. data/fastlane/swift/DeliverfileProtocol.swift +4 -4
  67. data/fastlane/swift/Fastlane.swift +79 -27
  68. data/fastlane/swift/Gymfile.swift +2 -2
  69. data/fastlane/swift/GymfileProtocol.swift +2 -2
  70. data/fastlane/swift/LaneFileProtocol.swift +5 -5
  71. data/fastlane/swift/MainProcess.swift +1 -1
  72. data/fastlane/swift/Matchfile.swift +2 -2
  73. data/fastlane/swift/MatchfileProtocol.swift +2 -2
  74. data/fastlane/swift/OptionalConfigValue.swift +1 -1
  75. data/fastlane/swift/Plugins.swift +1 -1
  76. data/fastlane/swift/Precheckfile.swift +2 -2
  77. data/fastlane/swift/PrecheckfileProtocol.swift +2 -2
  78. data/fastlane/swift/RubyCommand.swift +1 -1
  79. data/fastlane/swift/RubyCommandable.swift +1 -1
  80. data/fastlane/swift/Runner.swift +1 -1
  81. data/fastlane/swift/RunnerArgument.swift +1 -1
  82. data/fastlane/swift/Scanfile.swift +2 -2
  83. data/fastlane/swift/ScanfileProtocol.swift +2 -2
  84. data/fastlane/swift/Screengrabfile.swift +2 -2
  85. data/fastlane/swift/ScreengrabfileProtocol.swift +2 -2
  86. data/fastlane/swift/Snapshotfile.swift +2 -2
  87. data/fastlane/swift/SnapshotfileProtocol.swift +2 -2
  88. data/fastlane/swift/SocketClient.swift +1 -1
  89. data/fastlane/swift/SocketClientDelegateProtocol.swift +1 -1
  90. data/fastlane/swift/SocketResponse.swift +1 -1
  91. data/fastlane/swift/formatting/Brewfile.lock.json +18 -18
  92. data/fastlane/swift/main.swift +1 -1
  93. data/fastlane_core/lib/fastlane_core/build_watcher.rb +1 -1
  94. data/fastlane_core/lib/fastlane_core/cert_checker.rb +2 -2
  95. data/fastlane_core/lib/fastlane_core/configuration/configuration_file.rb +1 -1
  96. data/fastlane_core/lib/fastlane_core/device_manager.rb +17 -15
  97. data/fastlane_core/lib/fastlane_core/fastlane_pty.rb +34 -12
  98. data/fastlane_core/lib/fastlane_core/helper.rb +1 -1
  99. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +5 -2
  100. data/fastlane_core/lib/fastlane_core/project.rb +3 -2
  101. data/fastlane_core/lib/fastlane_core/queue_worker.rb +1 -1
  102. data/fastlane_core/lib/fastlane_core/string_filters.rb +6 -6
  103. data/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb +2 -2
  104. data/frameit/lib/frameit/editor.rb +4 -4
  105. data/frameit/lib/frameit/trim_box.rb +1 -1
  106. data/gym/lib/gym/error_handler.rb +1 -1
  107. data/gym/lib/gym/generators/package_command_generator_xcode7.rb +3 -3
  108. data/gym/lib/gym/runner.rb +1 -1
  109. data/gym/lib/gym/xcodebuild_fixes/README.md +1 -1
  110. data/match/lib/match/generator.rb +9 -1
  111. data/match/lib/match/module.rb +2 -1
  112. data/match/lib/match/portal_cache.rb +106 -0
  113. data/match/lib/match/portal_fetcher.rb +72 -0
  114. data/match/lib/match/profile_includes.rb +120 -0
  115. data/match/lib/match/runner.rb +70 -169
  116. data/match/lib/match/spaceship_ensure.rb +15 -11
  117. data/match/lib/match/storage/git_storage.rb +8 -3
  118. data/match/lib/match/storage/gitlab/client.rb +1 -1
  119. data/match/lib/match/storage/gitlab_secure_files.rb +1 -1
  120. data/match/lib/match/storage/interface.rb +1 -1
  121. data/match/lib/match/storage/s3_storage.rb +1 -1
  122. data/match/lib/match.rb +3 -0
  123. data/produce/lib/produce/itunes_connect.rb +1 -1
  124. data/scan/lib/scan/detect_values.rb +78 -20
  125. data/scan/lib/scan/options.rb +1 -1
  126. data/scan/lib/scan/runner.rb +1 -1
  127. data/screengrab/lib/screengrab/runner.rb +1 -1
  128. data/sigh/lib/assets/resign.sh +10 -10
  129. data/sigh/lib/sigh/commands_generator.rb +1 -1
  130. data/sigh/lib/sigh/module.rb +98 -0
  131. data/sigh/lib/sigh/options.rb +55 -1
  132. data/sigh/lib/sigh/resign.rb +1 -1
  133. data/sigh/lib/sigh/runner.rb +35 -111
  134. data/snapshot/lib/snapshot/setup.rb +2 -2
  135. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +23 -22
  136. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +2 -2
  137. data/spaceship/lib/spaceship/client.rb +1 -1
  138. data/spaceship/lib/spaceship/connect_api/api_client.rb +1 -1
  139. data/spaceship/lib/spaceship/connect_api/client.rb +4 -4
  140. data/spaceship/lib/spaceship/connect_api/models/app_preview_set.rb +2 -0
  141. data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +2 -2
  142. data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +2 -2
  143. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +2 -2
  144. data/spaceship/lib/spaceship/connect_api/models/device.rb +82 -3
  145. data/spaceship/lib/spaceship/connect_api/models/profile.rb +3 -2
  146. data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +3 -3
  147. data/spaceship/lib/spaceship/connect_api.rb +2 -0
  148. data/spaceship/lib/spaceship/portal/app.rb +1 -1
  149. data/spaceship/lib/spaceship/portal/app_group.rb +1 -1
  150. data/spaceship/lib/spaceship/test_flight/client.rb +1 -1
  151. data/spaceship/lib/spaceship/test_flight/tester.rb +1 -1
  152. data/spaceship/lib/spaceship/tunes/app_details.rb +2 -2
  153. data/spaceship/lib/spaceship/tunes/app_image.rb +1 -1
  154. data/spaceship/lib/spaceship/tunes/app_review_attachment.rb +1 -1
  155. data/spaceship/lib/spaceship/tunes/app_submission.rb +1 -1
  156. data/spaceship/lib/spaceship/tunes/app_version.rb +5 -5
  157. data/spaceship/lib/spaceship/tunes/build_details.rb +1 -1
  158. data/spaceship/lib/spaceship/tunes/iap.rb +3 -3
  159. data/spaceship/lib/spaceship/tunes/iap_detail.rb +2 -2
  160. data/spaceship/lib/spaceship/tunes/iap_families.rb +1 -1
  161. data/spaceship/lib/spaceship/tunes/iap_family_details.rb +2 -2
  162. data/spaceship/lib/spaceship/tunes/iap_family_list.rb +1 -1
  163. data/spaceship/lib/spaceship/tunes/tunes_client.rb +2 -2
  164. data/supply/lib/supply/client.rb +1 -1
  165. data/supply/lib/supply/setup.rb +1 -1
  166. data/trainer/lib/trainer/junit_generator.rb +1 -1
  167. data/trainer/lib/trainer/test_parser.rb +1 -1
  168. metadata +26 -289
  169. data/fastlane/lib/fastlane/plugins/template/Gemfile +0 -6
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.217.0'.freeze
2
+ VERSION = '2.218.0'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  MINIMUM_XCODE_RELEASE = "7.0".freeze
5
5
  RUBOCOP_REQUIREMENT = '1.50.2'.freeze
@@ -1,5 +1,5 @@
1
1
  // Actions.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  // This autogenerated file will be overwritten or replaced when running "fastlane generate_swift"
5
5
  //
@@ -1,5 +1,5 @@
1
1
  // Appfile.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  var appIdentifier: String { return "" } // The bundle identifier of your app
5
5
  var appleID: String { return "" } // Your Apple Developer Portal username
@@ -1,5 +1,5 @@
1
1
  // ArgumentProcessor.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Atomic.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  import Foundation
5
5
 
@@ -1,5 +1,5 @@
1
1
  // ControlCommand.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Deliverfile.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -17,4 +17,4 @@ public class Deliverfile: DeliverfileProtocol {
17
17
  // during the `init` process, and you won't see this message
18
18
  }
19
19
 
20
- // Generated with fastlane 2.217.0
20
+ // Generated with fastlane 2.218.0
@@ -1,5 +1,5 @@
1
1
  // DeliverfileProtocol.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  public protocol DeliverfileProtocol: AnyObject {
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)
@@ -71,10 +71,10 @@ public protocol DeliverfileProtocol: AnyObject {
71
71
  /// Rejects the previously submitted build if it's in a state where it's possible
72
72
  var rejectIfPossible: Bool { get }
73
73
 
74
- /// Should the app be automatically released once it's approved? (Can not be used together with `auto_release_date`)
74
+ /// Should the app be automatically released once it's approved? (Cannot be used together with `auto_release_date`)
75
75
  var automaticRelease: Bool? { get }
76
76
 
77
- /// Date in milliseconds for automatically releasing on pending approval (Can not be used together with `automatic_release`)
77
+ /// Date in milliseconds for automatically releasing on pending approval (Cannot be used together with `automatic_release`)
78
78
  var autoReleaseDate: Int? { get }
79
79
 
80
80
  /// Enable the phased release feature of iTC
@@ -264,4 +264,4 @@ public extension DeliverfileProtocol {
264
264
 
265
265
  // Please don't remove the lines below
266
266
  // They are used to detect outdated files
267
- // FastlaneRunnerAPIVersion [0.9.121]
267
+ // FastlaneRunnerAPIVersion [0.9.122]
@@ -1,5 +1,5 @@
1
1
  // Fastlane.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  import Foundation
5
5
  /**
@@ -665,8 +665,8 @@ public func appledoc(input: [String],
665
665
  - submitForReview: Submit the new version for Review after uploading everything
666
666
  - verifyOnly: Verifies archive with App Store Connect without uploading
667
667
  - rejectIfPossible: Rejects the previously submitted build if it's in a state where it's possible
668
- - automaticRelease: Should the app be automatically released once it's approved? (Can not be used together with `auto_release_date`)
669
- - autoReleaseDate: Date in milliseconds for automatically releasing on pending approval (Can not be used together with `automatic_release`)
668
+ - automaticRelease: Should the app be automatically released once it's approved? (Cannot be used together with `auto_release_date`)
669
+ - autoReleaseDate: Date in milliseconds for automatically releasing on pending approval (Cannot be used together with `automatic_release`)
670
670
  - phasedRelease: Enable the phased release feature of iTC
671
671
  - resetRatings: Reset the summary rating when you release a new version of the application
672
672
  - priceTier: The price tier of this application
@@ -3095,7 +3095,7 @@ public func cocoapods(repoUpdate: OptionalConfigValue<Bool> = .fastlaneDefault(f
3095
3095
  - repositoryName: The path to your repo, e.g. 'fastlane/fastlane'
3096
3096
  - serverUrl: The server url. e.g. 'https://your.internal.github.host/api/v3' (Default: 'https://api.github.com')
3097
3097
  - apiToken: Personal API Token for GitHub - generate one at https://github.com/settings/tokens
3098
- - apiBearer: Use a Bearer authorization token. Usually generated by Github Apps, e.g. GitHub Actions GITHUB_TOKEN environment variable
3098
+ - apiBearer: Use a Bearer authorization token. Usually generated by GitHub Apps, e.g. GitHub Actions GITHUB_TOKEN environment variable
3099
3099
  - branch: The branch that the file should be committed on (default: master)
3100
3100
  - path: The relative path to your file from project root e.g. assets/my_app.xcarchive
3101
3101
  - message: The commit message. Defaults to the file name
@@ -3421,7 +3421,7 @@ public func createKeychain(name: OptionalConfigValue<String?> = .fastlaneDefault
3421
3421
 
3422
3422
  - parameters:
3423
3423
  - apiToken: Personal API Token for GitHub - generate one at https://github.com/settings/tokens
3424
- - apiBearer: Use a Bearer authorization token. Usually generated by Github Apps, e.g. GitHub Actions GITHUB_TOKEN environment variable
3424
+ - apiBearer: Use a Bearer authorization token. Usually generated by GitHub Apps, e.g. GitHub Actions GITHUB_TOKEN environment variable
3425
3425
  - repo: The name of the repository you want to submit the pull request to
3426
3426
  - title: The title of the pull request
3427
3427
  - body: The contents of the pull request
@@ -3697,8 +3697,8 @@ public func deleteKeychain(name: OptionalConfigValue<String?> = .fastlaneDefault
3697
3697
  - submitForReview: Submit the new version for Review after uploading everything
3698
3698
  - verifyOnly: Verifies archive with App Store Connect without uploading
3699
3699
  - rejectIfPossible: Rejects the previously submitted build if it's in a state where it's possible
3700
- - automaticRelease: Should the app be automatically released once it's approved? (Can not be used together with `auto_release_date`)
3701
- - autoReleaseDate: Date in milliseconds for automatically releasing on pending approval (Can not be used together with `automatic_release`)
3700
+ - automaticRelease: Should the app be automatically released once it's approved? (Cannot be used together with `auto_release_date`)
3701
+ - autoReleaseDate: Date in milliseconds for automatically releasing on pending approval (Cannot be used together with `automatic_release`)
3702
3702
  - phasedRelease: Enable the phased release feature of iTC
3703
3703
  - resetRatings: Reset the summary rating when you release a new version of the application
3704
3704
  - priceTier: The price tier of this application
@@ -4851,7 +4851,7 @@ public func getCertificates(development: OptionalConfigValue<Bool> = .fastlaneDe
4851
4851
  - serverUrl: The server url. e.g. 'https://your.github.server/api/v3' (Default: 'https://api.github.com')
4852
4852
  - version: The version tag of the release to check
4853
4853
  - apiToken: GitHub Personal Token (required for private repositories)
4854
- - apiBearer: Use a Bearer authorization token. Usually generated by Github Apps, e.g. GitHub Actions GITHUB_TOKEN environment variable
4854
+ - apiBearer: Use a Bearer authorization token. Usually generated by GitHub Apps, e.g. GitHub Actions GITHUB_TOKEN environment variable
4855
4855
 
4856
4856
  This will return all information about a release. For example:|
4857
4857
  |
@@ -5024,6 +5024,10 @@ public func getManagedPlayStorePublishingRights(jsonKey: OptionalConfigValue<Str
5024
5024
  - readonly: Only fetch existing profile, don't generate new ones
5025
5025
  - templateName: The name of provisioning profile template. If the developer account has provisioning profile templates (aka: custom entitlements), the template name can be found by inspecting the Entitlements drop-down while creating/editing a provisioning profile (e.g. "Apple Pay Pass Suppression Development")
5026
5026
  - failOnNameTaken: Should the command fail if it was about to create a duplicate of an existing provisioning profile. It can happen due to issues on Apple Developer Portal, when profile to be recreated was not properly deleted first
5027
+ - cachedCertificates: A list of cached certificates
5028
+ - cachedDevices: A list of cached devices
5029
+ - cachedBundleIds: A list of cached bundle ids
5030
+ - cachedProfiles: A list of cached bundle ids
5027
5031
 
5028
5032
  - returns: The UUID of the profile sigh just fetched/generated
5029
5033
 
@@ -5053,7 +5057,11 @@ public func getManagedPlayStorePublishingRights(jsonKey: OptionalConfigValue<Str
5053
5057
  platform: Any = "ios",
5054
5058
  readonly: OptionalConfigValue<Bool> = .fastlaneDefault(false),
5055
5059
  templateName: OptionalConfigValue<String?> = .fastlaneDefault(nil),
5056
- failOnNameTaken: OptionalConfigValue<Bool> = .fastlaneDefault(false)) -> String
5060
+ failOnNameTaken: OptionalConfigValue<Bool> = .fastlaneDefault(false),
5061
+ cachedCertificates: Any? = nil,
5062
+ cachedDevices: Any? = nil,
5063
+ cachedBundleIds: Any? = nil,
5064
+ cachedProfiles: Any? = nil) -> String
5057
5065
  {
5058
5066
  let adhocArg = adhoc.asRubyArgument(name: "adhoc", type: nil)
5059
5067
  let developerIdArg = developerId.asRubyArgument(name: "developer_id", type: nil)
@@ -5080,6 +5088,10 @@ public func getManagedPlayStorePublishingRights(jsonKey: OptionalConfigValue<Str
5080
5088
  let readonlyArg = readonly.asRubyArgument(name: "readonly", type: nil)
5081
5089
  let templateNameArg = templateName.asRubyArgument(name: "template_name", type: nil)
5082
5090
  let failOnNameTakenArg = failOnNameTaken.asRubyArgument(name: "fail_on_name_taken", type: nil)
5091
+ let cachedCertificatesArg = RubyCommand.Argument(name: "cached_certificates", value: cachedCertificates, type: nil)
5092
+ let cachedDevicesArg = RubyCommand.Argument(name: "cached_devices", value: cachedDevices, type: nil)
5093
+ let cachedBundleIdsArg = RubyCommand.Argument(name: "cached_bundle_ids", value: cachedBundleIds, type: nil)
5094
+ let cachedProfilesArg = RubyCommand.Argument(name: "cached_profiles", value: cachedProfiles, type: nil)
5083
5095
  let array: [RubyCommand.Argument?] = [adhocArg,
5084
5096
  developerIdArg,
5085
5097
  developmentArg,
@@ -5104,7 +5116,11 @@ public func getManagedPlayStorePublishingRights(jsonKey: OptionalConfigValue<Str
5104
5116
  platformArg,
5105
5117
  readonlyArg,
5106
5118
  templateNameArg,
5107
- failOnNameTakenArg]
5119
+ failOnNameTakenArg,
5120
+ cachedCertificatesArg,
5121
+ cachedDevicesArg,
5122
+ cachedBundleIdsArg,
5123
+ cachedProfilesArg]
5108
5124
  let args: [RubyCommand.Argument] = array
5109
5125
  .filter { $0?.value != nil }
5110
5126
  .compactMap { $0 }
@@ -5381,7 +5397,7 @@ public func gitSubmoduleUpdate(recursive: OptionalConfigValue<Bool> = .fastlaneD
5381
5397
  - parameters:
5382
5398
  - serverUrl: The server url. e.g. 'https://your.internal.github.host/api/v3' (Default: 'https://api.github.com')
5383
5399
  - apiToken: Personal API Token for GitHub - generate one at https://github.com/settings/tokens
5384
- - apiBearer: Use a Bearer authorization token. Usually generated by Github Apps, e.g. GitHub Actions GITHUB_TOKEN environment variable
5400
+ - apiBearer: Use a Bearer authorization token. Usually generated by GitHub Apps, e.g. GitHub Actions GITHUB_TOKEN environment variable
5385
5401
  - httpMethod: The HTTP method. e.g. GET / POST
5386
5402
  - body: The request body in JSON or hash format
5387
5403
  - rawBody: The request body taken verbatim instead of as JSON, useful for file uploads
@@ -6231,7 +6247,7 @@ public func importCertificate(certificatePath: String,
6231
6247
  Installs an .ipa file on a connected iOS-device via usb or wifi
6232
6248
 
6233
6249
  - parameters:
6234
- - extra: Extra Commandline arguments passed to ios-deploy
6250
+ - extra: Extra Command-line arguments passed to ios-deploy
6235
6251
  - deviceId: id of the device / if not set defaults to first found device
6236
6252
  - skipWifi: Do not search for devices via WiFi
6237
6253
  - ipa: The IPA file to put on the device
@@ -6412,7 +6428,7 @@ public func ipa(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil),
6412
6428
 
6413
6429
  - parameters:
6414
6430
  - config: Path to jazzy config file
6415
- - moduleVersion: Version string to use as part of the the default docs title and inside the docset
6431
+ - moduleVersion: Version string to use as part of the default docs title and inside the docset
6416
6432
  */
6417
6433
  public func jazzy(config: OptionalConfigValue<String?> = .fastlaneDefault(nil),
6418
6434
  moduleVersion: OptionalConfigValue<String?> = .fastlaneDefault(nil))
@@ -7581,7 +7597,7 @@ public func onesignal(appId: OptionalConfigValue<String?> = .fastlaneDefault(nil
7581
7597
  /**
7582
7598
  This will prevent reports from being uploaded when _fastlane_ crashes
7583
7599
 
7584
- _fastlane_ doesn't have crash reporting any more. Feel free to remove `opt_out_crash_reporting` from your Fastfile.
7600
+ _fastlane_ doesn't have crash reporting anymore. Feel free to remove `opt_out_crash_reporting` from your Fastfile.
7585
7601
  */
7586
7602
  public func optOutCrashReporting() {
7587
7603
  let args: [RubyCommand.Argument] = []
@@ -8649,7 +8665,7 @@ public func resign(ipa: String,
8649
8665
  }
8650
8666
 
8651
8667
  /**
8652
- This action restore your file that was backuped with the `backup_file` action
8668
+ This action restore your file that was backed up with the `backup_file` action
8653
8669
 
8654
8670
  - parameter path: Original file name you want to restore
8655
8671
  */
@@ -9714,7 +9730,7 @@ public func setChangelog(apiKeyPath: OptionalConfigValue<String?> = .fastlaneDef
9714
9730
  - repositoryName: The path to your repo, e.g. 'fastlane/fastlane'
9715
9731
  - serverUrl: The server url. e.g. 'https://your.internal.github.host/api/v3' (Default: 'https://api.github.com')
9716
9732
  - apiToken: Personal API Token for GitHub - generate one at https://github.com/settings/tokens
9717
- - apiBearer: Use a Bearer authorization token. Usually generated by Github Apps, e.g. GitHub Actions GITHUB_TOKEN environment variable
9733
+ - apiBearer: Use a Bearer authorization token. Usually generated by GitHub Apps, e.g. GitHub Actions GITHUB_TOKEN environment variable
9718
9734
  - tagName: Pass in the tag name
9719
9735
  - name: Name of this release
9720
9736
  - commitish: Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. Unused if the Git tag already exists. Default: the repository's default branch (usually master)
@@ -10039,6 +10055,10 @@ public func setupTravis(force: OptionalConfigValue<Bool> = .fastlaneDefault(fals
10039
10055
  - readonly: Only fetch existing profile, don't generate new ones
10040
10056
  - templateName: The name of provisioning profile template. If the developer account has provisioning profile templates (aka: custom entitlements), the template name can be found by inspecting the Entitlements drop-down while creating/editing a provisioning profile (e.g. "Apple Pay Pass Suppression Development")
10041
10057
  - failOnNameTaken: Should the command fail if it was about to create a duplicate of an existing provisioning profile. It can happen due to issues on Apple Developer Portal, when profile to be recreated was not properly deleted first
10058
+ - cachedCertificates: A list of cached certificates
10059
+ - cachedDevices: A list of cached devices
10060
+ - cachedBundleIds: A list of cached bundle ids
10061
+ - cachedProfiles: A list of cached bundle ids
10042
10062
 
10043
10063
  - returns: The UUID of the profile sigh just fetched/generated
10044
10064
 
@@ -10068,7 +10088,11 @@ public func setupTravis(force: OptionalConfigValue<Bool> = .fastlaneDefault(fals
10068
10088
  platform: Any = "ios",
10069
10089
  readonly: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10070
10090
  templateName: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10071
- failOnNameTaken: OptionalConfigValue<Bool> = .fastlaneDefault(false)) -> String
10091
+ failOnNameTaken: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10092
+ cachedCertificates: Any? = nil,
10093
+ cachedDevices: Any? = nil,
10094
+ cachedBundleIds: Any? = nil,
10095
+ cachedProfiles: Any? = nil) -> String
10072
10096
  {
10073
10097
  let adhocArg = adhoc.asRubyArgument(name: "adhoc", type: nil)
10074
10098
  let developerIdArg = developerId.asRubyArgument(name: "developer_id", type: nil)
@@ -10095,6 +10119,10 @@ public func setupTravis(force: OptionalConfigValue<Bool> = .fastlaneDefault(fals
10095
10119
  let readonlyArg = readonly.asRubyArgument(name: "readonly", type: nil)
10096
10120
  let templateNameArg = templateName.asRubyArgument(name: "template_name", type: nil)
10097
10121
  let failOnNameTakenArg = failOnNameTaken.asRubyArgument(name: "fail_on_name_taken", type: nil)
10122
+ let cachedCertificatesArg = RubyCommand.Argument(name: "cached_certificates", value: cachedCertificates, type: nil)
10123
+ let cachedDevicesArg = RubyCommand.Argument(name: "cached_devices", value: cachedDevices, type: nil)
10124
+ let cachedBundleIdsArg = RubyCommand.Argument(name: "cached_bundle_ids", value: cachedBundleIds, type: nil)
10125
+ let cachedProfilesArg = RubyCommand.Argument(name: "cached_profiles", value: cachedProfiles, type: nil)
10098
10126
  let array: [RubyCommand.Argument?] = [adhocArg,
10099
10127
  developerIdArg,
10100
10128
  developmentArg,
@@ -10119,7 +10147,11 @@ public func setupTravis(force: OptionalConfigValue<Bool> = .fastlaneDefault(fals
10119
10147
  platformArg,
10120
10148
  readonlyArg,
10121
10149
  templateNameArg,
10122
- failOnNameTakenArg]
10150
+ failOnNameTakenArg,
10151
+ cachedCertificatesArg,
10152
+ cachedDevicesArg,
10153
+ cachedBundleIdsArg,
10154
+ cachedProfilesArg]
10123
10155
  let args: [RubyCommand.Argument] = array
10124
10156
  .filter { $0?.value != nil }
10125
10157
  .compactMap { $0 }
@@ -10264,7 +10296,7 @@ public func slackTrainStart(distance: Int = 5,
10264
10296
  - scheme: Scheme to use when calling slather
10265
10297
  - configuration: Configuration to use when calling slather (since slather-2.4.1)
10266
10298
  - inputFormat: The input format that slather should look for
10267
- - github: Tell slather that it is running on Github Actions
10299
+ - github: Tell slather that it is running on GitHub Actions
10268
10300
  - buildkite: Tell slather that it is running on Buildkite
10269
10301
  - teamcity: Tell slather that it is running on TeamCity
10270
10302
  - jenkins: Tell slather that it is running on Jenkins
@@ -10624,7 +10656,8 @@ public func snapshot(workspace: OptionalConfigValue<String?> = .fastlaneDefault(
10624
10656
  - projectLanguage: Language key, e.g. objc
10625
10657
  - sourceEncoding: Used encoding of source files, e.g., UTF-8
10626
10658
  - sonarRunnerArgs: Pass additional arguments to sonar-scanner. Be sure to provide the arguments with a leading `-D` e.g. FL_SONAR_RUNNER_ARGS="-Dsonar.verbose=true"
10627
- - sonarLogin: Pass the Sonar Login token (e.g: xxxxxxprivate_token_XXXXbXX7e)
10659
+ - sonarLogin: **DEPRECATED!** Login and password were deprecated in favor of login token. See https://community.sonarsource.com/t/deprecating-sonar-login-and-sonar-password-in-favor-of-sonar-token/95829 for more details - Pass the Sonar Login Token (e.g: xxxxxxprivate_token_XXXXbXX7e)
10660
+ - sonarToken: Pass the Sonar Token (e.g: xxxxxxprivate_token_XXXXbXX7e)
10628
10661
  - sonarUrl: Pass the url of the Sonar server
10629
10662
  - sonarOrganization: Key of the organization on SonarCloud
10630
10663
  - branchName: Pass the branch name which is getting scanned
@@ -10647,6 +10680,7 @@ public func sonar(projectConfigurationPath: OptionalConfigValue<String?> = .fast
10647
10680
  sourceEncoding: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10648
10681
  sonarRunnerArgs: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10649
10682
  sonarLogin: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10683
+ sonarToken: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10650
10684
  sonarUrl: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10651
10685
  sonarOrganization: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10652
10686
  branchName: OptionalConfigValue<String?> = .fastlaneDefault(nil),
@@ -10664,6 +10698,7 @@ public func sonar(projectConfigurationPath: OptionalConfigValue<String?> = .fast
10664
10698
  let sourceEncodingArg = sourceEncoding.asRubyArgument(name: "source_encoding", type: nil)
10665
10699
  let sonarRunnerArgsArg = sonarRunnerArgs.asRubyArgument(name: "sonar_runner_args", type: nil)
10666
10700
  let sonarLoginArg = sonarLogin.asRubyArgument(name: "sonar_login", type: nil)
10701
+ let sonarTokenArg = sonarToken.asRubyArgument(name: "sonar_token", type: nil)
10667
10702
  let sonarUrlArg = sonarUrl.asRubyArgument(name: "sonar_url", type: nil)
10668
10703
  let sonarOrganizationArg = sonarOrganization.asRubyArgument(name: "sonar_organization", type: nil)
10669
10704
  let branchNameArg = branchName.asRubyArgument(name: "branch_name", type: nil)
@@ -10680,6 +10715,7 @@ public func sonar(projectConfigurationPath: OptionalConfigValue<String?> = .fast
10680
10715
  sourceEncodingArg,
10681
10716
  sonarRunnerArgsArg,
10682
10717
  sonarLoginArg,
10718
+ sonarTokenArg,
10683
10719
  sonarUrlArg,
10684
10720
  sonarOrganizationArg,
10685
10721
  branchNameArg,
@@ -10867,7 +10903,9 @@ public func splunkmint(dsym: OptionalConfigValue<String?> = .fastlaneDefault(nil
10867
10903
  - parameters:
10868
10904
  - command: The swift command (one of: build, test, clean, reset, update, resolve, generate-xcodeproj, init)
10869
10905
  - enableCodeCoverage: Enables code coverage for the generated Xcode project when using the 'generate-xcodeproj' and the 'test' command
10870
- - buildPath: Specify build/cache directory [default: ./.build]
10906
+ - scratchPath: Specify build/cache directory [default: ./.build]
10907
+ - parallel: Enables running tests in parallel when using the 'test' command
10908
+ - buildPath: **DEPRECATED!** `build_path` option is deprecated, use `scratch_path` instead - Specify build/cache directory [default: ./.build]
10871
10909
  - packagePath: Change working directory before any other operation
10872
10910
  - xcconfig: Use xcconfig file to override swift package generate-xcodeproj defaults
10873
10911
  - configuration: Build with configuration (debug|release) [default: debug]
@@ -10875,9 +10913,13 @@ public func splunkmint(dsym: OptionalConfigValue<String?> = .fastlaneDefault(nil
10875
10913
  - xcprettyOutput: Specifies the output type for xcpretty. eg. 'test', or 'simple'
10876
10914
  - xcprettyArgs: Pass in xcpretty additional command line arguments (e.g. '--test --no-color' or '--tap --no-utf'), requires xcpretty_output to be specified also
10877
10915
  - verbose: Increase verbosity of informational output
10916
+ - simulator: Specifies the simulator to pass for Swift Compiler (one of: iphonesimulator, macosx)
10917
+ - simulatorArch: Specifies the architecture of the simulator to pass for Swift Compiler (one of: x86_64, arm64). Requires the simulator option to be specified also, otherwise, it's ignored
10878
10918
  */
10879
10919
  public func spm(command: String = "build",
10880
10920
  enableCodeCoverage: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
10921
+ scratchPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10922
+ parallel: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10881
10923
  buildPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10882
10924
  packagePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10883
10925
  xcconfig: OptionalConfigValue<String?> = .fastlaneDefault(nil),
@@ -10885,10 +10927,14 @@ public func spm(command: String = "build",
10885
10927
  disableSandbox: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10886
10928
  xcprettyOutput: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10887
10929
  xcprettyArgs: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10888
- verbose: OptionalConfigValue<Bool> = .fastlaneDefault(false))
10930
+ verbose: OptionalConfigValue<Bool> = .fastlaneDefault(false),
10931
+ simulator: OptionalConfigValue<String?> = .fastlaneDefault(nil),
10932
+ simulatorArch: String = "arm64")
10889
10933
  {
10890
10934
  let commandArg = RubyCommand.Argument(name: "command", value: command, type: nil)
10891
10935
  let enableCodeCoverageArg = enableCodeCoverage.asRubyArgument(name: "enable_code_coverage", type: nil)
10936
+ let scratchPathArg = scratchPath.asRubyArgument(name: "scratch_path", type: nil)
10937
+ let parallelArg = parallel.asRubyArgument(name: "parallel", type: nil)
10892
10938
  let buildPathArg = buildPath.asRubyArgument(name: "build_path", type: nil)
10893
10939
  let packagePathArg = packagePath.asRubyArgument(name: "package_path", type: nil)
10894
10940
  let xcconfigArg = xcconfig.asRubyArgument(name: "xcconfig", type: nil)
@@ -10897,8 +10943,12 @@ public func spm(command: String = "build",
10897
10943
  let xcprettyOutputArg = xcprettyOutput.asRubyArgument(name: "xcpretty_output", type: nil)
10898
10944
  let xcprettyArgsArg = xcprettyArgs.asRubyArgument(name: "xcpretty_args", type: nil)
10899
10945
  let verboseArg = verbose.asRubyArgument(name: "verbose", type: nil)
10946
+ let simulatorArg = simulator.asRubyArgument(name: "simulator", type: nil)
10947
+ let simulatorArchArg = RubyCommand.Argument(name: "simulator_arch", value: simulatorArch, type: nil)
10900
10948
  let array: [RubyCommand.Argument?] = [commandArg,
10901
10949
  enableCodeCoverageArg,
10950
+ scratchPathArg,
10951
+ parallelArg,
10902
10952
  buildPathArg,
10903
10953
  packagePathArg,
10904
10954
  xcconfigArg,
@@ -10906,7 +10956,9 @@ public func spm(command: String = "build",
10906
10956
  disableSandboxArg,
10907
10957
  xcprettyOutputArg,
10908
10958
  xcprettyArgsArg,
10909
- verboseArg]
10959
+ verboseArg,
10960
+ simulatorArg,
10961
+ simulatorArchArg]
10910
10962
  let args: [RubyCommand.Argument] = array
10911
10963
  .filter { $0?.value != nil }
10912
10964
  .compactMap { $0 }
@@ -12451,8 +12503,8 @@ public func uploadSymbolsToSentry(apiHost: String = "https://app.getsentry.com/a
12451
12503
  - submitForReview: Submit the new version for Review after uploading everything
12452
12504
  - verifyOnly: Verifies archive with App Store Connect without uploading
12453
12505
  - rejectIfPossible: Rejects the previously submitted build if it's in a state where it's possible
12454
- - automaticRelease: Should the app be automatically released once it's approved? (Can not be used together with `auto_release_date`)
12455
- - autoReleaseDate: Date in milliseconds for automatically releasing on pending approval (Can not be used together with `automatic_release`)
12506
+ - automaticRelease: Should the app be automatically released once it's approved? (Cannot be used together with `auto_release_date`)
12507
+ - autoReleaseDate: Date in milliseconds for automatically releasing on pending approval (Cannot be used together with `automatic_release`)
12456
12508
  - phasedRelease: Enable the phased release feature of iTC
12457
12509
  - resetRatings: Reset the summary rating when you release a new version of the application
12458
12510
  - priceTier: The price tier of this application
@@ -13509,7 +13561,7 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
13509
13561
  coverallsServiceJobId: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13510
13562
  coverallsRepoToken: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13511
13563
  xcconfig: OptionalConfigValue<String?> = .fastlaneDefault(nil),
13512
- ideFoundationPath: String = "/Applications/Xcode-15.0.0.app/Contents/Developer/../Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation",
13564
+ ideFoundationPath: String = "/Applications/Xcode-15.1.0.app/Contents/Developer/../Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation",
13513
13565
  legacySupport: OptionalConfigValue<Bool> = .fastlaneDefault(false))
13514
13566
  {
13515
13567
  let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
@@ -13712,4 +13764,4 @@ public let snapshotfile: Snapshotfile = .init()
13712
13764
 
13713
13765
  // Please don't remove the lines below
13714
13766
  // They are used to detect outdated files
13715
- // FastlaneRunnerAPIVersion [0.9.174]
13767
+ // FastlaneRunnerAPIVersion [0.9.175]
@@ -1,5 +1,5 @@
1
1
  // Gymfile.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 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.217.0
20
+ // Generated with fastlane 2.218.0
@@ -1,5 +1,5 @@
1
1
  // GymfileProtocol.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  public protocol GymfileProtocol: AnyObject {
5
5
  /// Path to the workspace file
@@ -208,4 +208,4 @@ public extension GymfileProtocol {
208
208
 
209
209
  // Please don't remove the lines below
210
210
  // They are used to detect outdated files
211
- // FastlaneRunnerAPIVersion [0.9.124]
211
+ // FastlaneRunnerAPIVersion [0.9.125]
@@ -1,5 +1,5 @@
1
1
  // LaneFileProtocol.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -118,11 +118,11 @@ open class LaneFile: NSObject, LaneFileProtocol {
118
118
  let lowerCasedLaneRequested = lane.lowercased()
119
119
 
120
120
  guard let laneMethod = currentLanes[lowerCasedLaneRequested] else {
121
- let laneNames = laneFunctionNames.map { laneFuctionName in
122
- if laneFuctionName.hasSuffix("lanewithoptions:") {
123
- return trimLaneWithOptionsFromName(laneName: laneFuctionName)
121
+ let laneNames = laneFunctionNames.map { laneFunctionName in
122
+ if laneFunctionName.hasSuffix("lanewithoptions:") {
123
+ return trimLaneWithOptionsFromName(laneName: laneFunctionName)
124
124
  } else {
125
- return trimLaneFromName(laneName: laneFuctionName)
125
+ return trimLaneFromName(laneName: laneFunctionName)
126
126
  }
127
127
  }.joined(separator: ", ")
128
128
 
@@ -1,5 +1,5 @@
1
1
  // MainProcess.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Matchfile.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 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.217.0
20
+ // Generated with fastlane 2.218.0
@@ -1,5 +1,5 @@
1
1
  // MatchfileProtocol.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  public protocol MatchfileProtocol: AnyObject {
5
5
  /// Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution, developer_id_installer
@@ -228,4 +228,4 @@ public extension MatchfileProtocol {
228
228
 
229
229
  // Please don't remove the lines below
230
230
  // They are used to detect outdated files
231
- // FastlaneRunnerAPIVersion [0.9.118]
231
+ // FastlaneRunnerAPIVersion [0.9.119]
@@ -1,5 +1,5 @@
1
1
  // OptionalConfigValue.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Plugins.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 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) 2023 FastlaneTools
2
+ // Copyright (c) 2024 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.217.0
20
+ // Generated with fastlane 2.218.0
@@ -1,5 +1,5 @@
1
1
  // PrecheckfileProtocol.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  public protocol PrecheckfileProtocol: AnyObject {
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.117]
55
+ // FastlaneRunnerAPIVersion [0.9.118]
@@ -1,5 +1,5 @@
1
1
  // RubyCommand.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // RubyCommandable.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Runner.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // RunnerArgument.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  //
5
5
  // ** NOTE **
@@ -1,5 +1,5 @@
1
1
  // Scanfile.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -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.217.0
20
+ // Generated with fastlane 2.218.0
@@ -1,5 +1,5 @@
1
1
  // ScanfileProtocol.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  public protocol ScanfileProtocol: AnyObject {
5
5
  /// Path to the workspace file
@@ -320,4 +320,4 @@ public extension ScanfileProtocol {
320
320
 
321
321
  // Please don't remove the lines below
322
322
  // They are used to detect outdated files
323
- // FastlaneRunnerAPIVersion [0.9.129]
323
+ // FastlaneRunnerAPIVersion [0.9.130]
@@ -1,5 +1,5 @@
1
1
  // Screengrabfile.swift
2
- // Copyright (c) 2023 FastlaneTools
2
+ // Copyright (c) 2024 FastlaneTools
3
3
 
4
4
  // This class is automatically included in FastlaneRunner during build
5
5
 
@@ -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.217.0
20
+ // Generated with fastlane 2.218.0