fastlane 2.221.1 → 2.223.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +98 -98
- data/deliver/lib/deliver/options.rb +1 -1
- data/deliver/lib/deliver/runner.rb +11 -2
- data/fastlane/lib/fastlane/actions/app_store_build_number.rb +1 -1
- data/fastlane/lib/fastlane/actions/changelog_from_git_commits.rb +7 -3
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +1 -0
- data/fastlane/lib/fastlane/actions/download_dsyms.rb +2 -2
- data/fastlane/lib/fastlane/actions/ensure_git_status_clean.rb +16 -1
- data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +1 -1
- data/fastlane/lib/fastlane/actions/set_changelog.rb +3 -3
- data/fastlane/lib/fastlane/actions/slack.rb +9 -2
- data/fastlane/lib/fastlane/actions/testfairy.rb +9 -1
- data/fastlane/lib/fastlane/fast_file.rb +8 -2
- data/fastlane/lib/fastlane/helper/git_helper.rb +4 -2
- data/fastlane/lib/fastlane/notification/slack.rb +3 -2
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Deliverfile.swift +1 -1
- data/fastlane/swift/DeliverfileProtocol.swift +1 -1
- data/fastlane/swift/Fastlane.swift +81 -21
- data/fastlane/swift/Gymfile.swift +1 -1
- data/fastlane/swift/GymfileProtocol.swift +5 -1
- data/fastlane/swift/Matchfile.swift +1 -1
- data/fastlane/swift/MatchfileProtocol.swift +5 -1
- data/fastlane/swift/Precheckfile.swift +1 -1
- data/fastlane/swift/PrecheckfileProtocol.swift +1 -1
- data/fastlane/swift/Scanfile.swift +1 -1
- data/fastlane/swift/ScanfileProtocol.swift +5 -1
- data/fastlane/swift/Screengrabfile.swift +1 -1
- data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
- data/fastlane/swift/Snapshotfile.swift +1 -1
- data/fastlane/swift/SnapshotfileProtocol.swift +5 -1
- data/fastlane/swift/formatting/Brewfile.lock.json +24 -19
- data/fastlane/swift/formatting/Rakefile +1 -0
- data/fastlane_core/lib/fastlane_core/project.rb +1 -0
- data/gym/lib/gym/generators/build_command_generator.rb +1 -1
- data/gym/lib/gym/options.rb +10 -1
- data/match/lib/match/change_password.rb +2 -1
- data/match/lib/match/encryption/encryption.rb +2 -2
- data/match/lib/match/encryption/openssl.rb +10 -5
- data/match/lib/match/importer.rb +2 -1
- data/match/lib/match/nuke.rb +2 -1
- data/match/lib/match/options.rb +5 -0
- data/match/lib/match/runner.rb +2 -1
- data/pilot/lib/pilot/build_manager.rb +9 -0
- data/scan/lib/scan/module.rb +1 -1
- data/scan/lib/scan/options.rb +10 -1
- data/snapshot/lib/snapshot/options.rb +9 -0
- data/spaceship/lib/spaceship/connect_api/models/app.rb +10 -0
- data/spaceship/lib/spaceship/connect_api/models/app_availability.rb +23 -0
- data/spaceship/lib/spaceship/connect_api/models/territory_availability.rb +62 -0
- data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +9 -0
- data/spaceship/lib/spaceship/connect_api.rb +2 -0
- data/spaceship/lib/spaceship/tunes/application.rb +1 -1
- data/spaceship/lib/spaceship/tunes/tunes_client.rb +2 -0
- data/trainer/lib/trainer/test_parser.rb +27 -2
- metadata +22 -20
@@ -1342,6 +1342,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1342
1342
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
1343
1343
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
1344
1344
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
1345
|
+
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
1345
1346
|
|
1346
1347
|
- returns: The absolute path to the generated ipa file
|
1347
1348
|
|
@@ -1396,7 +1397,8 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1396
1397
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
1397
1398
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1398
1399
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1399
|
-
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false)
|
1400
|
+
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1401
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil)) -> String
|
1400
1402
|
{
|
1401
1403
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
1402
1404
|
let projectArg = project.asRubyArgument(name: "project", type: nil)
|
@@ -1448,6 +1450,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1448
1450
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
1449
1451
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
1450
1452
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
1453
|
+
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
1451
1454
|
let array: [RubyCommand.Argument?] = [workspaceArg,
|
1452
1455
|
projectArg,
|
1453
1456
|
schemeArg,
|
@@ -1497,7 +1500,8 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1497
1500
|
clonedSourcePackagesPathArg,
|
1498
1501
|
skipPackageDependenciesResolutionArg,
|
1499
1502
|
disablePackageAutomaticUpdatesArg,
|
1500
|
-
useSystemScmArg
|
1503
|
+
useSystemScmArg,
|
1504
|
+
packageAuthorizationProviderArg]
|
1501
1505
|
let args: [RubyCommand.Argument] = array
|
1502
1506
|
.filter { $0?.value != nil }
|
1503
1507
|
.compactMap { $0 }
|
@@ -1556,6 +1560,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1556
1560
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
1557
1561
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
1558
1562
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
1563
|
+
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
1559
1564
|
|
1560
1565
|
- returns: The absolute path to the generated ipa file
|
1561
1566
|
|
@@ -1607,7 +1612,8 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1607
1612
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
1608
1613
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1609
1614
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1610
|
-
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false)
|
1615
|
+
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1616
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil)) -> String
|
1611
1617
|
{
|
1612
1618
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
1613
1619
|
let projectArg = project.asRubyArgument(name: "project", type: nil)
|
@@ -1656,6 +1662,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1656
1662
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
1657
1663
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
1658
1664
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
1665
|
+
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
1659
1666
|
let array: [RubyCommand.Argument?] = [workspaceArg,
|
1660
1667
|
projectArg,
|
1661
1668
|
schemeArg,
|
@@ -1702,7 +1709,8 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1702
1709
|
clonedSourcePackagesPathArg,
|
1703
1710
|
skipPackageDependenciesResolutionArg,
|
1704
1711
|
disablePackageAutomaticUpdatesArg,
|
1705
|
-
useSystemScmArg
|
1712
|
+
useSystemScmArg,
|
1713
|
+
packageAuthorizationProviderArg]
|
1706
1714
|
let args: [RubyCommand.Argument] = array
|
1707
1715
|
.filter { $0?.value != nil }
|
1708
1716
|
.compactMap { $0 }
|
@@ -1762,6 +1770,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1762
1770
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
1763
1771
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
1764
1772
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
1773
|
+
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
1765
1774
|
|
1766
1775
|
- returns: The absolute path to the generated ipa file
|
1767
1776
|
|
@@ -1814,7 +1823,8 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1814
1823
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
1815
1824
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1816
1825
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1817
|
-
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false)
|
1826
|
+
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1827
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil)) -> String
|
1818
1828
|
{
|
1819
1829
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
1820
1830
|
let projectArg = project.asRubyArgument(name: "project", type: nil)
|
@@ -1864,6 +1874,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1864
1874
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
1865
1875
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
1866
1876
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
1877
|
+
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
1867
1878
|
let array: [RubyCommand.Argument?] = [workspaceArg,
|
1868
1879
|
projectArg,
|
1869
1880
|
schemeArg,
|
@@ -1911,7 +1922,8 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1911
1922
|
clonedSourcePackagesPathArg,
|
1912
1923
|
skipPackageDependenciesResolutionArg,
|
1913
1924
|
disablePackageAutomaticUpdatesArg,
|
1914
|
-
useSystemScmArg
|
1925
|
+
useSystemScmArg,
|
1926
|
+
packageAuthorizationProviderArg]
|
1915
1927
|
let args: [RubyCommand.Argument] = array
|
1916
1928
|
.filter { $0?.value != nil }
|
1917
1929
|
.compactMap { $0 }
|
@@ -2158,6 +2170,7 @@ public func captureAndroidScreenshots(androidHome: OptionalConfigValue<String?>
|
|
2158
2170
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
2159
2171
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
2160
2172
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
2173
|
+
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
2161
2174
|
- testplan: The testplan associated with the scheme that should be used for testing
|
2162
2175
|
- onlyTesting: Array of strings matching Test Bundle/Test Suite/Test Cases to run
|
2163
2176
|
- skipTesting: Array of strings matching Test Bundle/Test Suite/Test Cases to skip
|
@@ -2208,6 +2221,7 @@ public func captureIosScreenshots(workspace: OptionalConfigValue<String?> = .fas
|
|
2208
2221
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
2209
2222
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
2210
2223
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
2224
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
2211
2225
|
testplan: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
2212
2226
|
onlyTesting: Any? = nil,
|
2213
2227
|
skipTesting: Any? = nil,
|
@@ -2258,6 +2272,7 @@ public func captureIosScreenshots(workspace: OptionalConfigValue<String?> = .fas
|
|
2258
2272
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
2259
2273
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
2260
2274
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
2275
|
+
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
2261
2276
|
let testplanArg = testplan.asRubyArgument(name: "testplan", type: nil)
|
2262
2277
|
let onlyTestingArg = RubyCommand.Argument(name: "only_testing", value: onlyTesting, type: nil)
|
2263
2278
|
let skipTestingArg = RubyCommand.Argument(name: "skip_testing", value: skipTesting, type: nil)
|
@@ -2307,6 +2322,7 @@ public func captureIosScreenshots(workspace: OptionalConfigValue<String?> = .fas
|
|
2307
2322
|
clonedSourcePackagesPathArg,
|
2308
2323
|
skipPackageDependenciesResolutionArg,
|
2309
2324
|
disablePackageAutomaticUpdatesArg,
|
2325
|
+
packageAuthorizationProviderArg,
|
2310
2326
|
testplanArg,
|
2311
2327
|
onlyTestingArg,
|
2312
2328
|
skipTestingArg,
|
@@ -2367,6 +2383,7 @@ public func captureIosScreenshots(workspace: OptionalConfigValue<String?> = .fas
|
|
2367
2383
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
2368
2384
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
2369
2385
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
2386
|
+
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
2370
2387
|
- testplan: The testplan associated with the scheme that should be used for testing
|
2371
2388
|
- onlyTesting: Array of strings matching Test Bundle/Test Suite/Test Cases to run
|
2372
2389
|
- skipTesting: Array of strings matching Test Bundle/Test Suite/Test Cases to skip
|
@@ -2417,6 +2434,7 @@ public func captureScreenshots(workspace: OptionalConfigValue<String?> = .fastla
|
|
2417
2434
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
2418
2435
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
2419
2436
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
2437
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
2420
2438
|
testplan: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
2421
2439
|
onlyTesting: Any? = nil,
|
2422
2440
|
skipTesting: Any? = nil,
|
@@ -2467,6 +2485,7 @@ public func captureScreenshots(workspace: OptionalConfigValue<String?> = .fastla
|
|
2467
2485
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
2468
2486
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
2469
2487
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
2488
|
+
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
2470
2489
|
let testplanArg = testplan.asRubyArgument(name: "testplan", type: nil)
|
2471
2490
|
let onlyTestingArg = RubyCommand.Argument(name: "only_testing", value: onlyTesting, type: nil)
|
2472
2491
|
let skipTestingArg = RubyCommand.Argument(name: "skip_testing", value: skipTesting, type: nil)
|
@@ -2516,6 +2535,7 @@ public func captureScreenshots(workspace: OptionalConfigValue<String?> = .fastla
|
|
2516
2535
|
clonedSourcePackagesPathArg,
|
2517
2536
|
skipPackageDependenciesResolutionArg,
|
2518
2537
|
disablePackageAutomaticUpdatesArg,
|
2538
|
+
packageAuthorizationProviderArg,
|
2519
2539
|
testplanArg,
|
2520
2540
|
onlyTestingArg,
|
2521
2541
|
skipTestingArg,
|
@@ -2727,6 +2747,7 @@ public func cert(development: OptionalConfigValue<Bool> = .fastlaneDefault(false
|
|
2727
2747
|
- quiet: Whether or not to disable changelog output
|
2728
2748
|
- includeMerges: **DEPRECATED!** Use `:merge_commit_filtering` instead - Whether or not to include any commits that are merges
|
2729
2749
|
- mergeCommitFiltering: Controls inclusion of merge commits when collecting the changelog. Valid values: 'include_merges', 'exclude_merges', 'only_include_merges'
|
2750
|
+
- appPath: Scopes the changelog to a specific subdirectory of the repository
|
2730
2751
|
|
2731
2752
|
- returns: Returns a String containing your formatted git commits
|
2732
2753
|
|
@@ -2742,7 +2763,8 @@ public func cert(development: OptionalConfigValue<Bool> = .fastlaneDefault(false
|
|
2742
2763
|
matchLightweightTag: OptionalConfigValue<Bool> = .fastlaneDefault(true),
|
2743
2764
|
quiet: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
2744
2765
|
includeMerges: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
2745
|
-
mergeCommitFiltering: String = "include_merges"
|
2766
|
+
mergeCommitFiltering: String = "include_merges",
|
2767
|
+
appPath: OptionalConfigValue<String?> = .fastlaneDefault(nil)) -> String
|
2746
2768
|
{
|
2747
2769
|
let betweenArg = between.asRubyArgument(name: "between", type: nil)
|
2748
2770
|
let commitsCountArg = commitsCount.asRubyArgument(name: "commits_count", type: nil)
|
@@ -2755,6 +2777,7 @@ public func cert(development: OptionalConfigValue<Bool> = .fastlaneDefault(false
|
|
2755
2777
|
let quietArg = quiet.asRubyArgument(name: "quiet", type: nil)
|
2756
2778
|
let includeMergesArg = includeMerges.asRubyArgument(name: "include_merges", type: nil)
|
2757
2779
|
let mergeCommitFilteringArg = RubyCommand.Argument(name: "merge_commit_filtering", value: mergeCommitFiltering, type: nil)
|
2780
|
+
let appPathArg = appPath.asRubyArgument(name: "app_path", type: nil)
|
2758
2781
|
let array: [RubyCommand.Argument?] = [betweenArg,
|
2759
2782
|
commitsCountArg,
|
2760
2783
|
pathArg,
|
@@ -2765,7 +2788,8 @@ public func cert(development: OptionalConfigValue<Bool> = .fastlaneDefault(false
|
|
2765
2788
|
matchLightweightTagArg,
|
2766
2789
|
quietArg,
|
2767
2790
|
includeMergesArg,
|
2768
|
-
mergeCommitFilteringArg
|
2791
|
+
mergeCommitFilteringArg,
|
2792
|
+
appPathArg]
|
2769
2793
|
let args: [RubyCommand.Argument] = array
|
2770
2794
|
.filter { $0?.value != nil }
|
2771
2795
|
.compactMap { $0 }
|
@@ -4096,7 +4120,7 @@ public func downloadAppPrivacyDetailsFromAppStore(username: String,
|
|
4096
4120
|
- appIdentifier: The bundle identifier of your app
|
4097
4121
|
- teamId: The ID of your App Store Connect team if you're in multiple teams
|
4098
4122
|
- 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)
|
4123
|
+
- platform: The app platform for dSYMs you wish to download (ios, xros, appletvos)
|
4100
4124
|
- 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
4125
|
- buildNumber: The app build_number for dSYMs you wish to download
|
4102
4126
|
- minVersion: The minimum app version for dSYMs you wish to download
|
@@ -5692,6 +5716,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
5692
5716
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
5693
5717
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
5694
5718
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
5719
|
+
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
5695
5720
|
|
5696
5721
|
- returns: The absolute path to the generated ipa file
|
5697
5722
|
|
@@ -5746,7 +5771,8 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
5746
5771
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(gymfile.clonedSourcePackagesPath),
|
5747
5772
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.skipPackageDependenciesResolution),
|
5748
5773
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.disablePackageAutomaticUpdates),
|
5749
|
-
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.useSystemScm)
|
5774
|
+
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.useSystemScm),
|
5775
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(gymfile.packageAuthorizationProvider)) -> String
|
5750
5776
|
{
|
5751
5777
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
5752
5778
|
let projectArg = project.asRubyArgument(name: "project", type: nil)
|
@@ -5798,6 +5824,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
5798
5824
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
5799
5825
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
5800
5826
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
5827
|
+
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
5801
5828
|
let array: [RubyCommand.Argument?] = [workspaceArg,
|
5802
5829
|
projectArg,
|
5803
5830
|
schemeArg,
|
@@ -5847,7 +5874,8 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
5847
5874
|
clonedSourcePackagesPathArg,
|
5848
5875
|
skipPackageDependenciesResolutionArg,
|
5849
5876
|
disablePackageAutomaticUpdatesArg,
|
5850
|
-
useSystemScmArg
|
5877
|
+
useSystemScmArg,
|
5878
|
+
packageAuthorizationProviderArg]
|
5851
5879
|
let args: [RubyCommand.Argument] = array
|
5852
5880
|
.filter { $0?.value != nil }
|
5853
5881
|
.compactMap { $0 }
|
@@ -6795,6 +6823,7 @@ public func makeChangelogFromJenkins(fallbackChangelog: String = "",
|
|
6795
6823
|
- skipCertificateMatching: Set to true if there is no access to Apple developer portal but there are certificates, keys and profiles provided. Only works with match import action
|
6796
6824
|
- outputPath: Path in which to export certificates, key and profile
|
6797
6825
|
- skipSetPartitionList: Skips setting the partition list (which can sometimes take a long time). Setting the partition list is usually needed to prevent Xcode from prompting to allow a cert to be used for signing
|
6826
|
+
- forceLegacyEncryption: Force encryption to use legacy cbc algorithm for backwards compatibility with older match versions
|
6798
6827
|
- verbose: Print out extra information and all commands
|
6799
6828
|
|
6800
6829
|
More information: https://docs.fastlane.tools/actions/match/
|
@@ -6853,6 +6882,7 @@ public func match(type: String = matchfile.type,
|
|
6853
6882
|
skipCertificateMatching: OptionalConfigValue<Bool> = .fastlaneDefault(matchfile.skipCertificateMatching),
|
6854
6883
|
outputPath: OptionalConfigValue<String?> = .fastlaneDefault(matchfile.outputPath),
|
6855
6884
|
skipSetPartitionList: OptionalConfigValue<Bool> = .fastlaneDefault(matchfile.skipSetPartitionList),
|
6885
|
+
forceLegacyEncryption: OptionalConfigValue<Bool> = .fastlaneDefault(matchfile.forceLegacyEncryption),
|
6856
6886
|
verbose: OptionalConfigValue<Bool> = .fastlaneDefault(matchfile.verbose))
|
6857
6887
|
{
|
6858
6888
|
let typeArg = RubyCommand.Argument(name: "type", value: type, type: nil)
|
@@ -6909,6 +6939,7 @@ public func match(type: String = matchfile.type,
|
|
6909
6939
|
let skipCertificateMatchingArg = skipCertificateMatching.asRubyArgument(name: "skip_certificate_matching", type: nil)
|
6910
6940
|
let outputPathArg = outputPath.asRubyArgument(name: "output_path", type: nil)
|
6911
6941
|
let skipSetPartitionListArg = skipSetPartitionList.asRubyArgument(name: "skip_set_partition_list", type: nil)
|
6942
|
+
let forceLegacyEncryptionArg = forceLegacyEncryption.asRubyArgument(name: "force_legacy_encryption", type: nil)
|
6912
6943
|
let verboseArg = verbose.asRubyArgument(name: "verbose", type: nil)
|
6913
6944
|
let array: [RubyCommand.Argument?] = [typeArg,
|
6914
6945
|
additionalCertTypesArg,
|
@@ -6964,6 +6995,7 @@ public func match(type: String = matchfile.type,
|
|
6964
6995
|
skipCertificateMatchingArg,
|
6965
6996
|
outputPathArg,
|
6966
6997
|
skipSetPartitionListArg,
|
6998
|
+
forceLegacyEncryptionArg,
|
6967
6999
|
verboseArg]
|
6968
7000
|
let args: [RubyCommand.Argument] = array
|
6969
7001
|
.filter { $0?.value != nil }
|
@@ -7030,6 +7062,7 @@ public func match(type: String = matchfile.type,
|
|
7030
7062
|
- skipCertificateMatching: Set to true if there is no access to Apple developer portal but there are certificates, keys and profiles provided. Only works with match import action
|
7031
7063
|
- outputPath: Path in which to export certificates, key and profile
|
7032
7064
|
- skipSetPartitionList: Skips setting the partition list (which can sometimes take a long time). Setting the partition list is usually needed to prevent Xcode from prompting to allow a cert to be used for signing
|
7065
|
+
- forceLegacyEncryption: Force encryption to use legacy cbc algorithm for backwards compatibility with older match versions
|
7033
7066
|
- verbose: Print out extra information and all commands
|
7034
7067
|
|
7035
7068
|
Use the match_nuke action to revoke your certificates and provisioning profiles.
|
@@ -7092,6 +7125,7 @@ public func matchNuke(type: String = "development",
|
|
7092
7125
|
skipCertificateMatching: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
7093
7126
|
outputPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
7094
7127
|
skipSetPartitionList: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
7128
|
+
forceLegacyEncryption: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
7095
7129
|
verbose: OptionalConfigValue<Bool> = .fastlaneDefault(false))
|
7096
7130
|
{
|
7097
7131
|
let typeArg = RubyCommand.Argument(name: "type", value: type, type: nil)
|
@@ -7148,6 +7182,7 @@ public func matchNuke(type: String = "development",
|
|
7148
7182
|
let skipCertificateMatchingArg = skipCertificateMatching.asRubyArgument(name: "skip_certificate_matching", type: nil)
|
7149
7183
|
let outputPathArg = outputPath.asRubyArgument(name: "output_path", type: nil)
|
7150
7184
|
let skipSetPartitionListArg = skipSetPartitionList.asRubyArgument(name: "skip_set_partition_list", type: nil)
|
7185
|
+
let forceLegacyEncryptionArg = forceLegacyEncryption.asRubyArgument(name: "force_legacy_encryption", type: nil)
|
7151
7186
|
let verboseArg = verbose.asRubyArgument(name: "verbose", type: nil)
|
7152
7187
|
let array: [RubyCommand.Argument?] = [typeArg,
|
7153
7188
|
additionalCertTypesArg,
|
@@ -7203,6 +7238,7 @@ public func matchNuke(type: String = "development",
|
|
7203
7238
|
skipCertificateMatchingArg,
|
7204
7239
|
outputPathArg,
|
7205
7240
|
skipSetPartitionListArg,
|
7241
|
+
forceLegacyEncryptionArg,
|
7206
7242
|
verboseArg]
|
7207
7243
|
let args: [RubyCommand.Argument] = array
|
7208
7244
|
.filter { $0?.value != nil }
|
@@ -8854,6 +8890,7 @@ public func rubyVersion() {
|
|
8854
8890
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
8855
8891
|
- numberOfRetries: The number of times a test can fail
|
8856
8892
|
- failBuild: Should this step stop the build if the tests fail? Set this to false if you're using trainer
|
8893
|
+
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
8857
8894
|
|
8858
8895
|
- returns: Outputs hash of results with the following keys: :number_of_tests, :number_of_failures, :number_of_retries, :number_of_tests_excluding_retries, :number_of_failures_excluding_retries
|
8859
8896
|
|
@@ -8936,7 +8973,8 @@ public func rubyVersion() {
|
|
8936
8973
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
8937
8974
|
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
8938
8975
|
numberOfRetries: Int = 0,
|
8939
|
-
failBuild: OptionalConfigValue<Bool> = .fastlaneDefault(true)
|
8976
|
+
failBuild: OptionalConfigValue<Bool> = .fastlaneDefault(true),
|
8977
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil)) -> [String: Any]
|
8940
8978
|
{
|
8941
8979
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
8942
8980
|
let projectArg = project.asRubyArgument(name: "project", type: nil)
|
@@ -9016,6 +9054,7 @@ public func rubyVersion() {
|
|
9016
9054
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
9017
9055
|
let numberOfRetriesArg = RubyCommand.Argument(name: "number_of_retries", value: numberOfRetries, type: nil)
|
9018
9056
|
let failBuildArg = failBuild.asRubyArgument(name: "fail_build", type: nil)
|
9057
|
+
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
9019
9058
|
let array: [RubyCommand.Argument?] = [workspaceArg,
|
9020
9059
|
projectArg,
|
9021
9060
|
packagePathArg,
|
@@ -9093,7 +9132,8 @@ public func rubyVersion() {
|
|
9093
9132
|
disablePackageAutomaticUpdatesArg,
|
9094
9133
|
useSystemScmArg,
|
9095
9134
|
numberOfRetriesArg,
|
9096
|
-
failBuildArg
|
9135
|
+
failBuildArg,
|
9136
|
+
packageAuthorizationProviderArg]
|
9097
9137
|
let args: [RubyCommand.Argument] = array
|
9098
9138
|
.filter { $0?.value != nil }
|
9099
9139
|
.compactMap { $0 }
|
@@ -9285,6 +9325,7 @@ public func say(text: [String],
|
|
9285
9325
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
9286
9326
|
- numberOfRetries: The number of times a test can fail
|
9287
9327
|
- failBuild: Should this step stop the build if the tests fail? Set this to false if you're using trainer
|
9328
|
+
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
9288
9329
|
|
9289
9330
|
- returns: Outputs hash of results with the following keys: :number_of_tests, :number_of_failures, :number_of_retries, :number_of_tests_excluding_retries, :number_of_failures_excluding_retries
|
9290
9331
|
|
@@ -9367,7 +9408,8 @@ public func say(text: [String],
|
|
9367
9408
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.disablePackageAutomaticUpdates),
|
9368
9409
|
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.useSystemScm),
|
9369
9410
|
numberOfRetries: Int = scanfile.numberOfRetries,
|
9370
|
-
failBuild: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.failBuild)
|
9411
|
+
failBuild: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.failBuild),
|
9412
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(scanfile.packageAuthorizationProvider)) -> [String: Any]
|
9371
9413
|
{
|
9372
9414
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
9373
9415
|
let projectArg = project.asRubyArgument(name: "project", type: nil)
|
@@ -9447,6 +9489,7 @@ public func say(text: [String],
|
|
9447
9489
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
9448
9490
|
let numberOfRetriesArg = RubyCommand.Argument(name: "number_of_retries", value: numberOfRetries, type: nil)
|
9449
9491
|
let failBuildArg = failBuild.asRubyArgument(name: "fail_build", type: nil)
|
9492
|
+
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
9450
9493
|
let array: [RubyCommand.Argument?] = [workspaceArg,
|
9451
9494
|
projectArg,
|
9452
9495
|
packagePathArg,
|
@@ -9524,7 +9567,8 @@ public func say(text: [String],
|
|
9524
9567
|
disablePackageAutomaticUpdatesArg,
|
9525
9568
|
useSystemScmArg,
|
9526
9569
|
numberOfRetriesArg,
|
9527
|
-
failBuildArg
|
9570
|
+
failBuildArg,
|
9571
|
+
packageAuthorizationProviderArg]
|
9528
9572
|
let args: [RubyCommand.Argument] = array
|
9529
9573
|
.filter { $0?.value != nil }
|
9530
9574
|
.compactMap { $0 }
|
@@ -9707,7 +9751,7 @@ public func setBuildNumberRepository(useHgRevisionNumber: OptionalConfigValue<Bo
|
|
9707
9751
|
- changelog: Changelog text that should be uploaded to App Store Connect
|
9708
9752
|
- teamId: The ID of your App Store Connect team if you're in multiple teams
|
9709
9753
|
- 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)
|
9754
|
+
- platform: The platform of the app (ios, appletvos, xros, mac)
|
9711
9755
|
|
9712
9756
|
This is useful if you have only one changelog for all languages.
|
9713
9757
|
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.
|
@@ -10205,7 +10249,8 @@ public func skipDocs() {
|
|
10205
10249
|
- useWebhookConfiguredUsernameAndIcon: Use webhook's default username and icon settings? (true/false)
|
10206
10250
|
- slackUrl: Create an Incoming WebHook for your Slack group
|
10207
10251
|
- username: Overrides the webhook's username property if use_webhook_configured_username_and_icon is false
|
10208
|
-
- iconUrl: Overrides the webhook's image property if use_webhook_configured_username_and_icon is false
|
10252
|
+
- iconUrl: Specifies a URL of an image to use as the photo of the message. Overrides the webhook's image property if use_webhook_configured_username_and_icon is false
|
10253
|
+
- iconEmoji: Specifies an emoji (using colon shortcodes, eg. :white_check_mark:) to use as the photo of the message. Overrides the webhook's image property if use_webhook_configured_username_and_icon is false. This parameter takes precedence over icon_url
|
10209
10254
|
- payload: Add additional information to this post. payload must be a hash containing any key with any value
|
10210
10255
|
- defaultPayloads: Specifies default payloads to include. Pass an empty array to suppress all the default payloads
|
10211
10256
|
- attachmentProperties: Merge additional properties in the slack attachment, see https://api.slack.com/docs/attachments
|
@@ -10222,6 +10267,7 @@ public func slack(message: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
10222
10267
|
slackUrl: String,
|
10223
10268
|
username: String = "fastlane",
|
10224
10269
|
iconUrl: String = "https://fastlane.tools/assets/img/fastlane_icon.png",
|
10270
|
+
iconEmoji: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
10225
10271
|
payload: [String: Any] = [:],
|
10226
10272
|
defaultPayloads: [String] = ["lane", "test_result", "git_branch", "git_author", "last_git_commit", "last_git_commit_hash"],
|
10227
10273
|
attachmentProperties: [String: Any] = [:],
|
@@ -10236,6 +10282,7 @@ public func slack(message: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
10236
10282
|
let slackUrlArg = RubyCommand.Argument(name: "slack_url", value: slackUrl, type: nil)
|
10237
10283
|
let usernameArg = RubyCommand.Argument(name: "username", value: username, type: nil)
|
10238
10284
|
let iconUrlArg = RubyCommand.Argument(name: "icon_url", value: iconUrl, type: nil)
|
10285
|
+
let iconEmojiArg = iconEmoji.asRubyArgument(name: "icon_emoji", type: nil)
|
10239
10286
|
let payloadArg = RubyCommand.Argument(name: "payload", value: payload, type: nil)
|
10240
10287
|
let defaultPayloadsArg = RubyCommand.Argument(name: "default_payloads", value: defaultPayloads, type: nil)
|
10241
10288
|
let attachmentPropertiesArg = RubyCommand.Argument(name: "attachment_properties", value: attachmentProperties, type: nil)
|
@@ -10249,6 +10296,7 @@ public func slack(message: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
10249
10296
|
slackUrlArg,
|
10250
10297
|
usernameArg,
|
10251
10298
|
iconUrlArg,
|
10299
|
+
iconEmojiArg,
|
10252
10300
|
payloadArg,
|
10253
10301
|
defaultPayloadsArg,
|
10254
10302
|
attachmentPropertiesArg,
|
@@ -10504,6 +10552,7 @@ public func slather(buildDirectory: OptionalConfigValue<String?> = .fastlaneDefa
|
|
10504
10552
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
10505
10553
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
10506
10554
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
10555
|
+
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
10507
10556
|
- testplan: The testplan associated with the scheme that should be used for testing
|
10508
10557
|
- onlyTesting: Array of strings matching Test Bundle/Test Suite/Test Cases to run
|
10509
10558
|
- skipTesting: Array of strings matching Test Bundle/Test Suite/Test Cases to skip
|
@@ -10554,6 +10603,7 @@ public func snapshot(workspace: OptionalConfigValue<String?> = .fastlaneDefault(
|
|
10554
10603
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(snapshotfile.clonedSourcePackagesPath),
|
10555
10604
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(snapshotfile.skipPackageDependenciesResolution),
|
10556
10605
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(snapshotfile.disablePackageAutomaticUpdates),
|
10606
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(snapshotfile.packageAuthorizationProvider),
|
10557
10607
|
testplan: OptionalConfigValue<String?> = .fastlaneDefault(snapshotfile.testplan),
|
10558
10608
|
onlyTesting: Any? = snapshotfile.onlyTesting,
|
10559
10609
|
skipTesting: Any? = snapshotfile.skipTesting,
|
@@ -10604,6 +10654,7 @@ public func snapshot(workspace: OptionalConfigValue<String?> = .fastlaneDefault(
|
|
10604
10654
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
10605
10655
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
10606
10656
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
10657
|
+
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
10607
10658
|
let testplanArg = testplan.asRubyArgument(name: "testplan", type: nil)
|
10608
10659
|
let onlyTestingArg = RubyCommand.Argument(name: "only_testing", value: onlyTesting, type: nil)
|
10609
10660
|
let skipTestingArg = RubyCommand.Argument(name: "skip_testing", value: skipTesting, type: nil)
|
@@ -10653,6 +10704,7 @@ public func snapshot(workspace: OptionalConfigValue<String?> = .fastlaneDefault(
|
|
10653
10704
|
clonedSourcePackagesPathArg,
|
10654
10705
|
skipPackageDependenciesResolutionArg,
|
10655
10706
|
disablePackageAutomaticUpdatesArg,
|
10707
|
+
packageAuthorizationProviderArg,
|
10656
10708
|
testplanArg,
|
10657
10709
|
onlyTestingArg,
|
10658
10710
|
skipTestingArg,
|
@@ -11336,6 +11388,7 @@ public func swiftlint(mode: String = "lint",
|
|
11336
11388
|
- skipCertificateMatching: Set to true if there is no access to Apple developer portal but there are certificates, keys and profiles provided. Only works with match import action
|
11337
11389
|
- outputPath: Path in which to export certificates, key and profile
|
11338
11390
|
- skipSetPartitionList: Skips setting the partition list (which can sometimes take a long time). Setting the partition list is usually needed to prevent Xcode from prompting to allow a cert to be used for signing
|
11391
|
+
- forceLegacyEncryption: Force encryption to use legacy cbc algorithm for backwards compatibility with older match versions
|
11339
11392
|
- verbose: Print out extra information and all commands
|
11340
11393
|
|
11341
11394
|
More information: https://docs.fastlane.tools/actions/match/
|
@@ -11394,6 +11447,7 @@ public func syncCodeSigning(type: String = "development",
|
|
11394
11447
|
skipCertificateMatching: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
11395
11448
|
outputPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
11396
11449
|
skipSetPartitionList: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
11450
|
+
forceLegacyEncryption: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
11397
11451
|
verbose: OptionalConfigValue<Bool> = .fastlaneDefault(false))
|
11398
11452
|
{
|
11399
11453
|
let typeArg = RubyCommand.Argument(name: "type", value: type, type: nil)
|
@@ -11450,6 +11504,7 @@ public func syncCodeSigning(type: String = "development",
|
|
11450
11504
|
let skipCertificateMatchingArg = skipCertificateMatching.asRubyArgument(name: "skip_certificate_matching", type: nil)
|
11451
11505
|
let outputPathArg = outputPath.asRubyArgument(name: "output_path", type: nil)
|
11452
11506
|
let skipSetPartitionListArg = skipSetPartitionList.asRubyArgument(name: "skip_set_partition_list", type: nil)
|
11507
|
+
let forceLegacyEncryptionArg = forceLegacyEncryption.asRubyArgument(name: "force_legacy_encryption", type: nil)
|
11453
11508
|
let verboseArg = verbose.asRubyArgument(name: "verbose", type: nil)
|
11454
11509
|
let array: [RubyCommand.Argument?] = [typeArg,
|
11455
11510
|
additionalCertTypesArg,
|
@@ -11505,6 +11560,7 @@ public func syncCodeSigning(type: String = "development",
|
|
11505
11560
|
skipCertificateMatchingArg,
|
11506
11561
|
outputPathArg,
|
11507
11562
|
skipSetPartitionListArg,
|
11563
|
+
forceLegacyEncryptionArg,
|
11508
11564
|
verboseArg]
|
11509
11565
|
let args: [RubyCommand.Argument] = array
|
11510
11566
|
.filter { $0?.value != nil }
|
@@ -11548,6 +11604,7 @@ public func teamName() {
|
|
11548
11604
|
- options: Array of options (shake,video_only_wifi,anonymous)
|
11549
11605
|
- custom: Array of custom options. Contact support@testfairy.com for more information
|
11550
11606
|
- timeout: Request timeout in seconds
|
11607
|
+
- tags: Custom tags that can be used to organize your builds
|
11551
11608
|
|
11552
11609
|
You can retrieve your API key on [your settings page](https://free.testfairy.com/settings/)
|
11553
11610
|
*/
|
@@ -11563,7 +11620,8 @@ public func testfairy(apiKey: String,
|
|
11563
11620
|
notify: String = "off",
|
11564
11621
|
options: [String] = [],
|
11565
11622
|
custom: String = "",
|
11566
|
-
timeout: OptionalConfigValue<Int?> = .fastlaneDefault(nil)
|
11623
|
+
timeout: OptionalConfigValue<Int?> = .fastlaneDefault(nil),
|
11624
|
+
tags: [String] = [])
|
11567
11625
|
{
|
11568
11626
|
let apiKeyArg = RubyCommand.Argument(name: "api_key", value: apiKey, type: nil)
|
11569
11627
|
let ipaArg = ipa.asRubyArgument(name: "ipa", type: nil)
|
@@ -11578,6 +11636,7 @@ public func testfairy(apiKey: String,
|
|
11578
11636
|
let optionsArg = RubyCommand.Argument(name: "options", value: options, type: nil)
|
11579
11637
|
let customArg = RubyCommand.Argument(name: "custom", value: custom, type: nil)
|
11580
11638
|
let timeoutArg = timeout.asRubyArgument(name: "timeout", type: nil)
|
11639
|
+
let tagsArg = RubyCommand.Argument(name: "tags", value: tags, type: nil)
|
11581
11640
|
let array: [RubyCommand.Argument?] = [apiKeyArg,
|
11582
11641
|
ipaArg,
|
11583
11642
|
apkArg,
|
@@ -11590,7 +11649,8 @@ public func testfairy(apiKey: String,
|
|
11590
11649
|
notifyArg,
|
11591
11650
|
optionsArg,
|
11592
11651
|
customArg,
|
11593
|
-
timeoutArg
|
11652
|
+
timeoutArg,
|
11653
|
+
tagsArg]
|
11594
11654
|
let args: [RubyCommand.Argument] = array
|
11595
11655
|
.filter { $0?.value != nil }
|
11596
11656
|
.compactMap { $0 }
|
@@ -13598,7 +13658,7 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
|
|
13598
13658
|
coverallsServiceJobId: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
13599
13659
|
coverallsRepoToken: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
13600
13660
|
xcconfig: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
13601
|
-
ideFoundationPath: String = "/Applications/Xcode_15.
|
13661
|
+
ideFoundationPath: String = "/Applications/Xcode_15.4.app/Contents/Developer/../Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation",
|
13602
13662
|
legacySupport: OptionalConfigValue<Bool> = .fastlaneDefault(false))
|
13603
13663
|
{
|
13604
13664
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
@@ -13801,4 +13861,4 @@ public let snapshotfile: Snapshotfile = .init()
|
|
13801
13861
|
|
13802
13862
|
// Please don't remove the lines below
|
13803
13863
|
// They are used to detect outdated files
|
13804
|
-
// FastlaneRunnerAPIVersion [0.9.
|
13864
|
+
// FastlaneRunnerAPIVersion [0.9.181]
|
@@ -151,6 +151,9 @@ public protocol GymfileProtocol: AnyObject {
|
|
151
151
|
|
152
152
|
/// Lets xcodebuild use system's scm configuration
|
153
153
|
var useSystemScm: Bool { get }
|
154
|
+
|
155
|
+
/// Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
156
|
+
var packageAuthorizationProvider: String? { get }
|
154
157
|
}
|
155
158
|
|
156
159
|
public extension GymfileProtocol {
|
@@ -204,8 +207,9 @@ public extension GymfileProtocol {
|
|
204
207
|
var skipPackageDependenciesResolution: Bool { return false }
|
205
208
|
var disablePackageAutomaticUpdates: Bool { return false }
|
206
209
|
var useSystemScm: Bool { return false }
|
210
|
+
var packageAuthorizationProvider: String? { return nil }
|
207
211
|
}
|
208
212
|
|
209
213
|
// Please don't remove the lines below
|
210
214
|
// They are used to detect outdated files
|
211
|
-
// FastlaneRunnerAPIVersion [0.9.
|
215
|
+
// FastlaneRunnerAPIVersion [0.9.131]
|
@@ -164,6 +164,9 @@ public protocol MatchfileProtocol: AnyObject {
|
|
164
164
|
/// Skips setting the partition list (which can sometimes take a long time). Setting the partition list is usually needed to prevent Xcode from prompting to allow a cert to be used for signing
|
165
165
|
var skipSetPartitionList: Bool { get }
|
166
166
|
|
167
|
+
/// Force encryption to use legacy cbc algorithm for backwards compatibility with older match versions
|
168
|
+
var forceLegacyEncryption: Bool { get }
|
169
|
+
|
167
170
|
/// Print out extra information and all commands
|
168
171
|
var verbose: Bool { get }
|
169
172
|
}
|
@@ -223,9 +226,10 @@ public extension MatchfileProtocol {
|
|
223
226
|
var skipCertificateMatching: Bool { return false }
|
224
227
|
var outputPath: String? { return nil }
|
225
228
|
var skipSetPartitionList: Bool { return false }
|
229
|
+
var forceLegacyEncryption: Bool { return false }
|
226
230
|
var verbose: Bool { return false }
|
227
231
|
}
|
228
232
|
|
229
233
|
// Please don't remove the lines below
|
230
234
|
// They are used to detect outdated files
|
231
|
-
// FastlaneRunnerAPIVersion [0.9.
|
235
|
+
// FastlaneRunnerAPIVersion [0.9.125]
|