fastlane 2.171.0 → 2.176.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +82 -82
  3. data/cert/lib/cert/options.rb +2 -2
  4. data/deliver/lib/deliver/commands_generator.rb +1 -1
  5. data/deliver/lib/deliver/options.rb +2 -2
  6. data/deliver/lib/deliver/runner.rb +1 -1
  7. data/deliver/lib/deliver/setup.rb +8 -3
  8. data/deliver/lib/deliver/upload_screenshots.rb +2 -1
  9. data/fastlane/lib/fastlane/actions/adb.rb +1 -1
  10. data/fastlane/lib/fastlane/actions/app_store_build_number.rb +2 -2
  11. data/fastlane/lib/fastlane/actions/app_store_connect_api_key.rb +1 -0
  12. data/fastlane/lib/fastlane/actions/appetize.rb +13 -1
  13. data/fastlane/lib/fastlane/actions/artifactory.rb +36 -3
  14. data/fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb +10 -2
  15. data/fastlane/lib/fastlane/actions/build_app.rb +3 -1
  16. data/fastlane/lib/fastlane/actions/carthage.rb +22 -0
  17. data/fastlane/lib/fastlane/actions/cocoapods.rb +15 -1
  18. data/fastlane/lib/fastlane/actions/create_pull_request.rb +16 -1
  19. data/fastlane/lib/fastlane/actions/create_xcframework.rb +118 -0
  20. data/fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md +1 -1
  21. data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +1 -1
  22. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +8 -2
  23. data/fastlane/lib/fastlane/actions/download_dsyms.rb +5 -16
  24. data/fastlane/lib/fastlane/actions/git_commit.rb +9 -5
  25. data/fastlane/lib/fastlane/actions/jazzy.rb +10 -1
  26. data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +2 -2
  27. data/fastlane/lib/fastlane/actions/push_to_git_remote.rb +1 -1
  28. data/fastlane/lib/fastlane/actions/register_device.rb +3 -3
  29. data/fastlane/lib/fastlane/actions/register_devices.rb +4 -3
  30. data/fastlane/lib/fastlane/actions/set_changelog.rb +2 -2
  31. data/fastlane/lib/fastlane/actions/swiftlint.rb +4 -4
  32. data/fastlane/lib/fastlane/actions/update_code_signing_settings.rb +1 -1
  33. data/fastlane/lib/fastlane/actions/upload_to_testflight.rb +5 -1
  34. data/fastlane/lib/fastlane/cli_tools_distributor.rb +3 -0
  35. data/fastlane/lib/fastlane/documentation/actions_list.rb +2 -2
  36. data/fastlane/lib/fastlane/helper/adb_helper.rb +1 -1
  37. data/fastlane/lib/fastlane/helper/gem_helper.rb +2 -2
  38. data/fastlane/lib/fastlane/version.rb +1 -1
  39. data/fastlane/swift/Actions.swift +1 -1
  40. data/fastlane/swift/Appfile.swift +1 -1
  41. data/fastlane/swift/ArgumentProcessor.swift +1 -1
  42. data/fastlane/swift/ControlCommand.swift +1 -1
  43. data/fastlane/swift/Deliverfile.swift +2 -2
  44. data/fastlane/swift/DeliverfileProtocol.swift +2 -2
  45. data/fastlane/swift/Fastlane.swift +165 -32
  46. data/fastlane/swift/Gymfile.swift +2 -2
  47. data/fastlane/swift/GymfileProtocol.swift +11 -3
  48. data/fastlane/swift/LaneFileProtocol.swift +1 -1
  49. data/fastlane/swift/MainProcess.swift +1 -1
  50. data/fastlane/swift/Matchfile.swift +2 -2
  51. data/fastlane/swift/MatchfileProtocol.swift +2 -2
  52. data/fastlane/swift/Plugins.swift +1 -1
  53. data/fastlane/swift/Precheckfile.swift +2 -2
  54. data/fastlane/swift/PrecheckfileProtocol.swift +2 -2
  55. data/fastlane/swift/RubyCommand.swift +1 -1
  56. data/fastlane/swift/RubyCommandable.swift +1 -1
  57. data/fastlane/swift/Runner.swift +2 -2
  58. data/fastlane/swift/RunnerArgument.swift +1 -1
  59. data/fastlane/swift/Scanfile.swift +2 -2
  60. data/fastlane/swift/ScanfileProtocol.swift +14 -2
  61. data/fastlane/swift/Screengrabfile.swift +2 -2
  62. data/fastlane/swift/ScreengrabfileProtocol.swift +2 -2
  63. data/fastlane/swift/Snapshotfile.swift +2 -2
  64. data/fastlane/swift/SnapshotfileProtocol.swift +14 -2
  65. data/fastlane/swift/SocketClient.swift +1 -1
  66. data/fastlane/swift/SocketClientDelegateProtocol.swift +1 -1
  67. data/fastlane/swift/SocketResponse.swift +1 -1
  68. data/fastlane/swift/formatting/Brewfile.lock.json +20 -14
  69. data/fastlane/swift/main.swift +1 -1
  70. data/fastlane_core/lib/fastlane_core/command_executor.rb +3 -9
  71. data/fastlane_core/lib/fastlane_core/configuration/commander_generator.rb +1 -1
  72. data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +23 -0
  73. data/fastlane_core/lib/fastlane_core/configuration/configuration.rb +9 -5
  74. data/fastlane_core/lib/fastlane_core/helper.rb +27 -6
  75. data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +41 -16
  76. data/fastlane_core/lib/fastlane_core/keychain_importer.rb +1 -1
  77. data/fastlane_core/lib/fastlane_core/project.rb +41 -14
  78. data/fastlane_core/lib/fastlane_core/update_checker/update_checker.rb +2 -2
  79. data/frameit/lib/frameit/device_types.rb +7 -1
  80. data/gym/lib/gym/error_handler.rb +8 -0
  81. data/gym/lib/gym/generators/build_command_generator.rb +3 -1
  82. data/gym/lib/gym/generators/package_command_generator_xcode7.rb +2 -2
  83. data/gym/lib/gym/options.rb +12 -2
  84. data/match/lib/match/nuke.rb +5 -0
  85. data/match/lib/match/options.rb +2 -2
  86. data/pilot/lib/pilot/.build_manager.rb.swp +0 -0
  87. data/pilot/lib/pilot/build_manager.rb +7 -2
  88. data/pilot/lib/pilot/options.rb +3 -3
  89. data/precheck/lib/precheck/options.rb +2 -2
  90. data/precheck/lib/precheck/runner.rb +1 -1
  91. data/scan/lib/scan/options.rb +15 -0
  92. data/scan/lib/scan/runner.rb +33 -1
  93. data/scan/lib/scan/slack_poster.rb +3 -1
  94. data/scan/lib/scan/test_command_generator.rb +3 -1
  95. data/screengrab/lib/screengrab/android_environment.rb +2 -2
  96. data/screengrab/lib/screengrab/runner.rb +1 -2
  97. data/sigh/lib/sigh/options.rb +2 -2
  98. data/snapshot/lib/assets/SnapshotHelper.swift +1 -1
  99. data/snapshot/lib/snapshot/options.rb +16 -1
  100. data/snapshot/lib/snapshot/update.rb +1 -1
  101. data/spaceship/README.md +2 -2
  102. data/spaceship/lib/spaceship/client.rb +14 -1
  103. data/spaceship/lib/spaceship/connect_api/api_client.rb +16 -1
  104. data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +3 -1
  105. data/spaceship/lib/spaceship/connect_api/models/beta_group.rb +9 -0
  106. data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +24 -0
  107. data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +26 -4
  108. data/spaceship/lib/spaceship/connect_api/models/device.rb +26 -0
  109. data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +53 -0
  110. data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +12 -0
  111. data/spaceship/lib/spaceship/connect_api/token.rb +1 -1
  112. data/spaceship/lib/spaceship/playground.rb +2 -2
  113. data/spaceship/lib/spaceship/tunes/tunes_client.rb +2 -2
  114. data/spaceship/lib/spaceship/two_step_or_factor_client.rb +42 -28
  115. data/spaceship/lib/spaceship/upgrade_2fa_later_client.rb +91 -0
  116. metadata +51 -23
  117. data/fastlane/lib/fastlane/actions/.download_dsyms.rb.swp +0 -0
  118. data/fastlane/lib/fastlane/actions/.github_api.rb.swp +0 -0
  119. data/fastlane/lib/fastlane/actions/.set_github_release.rb.swp +0 -0
metadata CHANGED
@@ -1,35 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.171.0
4
+ version: 2.176.0
5
5
  platform: ruby
6
6
  authors:
7
- - Maksym Grebenets
8
- - Kohki Miki
9
7
  - Jan Piotrowski
10
- - Helmut Januschka
11
- - Joshua Liebowitz
8
+ - Stefan Natchev
12
9
  - Aaron Brager
13
- - Andrew McBurney
14
- - Danielle Tomlinson
15
- - Jorge Revuelta H
16
10
  - Manu Wallner
17
- - Josh Holtz
18
- - Iulian Onofrei
19
- - Stefan Natchev
11
+ - Jérôme Lacoste
20
12
  - Olivier Halligon
21
- - Max Ott
13
+ - Helmut Januschka
14
+ - Jorge Revuelta H
15
+ - Danielle Tomlinson
16
+ - Jimmy Dee
17
+ - Felix Krause
18
+ - Andrew McBurney
19
+ - Fumiya Nakamura
22
20
  - Daniel Jankowski
21
+ - Maksym Grebenets
22
+ - Iulian Onofrei
23
+ - Josh Holtz
24
+ - Max Ott
23
25
  - Luka Mirosevic
24
- - Jérôme Lacoste
25
- - Fumiya Nakamura
26
- - Felix Krause
27
- - Jimmy Dee
26
+ - Joshua Liebowitz
27
+ - Kohki Miki
28
28
  - Matthew Ellis
29
29
  autorequire:
30
30
  bindir: bin
31
31
  cert_chain: []
32
- date: 2020-12-31 00:00:00.000000000 Z
32
+ date: 2021-02-24 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: slack-notifier
@@ -253,6 +253,20 @@ dependencies:
253
253
  - - "<"
254
254
  - !ruby/object:Gem::Version
255
255
  version: 1.0.0
256
+ - !ruby/object:Gem::Dependency
257
+ name: artifactory
258
+ requirement: !ruby/object:Gem::Requirement
259
+ requirements:
260
+ - - "~>"
261
+ - !ruby/object:Gem::Version
262
+ version: '3.0'
263
+ type: :runtime
264
+ prerelease: false
265
+ version_requirements: !ruby/object:Gem::Requirement
266
+ requirements:
267
+ - - "~>"
268
+ - !ruby/object:Gem::Version
269
+ version: '3.0'
256
270
  - !ruby/object:Gem::Dependency
257
271
  name: babosa
258
272
  requirement: !ruby/object:Gem::Requirement
@@ -463,6 +477,20 @@ dependencies:
463
477
  - - "<"
464
478
  - !ruby/object:Gem::Version
465
479
  version: 5.0.0
480
+ - !ruby/object:Gem::Dependency
481
+ name: naturally
482
+ requirement: !ruby/object:Gem::Requirement
483
+ requirements:
484
+ - - "~>"
485
+ - !ruby/object:Gem::Version
486
+ version: '2.2'
487
+ type: :runtime
488
+ prerelease: false
489
+ version_requirements: !ruby/object:Gem::Requirement
490
+ requirements:
491
+ - - "~>"
492
+ - !ruby/object:Gem::Version
493
+ version: '2.2'
466
494
  - !ruby/object:Gem::Dependency
467
495
  name: rubyzip
468
496
  requirement: !ruby/object:Gem::Requirement
@@ -679,14 +707,14 @@ dependencies:
679
707
  requirements:
680
708
  - - "~>"
681
709
  - !ruby/object:Gem::Version
682
- version: 3.9.0
710
+ version: 3.10.0
683
711
  type: :development
684
712
  prerelease: false
685
713
  version_requirements: !ruby/object:Gem::Requirement
686
714
  requirements:
687
715
  - - "~>"
688
716
  - !ruby/object:Gem::Version
689
- version: 3.9.0
717
+ version: 3.10.0
690
718
  - !ruby/object:Gem::Dependency
691
719
  name: rspec_junit_formatter
692
720
  requirement: !ruby/object:Gem::Requirement
@@ -984,10 +1012,7 @@ files:
984
1012
  - fastlane/lib/fastlane/.erb_template_helper.rb.swp
985
1013
  - fastlane/lib/fastlane/action.rb
986
1014
  - fastlane/lib/fastlane/action_collector.rb
987
- - fastlane/lib/fastlane/actions/.download_dsyms.rb.swp
988
1015
  - fastlane/lib/fastlane/actions/.git_commit.rb.swp
989
- - fastlane/lib/fastlane/actions/.github_api.rb.swp
990
- - fastlane/lib/fastlane/actions/.set_github_release.rb.swp
991
1016
  - fastlane/lib/fastlane/actions/README.md
992
1017
  - fastlane/lib/fastlane/actions/actions_helper.rb
993
1018
  - fastlane/lib/fastlane/actions/adb.rb
@@ -1036,6 +1061,7 @@ files:
1036
1061
  - fastlane/lib/fastlane/actions/create_app_online.rb
1037
1062
  - fastlane/lib/fastlane/actions/create_keychain.rb
1038
1063
  - fastlane/lib/fastlane/actions/create_pull_request.rb
1064
+ - fastlane/lib/fastlane/actions/create_xcframework.rb
1039
1065
  - fastlane/lib/fastlane/actions/danger.rb
1040
1066
  - fastlane/lib/fastlane/actions/debug.rb
1041
1067
  - fastlane/lib/fastlane/actions/default_platform.rb
@@ -1488,6 +1514,7 @@ files:
1488
1514
  - pem/lib/pem/options.rb
1489
1515
  - pilot/README.md
1490
1516
  - pilot/lib/pilot.rb
1517
+ - pilot/lib/pilot/.build_manager.rb.swp
1491
1518
  - pilot/lib/pilot/build_manager.rb
1492
1519
  - pilot/lib/pilot/commands_generator.rb
1493
1520
  - pilot/lib/pilot/features.rb
@@ -1791,6 +1818,7 @@ files:
1791
1818
  - spaceship/lib/spaceship/tunes/version_set.rb
1792
1819
  - spaceship/lib/spaceship/two_step_or_factor_client.rb
1793
1820
  - spaceship/lib/spaceship/ui.rb
1821
+ - spaceship/lib/spaceship/upgrade_2fa_later_client.rb
1794
1822
  - supply/README.md
1795
1823
  - supply/lib/supply.rb
1796
1824
  - supply/lib/supply/apk_listing.rb
@@ -1840,7 +1868,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1840
1868
  - !ruby/object:Gem::Version
1841
1869
  version: '0'
1842
1870
  requirements: []
1843
- rubygems_version: 3.1.4
1871
+ rubygems_version: 3.0.3
1844
1872
  signing_key:
1845
1873
  specification_version: 4
1846
1874
  summary: The easiest way to automate beta deployments and releases for your iOS and