You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let keyIdArg = RubyCommand.Argument(name: "key_id", value: keyId, type: nil)
213
-
let issuerIdArg = RubyCommand.Argument(name: "issuer_id", value: issuerId, type: nil)
213
+
let issuerIdArg = issuerId.asRubyArgument(name: "issuer_id", type: nil)
214
214
let keyFilepathArg = keyFilepath.asRubyArgument(name: "key_filepath", type: nil)
215
215
let keyContentArg = keyContent.asRubyArgument(name: "key_content", type: nil)
216
216
let isKeyContentBase64Arg = isKeyContentBase64.asRubyArgument(name: "is_key_content_base64", type: nil)
@@ -674,7 +674,7 @@ public func appledoc(input: [String],
674
674
- resetRatings: Reset the summary rating when you release a new version of the application
675
675
- priceTier: The price tier of this application
676
676
- appRatingConfigPath: Path to the app rating's config
677
-
- submissionInformation: Extra information for the submission (e.g. compliance specifications, IDFA settings)
677
+
- submissionInformation: Extra information for the submission (e.g. compliance specifications)
678
678
- teamId: The ID of your App Store Connect team if you're in multiple teams
679
679
- teamName: The name of your App Store Connect team if you're in multiple teams
680
680
- devPortalTeamId: The short ID of your Developer Portal team, if you're in multiple teams. Different from your iTC team ID!
@@ -3714,7 +3714,7 @@ public func deleteKeychain(name: OptionalConfigValue<String?> = .fastlaneDefault
3714
3714
- resetRatings: Reset the summary rating when you release a new version of the application
3715
3715
- priceTier: The price tier of this application
3716
3716
- appRatingConfigPath: Path to the app rating's config
3717
-
- submissionInformation: Extra information for the submission (e.g. compliance specifications, IDFA settings)
3717
+
- submissionInformation: Extra information for the submission (e.g. compliance specifications)
3718
3718
- teamId: The ID of your App Store Connect team if you're in multiple teams
3719
3719
- teamName: The name of your App Store Connect team if you're in multiple teams
3720
3720
- devPortalTeamId: The short ID of your Developer Portal team, if you're in multiple teams. Different from your iTC team ID!
@@ -4096,7 +4096,7 @@ public func downloadAppPrivacyDetailsFromAppStore(username: String,
4096
4096
- appIdentifier: The bundle identifier of your app
4097
4097
- teamId: The ID of your App Store Connect team if you're in multiple teams
4098
4098
- teamName: The name of your App Store Connect team if you're in multiple teams
4099
-
- platform: The app platform for dSYMs you wish to download (ios, appletvos)
4099
+
- platform: The app platform for dSYMs you wish to download (ios, xros, appletvos)
4100
4100
- version: The app version for dSYMs you wish to download, pass in 'latest' to download only the latest build's dSYMs or 'live' to download only the live version dSYMs
4101
4101
- buildNumber: The app build_number for dSYMs you wish to download
4102
4102
- minVersion: The minimum app version for dSYMs you wish to download
@@ -9707,7 +9707,7 @@ public func setBuildNumberRepository(useHgRevisionNumber: OptionalConfigValue<Bo
9707
9707
- changelog: Changelog text that should be uploaded to App Store Connect
9708
9708
- teamId: The ID of your App Store Connect team if you're in multiple teams
9709
9709
- teamName: The name of your App Store Connect team if you're in multiple teams
9710
-
- platform: The platform of the app (ios, appletvos, mac)
9710
+
- platform: The platform of the app (ios, appletvos, xros, mac)
9711
9711
9712
9712
This is useful if you have only one changelog for all languages.
9713
9713
You can store the changelog in `./changelog.txt` and it will automatically get loaded from there. This integration is useful if you support e.g. 10 languages and want to use the same "What's new"-text for all languages.
@@ -10938,6 +10938,7 @@ public func splunkmint(dsym: OptionalConfigValue<String?> = .fastlaneDefault(nil
10938
10938
- xcprettyOutput: Specifies the output type for xcpretty. eg. 'test', or 'simple'
10939
10939
- xcprettyArgs: Pass in xcpretty additional command line arguments (e.g. '--test --no-color' or '--tap --no-utf'), requires xcpretty_output to be specified also
10940
10940
- verbose: Increase verbosity of informational output
10941
+
- veryVerbose: Increase verbosity to include debug output
10941
10942
- simulator: Specifies the simulator to pass for Swift Compiler (one of: iphonesimulator, macosx)
10942
10943
- 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
10943
10944
*/
@@ -10953,6 +10954,7 @@ public func spm(command: String = "build",
0 commit comments