fastlane 2.150.0.rc4 → 2.150.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +76 -76
- data/deliver/lib/deliver/download_screenshots.rb +48 -26
- data/deliver/lib/deliver/runner.rb +4 -1
- data/deliver/lib/deliver/submit_for_review.rb +26 -7
- data/deliver/lib/deliver/upload_metadata.rb +33 -14
- data/deliver/lib/deliver/upload_screenshots.rb +24 -5
- data/fastlane/lib/fastlane/actions/.hockey.rb.swp +0 -0
- data/fastlane/lib/fastlane/actions/.slack.rb.swp +0 -0
- data/fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp +0 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +4 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Deliverfile.swift +1 -1
- data/fastlane/swift/DeliverfileProtocol.swift +6 -6
- data/fastlane/swift/Fastlane.swift +22 -19
- 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/Matchfile.swift +1 -1
- data/fastlane/swift/Precheckfile.swift +1 -1
- data/fastlane/swift/Scanfile.swift +1 -1
- data/fastlane/swift/Screengrabfile.swift +1 -1
- data/fastlane/swift/Snapshotfile.swift +1 -1
- data/fastlane/swift/SocketClient.swift +2 -1
- data/fastlane_core/lib/fastlane_core/build_watcher.rb +4 -4
- data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +0 -1
- data/fastlane_core/lib/fastlane_core/provisioning_profile.rb +1 -1
- data/pilot/lib/pilot/.manager.rb.swp +0 -0
- data/produce/lib/produce/itunes_connect.rb +29 -2
- data/spaceship/lib/spaceship/connect_api.rb +1 -1
- data/spaceship/lib/spaceship/{.DS_Store → connect_api/.DS_Store} +0 -0
- data/spaceship/lib/spaceship/connect_api/client.rb +1 -1
- data/spaceship/lib/spaceship/connect_api/models/app.rb +38 -3
- data/spaceship/lib/spaceship/connect_api/models/app_info.rb +5 -1
- data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +54 -1
- data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +32 -2
- data/spaceship/lib/spaceship/connect_api/models/{app_review_attachment.rb → app_store_review_attachment.rb} +6 -6
- data/spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb +7 -8
- data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +21 -3
- data/spaceship/lib/spaceship/connect_api/models/user.rb +2 -1
- data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +38 -20
- data/spaceship/lib/spaceship/connect_api/users/users.rb +13 -0
- metadata +36 -31
@@ -11,6 +11,19 @@ module Spaceship
|
|
11
11
|
params = Client.instance.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
|
12
12
|
Client.instance.get("users", params)
|
13
13
|
end
|
14
|
+
|
15
|
+
def add_user_visible_apps(user_id: nil, app_ids: nil)
|
16
|
+
body = {
|
17
|
+
data: app_ids.map do |app_id|
|
18
|
+
{
|
19
|
+
type: "apps",
|
20
|
+
id: app_id
|
21
|
+
}
|
22
|
+
end
|
23
|
+
}
|
24
|
+
|
25
|
+
Client.instance.post("users/#{user_id}/relationships/visibleApps", body)
|
26
|
+
end
|
14
27
|
end
|
15
28
|
end
|
16
29
|
end
|
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.150.
|
4
|
+
version: 2.150.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
-
|
7
|
+
- Joshua Liebowitz
|
8
|
+
- Luka Mirosevic
|
9
|
+
- Kohki Miki
|
10
|
+
- Aaron Brager
|
9
11
|
- Matthew Ellis
|
10
|
-
- Stefan Natchev
|
11
12
|
- Jimmy Dee
|
12
|
-
- Kohki Miki
|
13
13
|
- Jorge Revuelta H
|
14
|
+
- Manu Wallner
|
15
|
+
- Josh Holtz
|
16
|
+
- Fumiya Nakamura
|
17
|
+
- Maksym Grebenets
|
18
|
+
- Jan Piotrowski
|
14
19
|
- Daniel Jankowski
|
15
|
-
-
|
16
|
-
- Andrew McBurney
|
20
|
+
- Olivier Halligon
|
17
21
|
- Max Ott
|
22
|
+
- Felix Krause
|
18
23
|
- Iulian Onofrei
|
24
|
+
- Danielle Tomlinson
|
25
|
+
- Jérôme Lacoste
|
26
|
+
- Andrew McBurney
|
19
27
|
- Helmut Januschka
|
20
|
-
-
|
21
|
-
|
22
|
-
- Felix Krause
|
23
|
-
- Fumiya Nakamura
|
24
|
-
- Olivier Halligon
|
25
|
-
- Maksym Grebenets
|
26
|
-
- Aaron Brager
|
27
|
-
- Josh Holtz
|
28
|
-
- Joshua Liebowitz
|
29
|
-
autorequire:
|
28
|
+
- Stefan Natchev
|
29
|
+
autorequire:
|
30
30
|
bindir: bin
|
31
31
|
cert_chain: []
|
32
|
-
date: 2020-
|
32
|
+
date: 2020-07-02 00:00:00.000000000 Z
|
33
33
|
dependencies:
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: slack-notifier
|
@@ -495,20 +495,20 @@ dependencies:
|
|
495
495
|
requirements:
|
496
496
|
- - ">="
|
497
497
|
- !ruby/object:Gem::Version
|
498
|
-
version:
|
498
|
+
version: 2.0.0
|
499
499
|
- - "<"
|
500
500
|
- !ruby/object:Gem::Version
|
501
|
-
version:
|
501
|
+
version: 3.0.0
|
502
502
|
type: :runtime
|
503
503
|
prerelease: false
|
504
504
|
version_requirements: !ruby/object:Gem::Requirement
|
505
505
|
requirements:
|
506
506
|
- - ">="
|
507
507
|
- !ruby/object:Gem::Version
|
508
|
-
version:
|
508
|
+
version: 2.0.0
|
509
509
|
- - "<"
|
510
510
|
- !ruby/object:Gem::Version
|
511
|
-
version:
|
511
|
+
version: 3.0.0
|
512
512
|
- !ruby/object:Gem::Dependency
|
513
513
|
name: security
|
514
514
|
requirement: !ruby/object:Gem::Requirement
|
@@ -654,7 +654,7 @@ dependencies:
|
|
654
654
|
version: '0.1'
|
655
655
|
- - "<"
|
656
656
|
- !ruby/object:Gem::Version
|
657
|
-
version: '
|
657
|
+
version: '4.0'
|
658
658
|
type: :runtime
|
659
659
|
prerelease: false
|
660
660
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -664,7 +664,7 @@ dependencies:
|
|
664
664
|
version: '0.1'
|
665
665
|
- - "<"
|
666
666
|
- !ruby/object:Gem::Version
|
667
|
-
version: '
|
667
|
+
version: '4.0'
|
668
668
|
- !ruby/object:Gem::Dependency
|
669
669
|
name: aws-sdk-s3
|
670
670
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1013,6 +1013,9 @@ files:
|
|
1013
1013
|
- fastlane/lib/fastlane.rb
|
1014
1014
|
- fastlane/lib/fastlane/action.rb
|
1015
1015
|
- fastlane/lib/fastlane/action_collector.rb
|
1016
|
+
- fastlane/lib/fastlane/actions/.hockey.rb.swp
|
1017
|
+
- fastlane/lib/fastlane/actions/.slack.rb.swp
|
1018
|
+
- fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp
|
1016
1019
|
- fastlane/lib/fastlane/actions/README.md
|
1017
1020
|
- fastlane/lib/fastlane/actions/actions_helper.rb
|
1018
1021
|
- fastlane/lib/fastlane/actions/adb.rb
|
@@ -1349,6 +1352,7 @@ files:
|
|
1349
1352
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
|
1350
1353
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
1351
1354
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
|
1355
|
+
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate
|
1352
1356
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
|
1353
1357
|
- fastlane/swift/FastlaneSwiftRunner/README.txt
|
1354
1358
|
- fastlane/swift/Gymfile.swift
|
@@ -1505,6 +1509,7 @@ files:
|
|
1505
1509
|
- pem/lib/pem/options.rb
|
1506
1510
|
- pilot/README.md
|
1507
1511
|
- pilot/lib/pilot.rb
|
1512
|
+
- pilot/lib/pilot/.manager.rb.swp
|
1508
1513
|
- pilot/lib/pilot/build_manager.rb
|
1509
1514
|
- pilot/lib/pilot/commands_generator.rb
|
1510
1515
|
- pilot/lib/pilot/features.rb
|
@@ -1632,12 +1637,12 @@ files:
|
|
1632
1637
|
- spaceship/lib/assets/languageMapping.json
|
1633
1638
|
- spaceship/lib/assets/languageMappingReadable.json
|
1634
1639
|
- spaceship/lib/spaceship.rb
|
1635
|
-
- spaceship/lib/spaceship/.DS_Store
|
1636
1640
|
- spaceship/lib/spaceship/babosa_fix.rb
|
1637
1641
|
- spaceship/lib/spaceship/base.rb
|
1638
1642
|
- spaceship/lib/spaceship/client.rb
|
1639
1643
|
- spaceship/lib/spaceship/commands_generator.rb
|
1640
1644
|
- spaceship/lib/spaceship/connect_api.rb
|
1645
|
+
- spaceship/lib/spaceship/connect_api/.DS_Store
|
1641
1646
|
- spaceship/lib/spaceship/connect_api/client.rb
|
1642
1647
|
- spaceship/lib/spaceship/connect_api/file_uploader.rb
|
1643
1648
|
- spaceship/lib/spaceship/connect_api/model.rb
|
@@ -1650,9 +1655,9 @@ files:
|
|
1650
1655
|
- spaceship/lib/spaceship/connect_api/models/app_preview_set.rb
|
1651
1656
|
- spaceship/lib/spaceship/connect_api/models/app_price.rb
|
1652
1657
|
- spaceship/lib/spaceship/connect_api/models/app_price_tier.rb
|
1653
|
-
- spaceship/lib/spaceship/connect_api/models/app_review_attachment.rb
|
1654
1658
|
- spaceship/lib/spaceship/connect_api/models/app_screenshot.rb
|
1655
1659
|
- spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb
|
1660
|
+
- spaceship/lib/spaceship/connect_api/models/app_store_review_attachment.rb
|
1656
1661
|
- spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb
|
1657
1662
|
- spaceship/lib/spaceship/connect_api/models/app_store_version.rb
|
1658
1663
|
- spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb
|
@@ -1809,7 +1814,7 @@ licenses:
|
|
1809
1814
|
- MIT
|
1810
1815
|
metadata:
|
1811
1816
|
docs_url: https://docs.fastlane.tools
|
1812
|
-
post_install_message:
|
1817
|
+
post_install_message:
|
1813
1818
|
rdoc_options: []
|
1814
1819
|
require_paths:
|
1815
1820
|
- credentials_manager/lib
|
@@ -1837,12 +1842,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1837
1842
|
version: '2.4'
|
1838
1843
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1839
1844
|
requirements:
|
1840
|
-
- - "
|
1845
|
+
- - ">="
|
1841
1846
|
- !ruby/object:Gem::Version
|
1842
|
-
version:
|
1847
|
+
version: '0'
|
1843
1848
|
requirements: []
|
1844
|
-
rubygems_version: 3.0.
|
1845
|
-
signing_key:
|
1849
|
+
rubygems_version: 3.0.3
|
1850
|
+
signing_key:
|
1846
1851
|
specification_version: 4
|
1847
1852
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1848
1853
|
Android apps
|