fastlane 2.153.1 → 2.155.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +74 -74
- data/deliver/lib/deliver/html_generator.rb +8 -1
- data/deliver/lib/deliver/setup.rb +1 -3
- data/deliver/lib/deliver/upload_metadata.rb +21 -4
- data/fastlane/lib/fastlane/actions/carthage.rb +7 -0
- data/fastlane/lib/fastlane/actions/create_keychain.rb +5 -1
- data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +21 -2
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +3 -3
- data/fastlane/lib/fastlane/actions/git_pull.rb +13 -2
- data/fastlane/lib/fastlane/actions/sync_code_signing.rb +5 -0
- 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 +402 -187
- data/fastlane/swift/Gymfile.swift +1 -1
- data/fastlane/swift/GymfileProtocol.swift +1 -1
- data/fastlane/swift/Matchfile.swift +1 -1
- data/fastlane/swift/MatchfileProtocol.swift +10 -2
- 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 +1 -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 +9 -1
- data/fastlane_core/lib/fastlane_core/device_manager.rb +7 -2
- data/frameit/lib/frameit/editor.rb +3 -1
- data/gym/lib/gym/detect_values.rb +6 -3
- data/gym/lib/gym/module.rb +30 -0
- data/gym/lib/gym/runner.rb +23 -18
- data/{spaceship/lib/spaceship/connect_api/.model.rb.swp → match/lib/match/.options.rb.swp} +0 -0
- data/{deliver/lib/deliver/.upload_metadata.rb.swp → match/lib/match/.runner.rb.swp} +0 -0
- data/match/lib/match/generator.rb +6 -0
- data/match/lib/match/options.rb +16 -4
- data/match/lib/match/runner.rb +13 -5
- data/match/lib/match/spaceship_ensure.rb +7 -9
- data/match/lib/match/storage/git_storage.rb +16 -2
- data/match/lib/match/storage/google_cloud_storage.rb +1 -1
- data/pilot/lib/pilot/build_manager.rb +9 -0
- data/pilot/lib/pilot/options.rb +1 -1
- data/{frameit/lib/frameit/.editor.rb.swp → sigh/lib/sigh/.options.rb.swp} +0 -0
- data/sigh/lib/sigh/.runner.rb.swp +0 -0
- data/sigh/lib/sigh/download_all.rb +42 -27
- data/sigh/lib/sigh/module.rb +26 -0
- data/sigh/lib/sigh/options.rb +2 -2
- data/sigh/lib/sigh/runner.rb +100 -35
- data/snapshot/lib/snapshot/options.rb +10 -0
- data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +2 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +5 -0
- data/snapshot/lib/snapshot/test_command_generator.rb +3 -2
- data/snapshot/lib/snapshot/test_command_generator_xcode_8.rb +4 -1
- data/spaceship/lib/spaceship/connect_api/client.rb +3 -1
- data/spaceship/lib/spaceship/connect_api/model.rb +1 -1
- data/spaceship/lib/spaceship/connect_api/models/.profile.rb.swp +0 -0
- data/spaceship/lib/spaceship/connect_api/models/app.rb +22 -2
- data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +17 -5
- data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +41 -7
- data/spaceship/lib/spaceship/connect_api/models/profile.rb +32 -1
- data/spaceship/lib/spaceship/connect_api/{models/.app_store_review_detail.rb.swp → provisioning/.provisioning.rb.swp} +0 -0
- data/spaceship/lib/spaceship/connect_api/provisioning/client.rb +46 -4
- data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +41 -0
- data/supply/lib/supply/client.rb +2 -1
- data/supply/lib/supply/options.rb +8 -1
- metadata +23 -22
- data/spaceship/lib/spaceship/connect_api/models/.app_store_version.rb.swp +0 -0
data/supply/lib/supply/client.rb
CHANGED
@@ -347,7 +347,8 @@ module Supply
|
|
347
347
|
current_package_name,
|
348
348
|
self.current_edit.id,
|
349
349
|
upload_source: path_to_aab,
|
350
|
-
content_type: "application/octet-stream"
|
350
|
+
content_type: "application/octet-stream",
|
351
|
+
ack_bundle_installation_warning: Supply.config[:ack_bundle_installation_warning]
|
351
352
|
)
|
352
353
|
end
|
353
354
|
|
@@ -309,7 +309,14 @@ module Supply
|
|
309
309
|
env_name: "SUPPLY_OBB_PATCH_FILE SIZE",
|
310
310
|
description: "Size of 'patch' expansion file in bytes",
|
311
311
|
optional: true,
|
312
|
-
type: Numeric)
|
312
|
+
type: Numeric),
|
313
|
+
FastlaneCore::ConfigItem.new(key: :ack_bundle_installation_warning,
|
314
|
+
env_name: "ACK_BUNDLE_INSTALLATION_WARNING",
|
315
|
+
description: "Must be set to true if the bundle installation may trigger a warning on user devices (e.g can only be downloaded over wifi). Typically this is required for bundles over 150MB",
|
316
|
+
optional: true,
|
317
|
+
type: Boolean,
|
318
|
+
default_value: false)
|
319
|
+
|
313
320
|
]
|
314
321
|
end
|
315
322
|
# rubocop:enable Metrics/PerceivedComplexity
|
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.
|
4
|
+
version: 2.155.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Jimmy Dee
|
8
|
+
- Helmut Januschka
|
9
|
+
- Felix Krause
|
10
|
+
- Stefan Natchev
|
11
|
+
- Daniel Jankowski
|
8
12
|
- Fumiya Nakamura
|
9
|
-
- Maksym Grebenets
|
10
13
|
- Kohki Miki
|
11
|
-
- Luka Mirosevic
|
12
|
-
- Manu Wallner
|
13
|
-
- Joshua Liebowitz
|
14
|
-
- Olivier Halligon
|
15
|
-
- Matthew Ellis
|
16
|
-
- Max Ott
|
17
14
|
- Josh Holtz
|
18
|
-
- Helmut Januschka
|
19
|
-
- Daniel Jankowski
|
20
15
|
- Jorge Revuelta H
|
21
|
-
-
|
22
|
-
-
|
16
|
+
- Matthew Ellis
|
17
|
+
- Max Ott
|
18
|
+
- Maksym Grebenets
|
19
|
+
- Luka Mirosevic
|
20
|
+
- Manu Wallner
|
23
21
|
- Aaron Brager
|
24
|
-
-
|
22
|
+
- Andrew McBurney
|
23
|
+
- Danielle Tomlinson
|
25
24
|
- Jan Piotrowski
|
26
|
-
-
|
25
|
+
- Iulian Onofrei
|
26
|
+
- Joshua Liebowitz
|
27
27
|
- Jérôme Lacoste
|
28
|
-
-
|
28
|
+
- Olivier Halligon
|
29
29
|
autorequire:
|
30
30
|
bindir: bin
|
31
31
|
cert_chain: []
|
32
|
-
date: 2020-07
|
32
|
+
date: 2020-08-07 00:00:00.000000000 Z
|
33
33
|
dependencies:
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: slack-notifier
|
@@ -943,7 +943,6 @@ files:
|
|
943
943
|
- deliver/lib/assets/ScreenshotsHelp
|
944
944
|
- deliver/lib/assets/summary.html.erb
|
945
945
|
- deliver/lib/deliver.rb
|
946
|
-
- deliver/lib/deliver/.upload_metadata.rb.swp
|
947
946
|
- deliver/lib/deliver/app_screenshot.rb
|
948
947
|
- deliver/lib/deliver/commands_generator.rb
|
949
948
|
- deliver/lib/deliver/detect_values.rb
|
@@ -1407,7 +1406,6 @@ files:
|
|
1407
1406
|
- frameit/README.md
|
1408
1407
|
- frameit/lib/assets/empty.png
|
1409
1408
|
- frameit/lib/frameit.rb
|
1410
|
-
- frameit/lib/frameit/.editor.rb.swp
|
1411
1409
|
- frameit/lib/frameit/commands_generator.rb
|
1412
1410
|
- frameit/lib/frameit/config_parser.rb
|
1413
1411
|
- frameit/lib/frameit/dependency_checker.rb
|
@@ -1449,6 +1447,8 @@ files:
|
|
1449
1447
|
- match/lib/assets/MatchfileTemplate.swift
|
1450
1448
|
- match/lib/assets/READMETemplate.md
|
1451
1449
|
- match/lib/match.rb
|
1450
|
+
- match/lib/match/.options.rb.swp
|
1451
|
+
- match/lib/match/.runner.rb.swp
|
1452
1452
|
- match/lib/match/change_password.rb
|
1453
1453
|
- match/lib/match/commands_generator.rb
|
1454
1454
|
- match/lib/match/encryption.rb
|
@@ -1558,6 +1558,8 @@ files:
|
|
1558
1558
|
- sigh/README.md
|
1559
1559
|
- sigh/lib/assets/resign.sh
|
1560
1560
|
- sigh/lib/sigh.rb
|
1561
|
+
- sigh/lib/sigh/.options.rb.swp
|
1562
|
+
- sigh/lib/sigh/.runner.rb.swp
|
1561
1563
|
- sigh/lib/sigh/commands_generator.rb
|
1562
1564
|
- sigh/lib/sigh/download_all.rb
|
1563
1565
|
- sigh/lib/sigh/local_manage.rb
|
@@ -1610,12 +1612,10 @@ files:
|
|
1610
1612
|
- spaceship/lib/spaceship/client.rb
|
1611
1613
|
- spaceship/lib/spaceship/commands_generator.rb
|
1612
1614
|
- spaceship/lib/spaceship/connect_api.rb
|
1613
|
-
- spaceship/lib/spaceship/connect_api/.model.rb.swp
|
1614
1615
|
- spaceship/lib/spaceship/connect_api/client.rb
|
1615
1616
|
- spaceship/lib/spaceship/connect_api/file_uploader.rb
|
1616
1617
|
- spaceship/lib/spaceship/connect_api/model.rb
|
1617
|
-
- spaceship/lib/spaceship/connect_api/models/.
|
1618
|
-
- spaceship/lib/spaceship/connect_api/models/.app_store_version.rb.swp
|
1618
|
+
- spaceship/lib/spaceship/connect_api/models/.profile.rb.swp
|
1619
1619
|
- spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb
|
1620
1620
|
- spaceship/lib/spaceship/connect_api/models/app.rb
|
1621
1621
|
- spaceship/lib/spaceship/connect_api/models/app_category.rb
|
@@ -1658,6 +1658,7 @@ files:
|
|
1658
1658
|
- spaceship/lib/spaceship/connect_api/models/sandbox_tester.rb
|
1659
1659
|
- spaceship/lib/spaceship/connect_api/models/territory.rb
|
1660
1660
|
- spaceship/lib/spaceship/connect_api/models/user.rb
|
1661
|
+
- spaceship/lib/spaceship/connect_api/provisioning/.provisioning.rb.swp
|
1661
1662
|
- spaceship/lib/spaceship/connect_api/provisioning/client.rb
|
1662
1663
|
- spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb
|
1663
1664
|
- spaceship/lib/spaceship/connect_api/response.rb
|
Binary file
|