fastlane 2.157.0 → 2.158.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 +72 -72
- data/deliver/lib/deliver/app_screenshot_iterator.rb +1 -1
- data/deliver/lib/deliver/runner.rb +5 -3
- data/fastlane/lib/fastlane/actions/.hockey.rb.swp +0 -0
- data/fastlane/lib/fastlane/actions/{.git_commit.rb.swp → .slack.rb.swp} +0 -0
- data/fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp +0 -0
- data/fastlane/lib/fastlane/actions/app_store_build_number.rb +12 -8
- data/fastlane/lib/fastlane/actions/download_dsyms.rb +89 -68
- data/fastlane/lib/fastlane/actions/set_changelog.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 +18 -12
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- 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 +1 -1
- data/fastlane/swift/Precheckfile.swift +1 -1
- data/fastlane/swift/PrecheckfileProtocol.swift +5 -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 +1 -1
- data/fastlane_core/lib/fastlane_core/command_executor.rb +1 -0
- data/match/lib/match/spaceship_ensure.rb +5 -5
- data/{fastlane/lib/fastlane/.erb_template_helper.rb.swp → pilot/lib/pilot/.manager.rb.swp} +0 -0
- data/pilot/lib/pilot/build_manager.rb +0 -3
- data/pilot/lib/pilot/manager.rb +1 -1
- data/precheck/lib/precheck/options.rb +9 -0
- data/precheck/lib/precheck/rule_processor.rb +94 -60
- data/precheck/lib/precheck/runner.rb +6 -4
- data/produce/lib/produce/itunes_connect.rb +3 -2
- data/screengrab/lib/screengrab/runner.rb +28 -10
- data/sigh/lib/assets/resign.sh +9 -6
- data/sigh/lib/sigh/runner.rb +3 -2
- data/spaceship/lib/spaceship/client.rb +1 -0
- data/spaceship/lib/spaceship/connect_api.rb +1 -0
- data/spaceship/lib/spaceship/{.DS_Store → connect_api/.DS_Store} +0 -0
- data/spaceship/lib/spaceship/connect_api/client.rb +32 -13
- data/spaceship/lib/spaceship/connect_api/file_uploader.rb +2 -0
- data/spaceship/lib/spaceship/connect_api/models/app.rb +5 -5
- data/spaceship/lib/spaceship/connect_api/models/app_price_point.rb +26 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +7 -1
- data/spaceship/lib/spaceship/connect_api/models/app_store_version_phased_release.rb +21 -0
- data/spaceship/lib/spaceship/connect_api/spaceship.rb +10 -6
- data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +50 -50
- data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +20 -0
- metadata +25 -21
@@ -308,6 +308,14 @@ module Spaceship
|
|
308
308
|
tunes_request_client.get("appPrices", params)
|
309
309
|
end
|
310
310
|
|
311
|
+
#
|
312
|
+
# appPricePoints
|
313
|
+
#
|
314
|
+
def get_app_price_points(filter: {}, includes: nil, limit: nil, sort: nil)
|
315
|
+
params = Client.instance.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
|
316
|
+
Client.instance.get("appPricePoints", params)
|
317
|
+
end
|
318
|
+
|
311
319
|
#
|
312
320
|
# appReviewAttachments
|
313
321
|
#
|
@@ -702,6 +710,18 @@ module Spaceship
|
|
702
710
|
tunes_request_client.post("appStoreVersionPhasedReleases", body)
|
703
711
|
end
|
704
712
|
|
713
|
+
def patch_app_store_version_phased_release(app_store_version_phased_release_id: nil, attributes: {})
|
714
|
+
body = {
|
715
|
+
data: {
|
716
|
+
type: "appStoreVersionPhasedReleases",
|
717
|
+
attributes: attributes,
|
718
|
+
id: app_store_version_phased_release_id
|
719
|
+
}
|
720
|
+
}
|
721
|
+
|
722
|
+
tunes_request_client.patch("appStoreVersionPhasedReleases/#{app_store_version_phased_release_id}", body)
|
723
|
+
end
|
724
|
+
|
705
725
|
def delete_app_store_version_phased_release(app_store_version_phased_release_id: nil)
|
706
726
|
params = tunes_request_client.build_params(filter: nil, includes: nil, limit: nil, sort: nil)
|
707
727
|
tunes_request_client.delete("appStoreVersionPhasedReleases/#{app_store_version_phased_release_id}", params)
|
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.158.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
-
|
9
|
-
-
|
10
|
-
-
|
11
|
-
- Jorge Revuelta H
|
12
|
-
- Helmut Januschka
|
7
|
+
- Aaron Brager
|
8
|
+
- Stefan Natchev
|
9
|
+
- Manu Wallner
|
10
|
+
- Maksym Grebenets
|
13
11
|
- Jérôme Lacoste
|
14
|
-
-
|
15
|
-
- Iulian Onofrei
|
12
|
+
- Josh Holtz
|
16
13
|
- Matthew Ellis
|
17
|
-
-
|
14
|
+
- Felix Krause
|
15
|
+
- Daniel Jankowski
|
18
16
|
- Danielle Tomlinson
|
19
|
-
-
|
20
|
-
- Andrew McBurney
|
21
|
-
- Max Ott
|
17
|
+
- Iulian Onofrei
|
22
18
|
- Luka Mirosevic
|
23
|
-
-
|
19
|
+
- Jimmy Dee
|
20
|
+
- Andrew McBurney
|
24
21
|
- Kohki Miki
|
25
|
-
-
|
26
|
-
- Stefan Natchev
|
22
|
+
- Jorge Revuelta H
|
27
23
|
- Joshua Liebowitz
|
28
24
|
- Fumiya Nakamura
|
25
|
+
- Helmut Januschka
|
26
|
+
- Olivier Halligon
|
27
|
+
- Jan Piotrowski
|
28
|
+
- Max Ott
|
29
29
|
autorequire:
|
30
30
|
bindir: bin
|
31
31
|
cert_chain: []
|
32
|
-
date: 2020-
|
32
|
+
date: 2020-09-04 00:00:00.000000000 Z
|
33
33
|
dependencies:
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: slack-notifier
|
@@ -980,10 +980,11 @@ files:
|
|
980
980
|
- fastlane/lib/assets/s3_plist_template.erb
|
981
981
|
- fastlane/lib/assets/s3_version_template.erb
|
982
982
|
- fastlane/lib/fastlane.rb
|
983
|
-
- fastlane/lib/fastlane/.erb_template_helper.rb.swp
|
984
983
|
- fastlane/lib/fastlane/action.rb
|
985
984
|
- fastlane/lib/fastlane/action_collector.rb
|
986
|
-
- fastlane/lib/fastlane/actions/.
|
985
|
+
- fastlane/lib/fastlane/actions/.hockey.rb.swp
|
986
|
+
- fastlane/lib/fastlane/actions/.slack.rb.swp
|
987
|
+
- fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp
|
987
988
|
- fastlane/lib/fastlane/actions/README.md
|
988
989
|
- fastlane/lib/fastlane/actions/actions_helper.rb
|
989
990
|
- fastlane/lib/fastlane/actions/adb.rb
|
@@ -1322,6 +1323,7 @@ files:
|
|
1322
1323
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
|
1323
1324
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
1324
1325
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
|
1326
|
+
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate
|
1325
1327
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
|
1326
1328
|
- fastlane/swift/FastlaneSwiftRunner/README.txt
|
1327
1329
|
- fastlane/swift/Gymfile.swift
|
@@ -1481,6 +1483,7 @@ files:
|
|
1481
1483
|
- pem/lib/pem/options.rb
|
1482
1484
|
- pilot/README.md
|
1483
1485
|
- pilot/lib/pilot.rb
|
1486
|
+
- pilot/lib/pilot/.manager.rb.swp
|
1484
1487
|
- pilot/lib/pilot/build_manager.rb
|
1485
1488
|
- pilot/lib/pilot/commands_generator.rb
|
1486
1489
|
- pilot/lib/pilot/features.rb
|
@@ -1608,11 +1611,11 @@ files:
|
|
1608
1611
|
- spaceship/lib/assets/languageMapping.json
|
1609
1612
|
- spaceship/lib/assets/languageMappingReadable.json
|
1610
1613
|
- spaceship/lib/spaceship.rb
|
1611
|
-
- spaceship/lib/spaceship/.DS_Store
|
1612
1614
|
- spaceship/lib/spaceship/base.rb
|
1613
1615
|
- spaceship/lib/spaceship/client.rb
|
1614
1616
|
- spaceship/lib/spaceship/commands_generator.rb
|
1615
1617
|
- spaceship/lib/spaceship/connect_api.rb
|
1618
|
+
- spaceship/lib/spaceship/connect_api/.DS_Store
|
1616
1619
|
- spaceship/lib/spaceship/connect_api/api_client.rb
|
1617
1620
|
- spaceship/lib/spaceship/connect_api/client.rb
|
1618
1621
|
- spaceship/lib/spaceship/connect_api/file_uploader.rb
|
@@ -1625,6 +1628,7 @@ files:
|
|
1625
1628
|
- spaceship/lib/spaceship/connect_api/models/app_preview.rb
|
1626
1629
|
- spaceship/lib/spaceship/connect_api/models/app_preview_set.rb
|
1627
1630
|
- spaceship/lib/spaceship/connect_api/models/app_price.rb
|
1631
|
+
- spaceship/lib/spaceship/connect_api/models/app_price_point.rb
|
1628
1632
|
- spaceship/lib/spaceship/connect_api/models/app_price_tier.rb
|
1629
1633
|
- spaceship/lib/spaceship/connect_api/models/app_screenshot.rb
|
1630
1634
|
- spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb
|
@@ -1822,7 +1826,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1822
1826
|
- !ruby/object:Gem::Version
|
1823
1827
|
version: '0'
|
1824
1828
|
requirements: []
|
1825
|
-
rubygems_version: 3.0.
|
1829
|
+
rubygems_version: 3.0.3
|
1826
1830
|
signing_key:
|
1827
1831
|
specification_version: 4
|
1828
1832
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|