fastlane 2.178.0 → 2.182.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/LICENSE +1 -1
- data/README.md +97 -84
- data/cert/lib/cert/commands_generator.rb +2 -1
- data/cert/lib/cert/options.rb +1 -0
- data/cert/lib/cert/runner.rb +4 -0
- data/deliver/lib/deliver/commands_generator.rb +2 -1
- data/deliver/lib/deliver/download_screenshots.rb +1 -2
- data/deliver/lib/deliver/languages.rb +1 -1
- data/deliver/lib/deliver/options.rb +3 -2
- data/deliver/lib/deliver/runner.rb +4 -0
- data/deliver/lib/deliver/setup.rb +0 -1
- data/deliver/lib/deliver/upload_metadata.rb +2 -1
- data/fastlane/lib/fastlane/actions/actions_helper.rb +2 -2
- data/fastlane/lib/fastlane/actions/app_store_build_number.rb +5 -0
- data/fastlane/lib/fastlane/actions/app_store_connect_api_key.rb +3 -3
- data/fastlane/lib/fastlane/actions/backup_xcarchive.rb +1 -1
- data/fastlane/lib/fastlane/actions/build_app.rb +4 -0
- data/fastlane/lib/fastlane/actions/check_app_store_metadata.rb +4 -0
- data/fastlane/lib/fastlane/actions/clipboard.rb +3 -6
- data/fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md +1 -1
- data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +18 -1
- data/fastlane/lib/fastlane/actions/docs/upload_to_play_store.md +2 -1
- data/fastlane/lib/fastlane/actions/ensure_env_vars.rb +2 -6
- data/fastlane/lib/fastlane/actions/get_provisioning_profile.rb +4 -0
- data/fastlane/lib/fastlane/actions/get_version_number.rb +17 -10
- data/fastlane/lib/fastlane/actions/git_branch.rb +4 -10
- data/fastlane/lib/fastlane/actions/git_commit.rb +3 -1
- data/fastlane/lib/fastlane/actions/git_submodule_update.rb +16 -8
- data/fastlane/lib/fastlane/actions/git_tag_exists.rb +4 -0
- data/fastlane/lib/fastlane/actions/import_from_git.rb +5 -5
- data/fastlane/lib/fastlane/actions/install_provisioning_profile.rb +4 -0
- data/fastlane/lib/fastlane/actions/jira.rb +61 -14
- data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +1 -0
- data/fastlane/lib/fastlane/actions/match_nuke.rb +59 -0
- data/fastlane/lib/fastlane/actions/notarize.rb +98 -51
- data/fastlane/lib/fastlane/actions/slack.rb +155 -133
- data/fastlane/lib/fastlane/actions/sourcedocs.rb +164 -0
- data/fastlane/lib/fastlane/actions/spaceship_logs.rb +1 -1
- data/fastlane/lib/fastlane/actions/update_project_provisioning.rb +1 -2
- data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +4 -2
- data/fastlane/lib/fastlane/cli_tools_distributor.rb +1 -1
- data/fastlane/lib/fastlane/commands_generator.rb +2 -1
- data/fastlane/lib/fastlane/fast_file.rb +10 -2
- data/fastlane/lib/fastlane/fastlane_require.rb +7 -1
- data/fastlane/lib/fastlane/helper/git_helper.rb +19 -7
- data/fastlane/lib/fastlane/lane_manager.rb +3 -2
- data/fastlane/lib/fastlane/notification/slack.rb +56 -0
- data/fastlane/lib/fastlane/plugins/plugin_fetcher.rb +1 -2
- data/fastlane/lib/fastlane/plugins/plugin_info.rb +2 -2
- data/fastlane/lib/fastlane/plugins/plugin_info_collector.rb +1 -2
- data/fastlane/lib/fastlane/plugins/plugin_manager.rb +1 -2
- data/fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb +7 -6
- data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +30 -35
- data/fastlane/lib/fastlane/plugins/template/spec/spec_helper.rb.erb +1 -1
- data/fastlane/lib/fastlane/setup/setup.rb +23 -10
- data/fastlane/lib/fastlane/swift_fastlane_function.rb +39 -14
- data/fastlane/lib/fastlane/swift_runner_upgrader.rb +2 -0
- data/fastlane/lib/fastlane/version.rb +2 -2
- data/fastlane/swift/Deliverfile.swift +1 -1
- data/fastlane/swift/DeliverfileProtocol.swift +3 -3
- data/fastlane/swift/Fastlane.swift +6852 -3824
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +4 -0
- data/fastlane/swift/Gymfile.swift +1 -1
- data/fastlane/swift/GymfileProtocol.swift +1 -1
- data/fastlane/swift/LaneFileProtocol.swift +9 -3
- data/fastlane/swift/Matchfile.swift +1 -1
- data/fastlane/swift/MatchfileProtocol.swift +1 -1
- data/fastlane/swift/OptionalConfigValue.swift +131 -0
- data/fastlane/swift/Precheckfile.swift +1 -1
- data/fastlane/swift/PrecheckfileProtocol.swift +3 -3
- data/fastlane/swift/RubyCommand.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/SocketClient.swift +2 -1
- data/fastlane/swift/SocketResponse.swift +4 -2
- data/fastlane/swift/formatting/Brewfile.lock.json +18 -16
- data/fastlane/swift/upgrade_manifest.json +1 -1
- data/fastlane_core/lib/fastlane_core.rb +22 -21
- data/fastlane_core/lib/fastlane_core/build_watcher.rb +50 -9
- data/fastlane_core/lib/fastlane_core/clipboard.rb +20 -0
- data/fastlane_core/lib/fastlane_core/configuration/configuration.rb +5 -3
- data/fastlane_core/lib/fastlane_core/helper.rb +28 -5
- data/fastlane_core/lib/fastlane_core/languages.rb +2 -2
- data/fastlane_core/lib/fastlane_core/queue_worker.rb +2 -2
- data/fastlane_core/lib/fastlane_core/swag.rb +1 -1
- data/fastlane_core/lib/fastlane_core/ui/help.erb +35 -0
- data/fastlane_core/lib/fastlane_core/ui/help_formatter.rb +16 -0
- data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +12 -1
- data/frameit/lib/frameit/commands_generator.rb +2 -1
- data/gym/lib/gym/commands_generator.rb +2 -1
- data/gym/lib/gym/generators/package_command_generator.rb +4 -0
- data/gym/lib/gym/generators/package_command_generator_xcode7.rb +13 -8
- data/gym/lib/gym/runner.rb +15 -4
- data/match/lib/match/change_password.rb +3 -3
- data/match/lib/match/commands_generator.rb +2 -1
- data/match/lib/match/encryption/interface.rb +1 -1
- data/match/lib/match/encryption/openssl.rb +2 -2
- data/match/lib/match/module.rb +1 -0
- data/pem/lib/pem/commands_generator.rb +2 -1
- data/pilot/lib/pilot/commands_generator.rb +2 -1
- data/pilot/lib/pilot/manager.rb +4 -0
- data/pilot/lib/pilot/options.rb +3 -2
- data/pilot/lib/pilot/tester_exporter.rb +0 -1
- data/pilot/lib/pilot/tester_manager.rb +0 -1
- data/precheck/lib/precheck/commands_generator.rb +2 -1
- data/precheck/lib/precheck/options.rb +1 -0
- data/precheck/lib/precheck/runner.rb +4 -0
- data/produce/lib/produce/commands_generator.rb +2 -1
- data/scan/lib/scan/commands_generator.rb +2 -1
- data/scan/lib/scan/options.rb +10 -5
- data/scan/lib/scan/runner.rb +54 -1
- data/scan/lib/scan/test_command_generator.rb +10 -8
- data/screengrab/lib/screengrab/android_environment.rb +6 -4
- data/screengrab/lib/screengrab/commands_generator.rb +2 -1
- data/screengrab/lib/screengrab/runner.rb +1 -1
- data/sigh/lib/sigh/commands_generator.rb +2 -1
- data/sigh/lib/sigh/options.rb +1 -0
- data/sigh/lib/sigh/runner.rb +4 -0
- data/snapshot/lib/assets/SnapfileTemplate +1 -1
- data/snapshot/lib/assets/SnapshotHelper.swift +1 -1
- data/snapshot/lib/snapshot/commands_generator.rb +3 -1
- data/snapshot/lib/snapshot/options.rb +5 -0
- data/snapshot/lib/snapshot/reports_generator.rb +4 -0
- data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +2 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +1 -1
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +8 -4
- data/spaceship/README.md +2 -12
- data/spaceship/lib/spaceship/base.rb +2 -2
- data/spaceship/lib/spaceship/commands_generator.rb +4 -2
- data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +1 -1
- data/spaceship/lib/spaceship/connect_api/models/profile.rb +6 -0
- data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +6 -2
- data/spaceship/lib/spaceship/connect_api/token.rb +7 -1
- data/spaceship/lib/spaceship/spaceauth_runner.rb +19 -9
- data/spaceship/lib/spaceship/tunes/members.rb +1 -1
- data/spaceship/lib/spaceship/ui.rb +2 -2
- data/supply/lib/supply/client.rb +3 -1
- data/supply/lib/supply/commands_generator.rb +2 -1
- data/supply/lib/supply/options.rb +2 -2
- data/supply/lib/supply/uploader.rb +1 -0
- metadata +53 -64
- data/gym/lib/gym/.runner.rb.swp +0 -0
- data/pilot/lib/pilot/tester_util.rb +0 -0
metadata
CHANGED
@@ -1,56 +1,38 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.182.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
- Jorge Revuelta H
|
9
|
-
- Iulian Onofrei
|
10
|
-
- Kohki Miki
|
7
|
+
- Josh Holtz
|
11
8
|
- Fumiya Nakamura
|
12
|
-
-
|
9
|
+
- Andrew McBurney
|
10
|
+
- Luka Mirosevic
|
11
|
+
- Satoshi Namai
|
13
12
|
- Stefan Natchev
|
14
|
-
- Olivier Halligon
|
15
13
|
- Daniel Jankowski
|
16
|
-
-
|
14
|
+
- Jérôme Lacoste
|
15
|
+
- Olivier Halligon
|
16
|
+
- Jorge Revuelta H
|
17
|
+
- Kohki Miki
|
18
|
+
- Iulian Onofrei
|
17
19
|
- Jan Piotrowski
|
20
|
+
- Joshua Liebowitz
|
21
|
+
- Danielle Tomlinson
|
22
|
+
- Aaron Brager
|
18
23
|
- Felix Krause
|
19
|
-
-
|
24
|
+
- Matthew Ellis
|
25
|
+
- Manu Wallner
|
20
26
|
- Maksym Grebenets
|
21
|
-
-
|
27
|
+
- Helmut Januschka
|
28
|
+
- Jimmy Dee
|
29
|
+
- Roger Oba
|
22
30
|
- Max Ott
|
23
|
-
- Matthew Ellis
|
24
|
-
- Aaron Brager
|
25
|
-
- Jérôme Lacoste
|
26
|
-
- Luka Mirosevic
|
27
|
-
- Danielle Tomlinson
|
28
|
-
- Josh Holtz
|
29
31
|
autorequire:
|
30
32
|
bindir: bin
|
31
33
|
cert_chain: []
|
32
|
-
date: 2021-
|
34
|
+
date: 2021-05-05 00:00:00.000000000 Z
|
33
35
|
dependencies:
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: slack-notifier
|
36
|
-
requirement: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: 2.0.0
|
41
|
-
- - "<"
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 3.0.0
|
44
|
-
type: :runtime
|
45
|
-
prerelease: false
|
46
|
-
version_requirements: !ruby/object:Gem::Requirement
|
47
|
-
requirements:
|
48
|
-
- - ">="
|
49
|
-
- !ruby/object:Gem::Version
|
50
|
-
version: 2.0.0
|
51
|
-
- - "<"
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: 3.0.0
|
54
36
|
- !ruby/object:Gem::Dependency
|
55
37
|
name: xcodeproj
|
56
38
|
requirement: !ruby/object:Gem::Requirement
|
@@ -302,25 +284,19 @@ dependencies:
|
|
302
284
|
- !ruby/object:Gem::Version
|
303
285
|
version: '0'
|
304
286
|
- !ruby/object:Gem::Dependency
|
305
|
-
name: commander
|
287
|
+
name: commander
|
306
288
|
requirement: !ruby/object:Gem::Requirement
|
307
289
|
requirements:
|
308
|
-
- - "
|
309
|
-
- !ruby/object:Gem::Version
|
310
|
-
version: 4.4.6
|
311
|
-
- - "<"
|
290
|
+
- - "~>"
|
312
291
|
- !ruby/object:Gem::Version
|
313
|
-
version:
|
292
|
+
version: '4.6'
|
314
293
|
type: :runtime
|
315
294
|
prerelease: false
|
316
295
|
version_requirements: !ruby/object:Gem::Requirement
|
317
296
|
requirements:
|
318
|
-
- - "
|
319
|
-
- !ruby/object:Gem::Version
|
320
|
-
version: 4.4.6
|
321
|
-
- - "<"
|
297
|
+
- - "~>"
|
322
298
|
- !ruby/object:Gem::Version
|
323
|
-
version:
|
299
|
+
version: '4.6'
|
324
300
|
- !ruby/object:Gem::Dependency
|
325
301
|
name: excon
|
326
302
|
requirement: !ruby/object:Gem::Requirement
|
@@ -427,22 +403,16 @@ dependencies:
|
|
427
403
|
name: highline
|
428
404
|
requirement: !ruby/object:Gem::Requirement
|
429
405
|
requirements:
|
430
|
-
- - "
|
431
|
-
- !ruby/object:Gem::Version
|
432
|
-
version: 1.7.2
|
433
|
-
- - "<"
|
406
|
+
- - "~>"
|
434
407
|
- !ruby/object:Gem::Version
|
435
|
-
version: 2.0
|
408
|
+
version: '2.0'
|
436
409
|
type: :runtime
|
437
410
|
prerelease: false
|
438
411
|
version_requirements: !ruby/object:Gem::Requirement
|
439
412
|
requirements:
|
440
|
-
- - "
|
441
|
-
- !ruby/object:Gem::Version
|
442
|
-
version: 1.7.2
|
443
|
-
- - "<"
|
413
|
+
- - "~>"
|
444
414
|
- !ruby/object:Gem::Version
|
445
|
-
version: 2.0
|
415
|
+
version: '2.0'
|
446
416
|
- !ruby/object:Gem::Dependency
|
447
417
|
name: json
|
448
418
|
requirement: !ruby/object:Gem::Requirement
|
@@ -833,28 +803,42 @@ dependencies:
|
|
833
803
|
requirements:
|
834
804
|
- - '='
|
835
805
|
- !ruby/object:Gem::Version
|
836
|
-
version:
|
806
|
+
version: 1.12.1
|
837
807
|
type: :development
|
838
808
|
prerelease: false
|
839
809
|
version_requirements: !ruby/object:Gem::Requirement
|
840
810
|
requirements:
|
841
811
|
- - '='
|
842
812
|
- !ruby/object:Gem::Version
|
843
|
-
version:
|
813
|
+
version: 1.12.1
|
814
|
+
- !ruby/object:Gem::Dependency
|
815
|
+
name: rubocop-performance
|
816
|
+
requirement: !ruby/object:Gem::Requirement
|
817
|
+
requirements:
|
818
|
+
- - ">="
|
819
|
+
- !ruby/object:Gem::Version
|
820
|
+
version: '0'
|
821
|
+
type: :development
|
822
|
+
prerelease: false
|
823
|
+
version_requirements: !ruby/object:Gem::Requirement
|
824
|
+
requirements:
|
825
|
+
- - ">="
|
826
|
+
- !ruby/object:Gem::Version
|
827
|
+
version: '0'
|
844
828
|
- !ruby/object:Gem::Dependency
|
845
829
|
name: rubocop-require_tools
|
846
830
|
requirement: !ruby/object:Gem::Requirement
|
847
831
|
requirements:
|
848
832
|
- - ">="
|
849
833
|
- !ruby/object:Gem::Version
|
850
|
-
version: 0
|
834
|
+
version: '0'
|
851
835
|
type: :development
|
852
836
|
prerelease: false
|
853
837
|
version_requirements: !ruby/object:Gem::Requirement
|
854
838
|
requirements:
|
855
839
|
- - ">="
|
856
840
|
- !ruby/object:Gem::Version
|
857
|
-
version: 0
|
841
|
+
version: '0'
|
858
842
|
- !ruby/object:Gem::Dependency
|
859
843
|
name: rb-readline
|
860
844
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1151,6 +1135,7 @@ files:
|
|
1151
1135
|
- fastlane/lib/fastlane/actions/mailgun.rb
|
1152
1136
|
- fastlane/lib/fastlane/actions/make_changelog_from_jenkins.rb
|
1153
1137
|
- fastlane/lib/fastlane/actions/match.rb
|
1138
|
+
- fastlane/lib/fastlane/actions/match_nuke.rb
|
1154
1139
|
- fastlane/lib/fastlane/actions/min_fastlane_version.rb
|
1155
1140
|
- fastlane/lib/fastlane/actions/modify_services.rb
|
1156
1141
|
- fastlane/lib/fastlane/actions/nexus_upload.rb
|
@@ -1207,6 +1192,7 @@ files:
|
|
1207
1192
|
- fastlane/lib/fastlane/actions/slather.rb
|
1208
1193
|
- fastlane/lib/fastlane/actions/snapshot.rb
|
1209
1194
|
- fastlane/lib/fastlane/actions/sonar.rb
|
1195
|
+
- fastlane/lib/fastlane/actions/sourcedocs.rb
|
1210
1196
|
- fastlane/lib/fastlane/actions/spaceship_logs.rb
|
1211
1197
|
- fastlane/lib/fastlane/actions/spaceship_stats.rb
|
1212
1198
|
- fastlane/lib/fastlane/actions/splunkmint.rb
|
@@ -1292,6 +1278,7 @@ files:
|
|
1292
1278
|
- fastlane/lib/fastlane/lane_manager_base.rb
|
1293
1279
|
- fastlane/lib/fastlane/markdown_table_formatter.rb
|
1294
1280
|
- fastlane/lib/fastlane/new_action.rb
|
1281
|
+
- fastlane/lib/fastlane/notification/slack.rb
|
1295
1282
|
- fastlane/lib/fastlane/one_off.rb
|
1296
1283
|
- fastlane/lib/fastlane/other_action.rb
|
1297
1284
|
- fastlane/lib/fastlane/plugins/plugin_fetcher.rb
|
@@ -1361,6 +1348,7 @@ files:
|
|
1361
1348
|
- fastlane/swift/MainProcess.swift
|
1362
1349
|
- fastlane/swift/Matchfile.swift
|
1363
1350
|
- fastlane/swift/MatchfileProtocol.swift
|
1351
|
+
- fastlane/swift/OptionalConfigValue.swift
|
1364
1352
|
- fastlane/swift/Plugins.swift
|
1365
1353
|
- fastlane/swift/Precheckfile.swift
|
1366
1354
|
- fastlane/swift/PrecheckfileProtocol.swift
|
@@ -1394,6 +1382,7 @@ files:
|
|
1394
1382
|
- fastlane_core/lib/fastlane_core/android_package_name_guesser.rb
|
1395
1383
|
- fastlane_core/lib/fastlane_core/build_watcher.rb
|
1396
1384
|
- fastlane_core/lib/fastlane_core/cert_checker.rb
|
1385
|
+
- fastlane_core/lib/fastlane_core/clipboard.rb
|
1397
1386
|
- fastlane_core/lib/fastlane_core/command_executor.rb
|
1398
1387
|
- fastlane_core/lib/fastlane_core/configuration/commander_generator.rb
|
1399
1388
|
- fastlane_core/lib/fastlane_core/configuration/config_item.rb
|
@@ -1436,6 +1425,8 @@ files:
|
|
1436
1425
|
- fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb
|
1437
1426
|
- fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb
|
1438
1427
|
- fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb
|
1428
|
+
- fastlane_core/lib/fastlane_core/ui/help.erb
|
1429
|
+
- fastlane_core/lib/fastlane_core/ui/help_formatter.rb
|
1439
1430
|
- fastlane_core/lib/fastlane_core/ui/implementations/shell.rb
|
1440
1431
|
- fastlane_core/lib/fastlane_core/ui/interface.rb
|
1441
1432
|
- fastlane_core/lib/fastlane_core/ui/ui.rb
|
@@ -1465,7 +1456,6 @@ files:
|
|
1465
1456
|
- gym/lib/assets/GymfileTemplate.swift
|
1466
1457
|
- gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh
|
1467
1458
|
- gym/lib/gym.rb
|
1468
|
-
- gym/lib/gym/.runner.rb.swp
|
1469
1459
|
- gym/lib/gym/code_signing_mapping.rb
|
1470
1460
|
- gym/lib/gym/commands_generator.rb
|
1471
1461
|
- gym/lib/gym/detect_values.rb
|
@@ -1525,7 +1515,6 @@ files:
|
|
1525
1515
|
- pilot/lib/pilot/tester_exporter.rb
|
1526
1516
|
- pilot/lib/pilot/tester_importer.rb
|
1527
1517
|
- pilot/lib/pilot/tester_manager.rb
|
1528
|
-
- pilot/lib/pilot/tester_util.rb
|
1529
1518
|
- precheck/README.md
|
1530
1519
|
- precheck/lib/assets/PrecheckfileTemplate
|
1531
1520
|
- precheck/lib/assets/PrecheckfileTemplate.swift
|
data/gym/lib/gym/.runner.rb.swp
DELETED
Binary file
|
File without changes
|