fastlane 2.151.2 → 2.155.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +82 -82
- data/deliver/lib/deliver/app_screenshot.rb +1 -1
- data/deliver/lib/deliver/commands_generator.rb +7 -4
- data/deliver/lib/deliver/detect_values.rb +9 -3
- data/deliver/lib/deliver/download_screenshots.rb +1 -3
- data/deliver/lib/deliver/html_generator.rb +8 -1
- data/deliver/lib/deliver/options.rb +1 -1
- data/deliver/lib/deliver/runner.rb +5 -10
- data/deliver/lib/deliver/setup.rb +92 -3
- data/deliver/lib/deliver/submit_for_review.rb +4 -6
- data/deliver/lib/deliver/upload_metadata.rb +51 -30
- data/deliver/lib/deliver/upload_price_tier.rb +1 -3
- data/deliver/lib/deliver/upload_screenshots.rb +75 -44
- data/fastlane/lib/fastlane/{helper/.s3_client_helper.rb.swp → .erb_template_helper.rb.swp} +0 -0
- data/{deliver/lib/deliver/.commands_generator.rb.swp → fastlane/lib/fastlane/actions/.git_commit.rb.swp} +0 -0
- 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/frame_screenshots.md +3 -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 +4 -4
- data/fastlane/lib/fastlane/actions/download_dsyms.rb +4 -2
- data/fastlane/lib/fastlane/actions/erb.rb +10 -2
- data/fastlane/lib/fastlane/actions/git_branch.rb +4 -1
- 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/actions/upload_to_testflight.rb +11 -3
- data/fastlane/lib/fastlane/runner.rb +3 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Deliverfile.swift +1 -1
- data/fastlane/swift/DeliverfileProtocol.swift +3 -3
- data/fastlane/swift/Fastlane.swift +419 -192
- 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 +25 -6
- data/frameit/lib/frameit/editor.rb +11 -6
- 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/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 +7 -1
- data/scan/lib/scan/runner.rb +19 -6
- 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 +74 -33
- 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.rb +1 -0
- data/spaceship/lib/spaceship/connect_api/client.rb +5 -3
- data/spaceship/lib/spaceship/connect_api/model.rb +15 -1
- data/spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb +1 -0
- data/spaceship/lib/spaceship/connect_api/models/app.rb +61 -3
- data/spaceship/lib/spaceship/connect_api/models/app_info_localization.rb +1 -0
- data/spaceship/lib/spaceship/connect_api/models/app_preview.rb +1 -0
- data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +44 -5
- data/spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb +1 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +12 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +1 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version_release_request.rb +12 -0
- data/spaceship/lib/spaceship/connect_api/models/build.rb +1 -0
- 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/idfa_declaration.rb +1 -0
- data/spaceship/lib/spaceship/connect_api/models/profile.rb +31 -1
- data/spaceship/lib/spaceship/connect_api/provisioning/client.rb +46 -4
- data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +41 -0
- data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +32 -1
- data/supply/lib/supply/client.rb +2 -1
- data/supply/lib/supply/options.rb +8 -1
- metadata +34 -61
- data/deliver/lib/deliver/.submit_for_review.rb.swp +0 -0
- data/frameit/lib/frameit/.editor.rb.swp +0 -0
@@ -1,4 +1,5 @@
|
|
1
1
|
require_relative '../model'
|
2
|
+
require_relative './bundle_id_capability'
|
2
3
|
module Spaceship
|
3
4
|
class ConnectAPI
|
4
5
|
class BundleId
|
@@ -20,15 +21,20 @@ module Spaceship
|
|
20
21
|
"bundleIdCapabilities" => 'bundle_id_capabilities'
|
21
22
|
})
|
22
23
|
|
23
|
-
module Platform
|
24
|
-
IOS = "IOS"
|
25
|
-
MAC_OS = "MAC_OS"
|
26
|
-
end
|
27
|
-
|
28
24
|
def self.type
|
29
25
|
return "bundleIds"
|
30
26
|
end
|
31
27
|
|
28
|
+
#
|
29
|
+
# Helpers
|
30
|
+
#
|
31
|
+
|
32
|
+
def supports_catalyst?
|
33
|
+
return bundle_id_capabilities.any? do |capability|
|
34
|
+
capability.is_type?(Spaceship::ConnectAPI::BundleIdCapability::Type::MARZIPAN)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
32
38
|
#
|
33
39
|
# API
|
34
40
|
#
|
@@ -38,6 +44,12 @@ module Spaceship
|
|
38
44
|
return resps.flat_map(&:to_models)
|
39
45
|
end
|
40
46
|
|
47
|
+
def self.find(identifier, includes: nil)
|
48
|
+
return all(filter: { identifier: identifier }, includes: includes).find do |app|
|
49
|
+
app.identifier == identifier
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
41
53
|
def self.get(bundle_id_id: nil, includes: nil)
|
42
54
|
return Spaceship::ConnectAPI.get_bundle_id(bundle_id_id: bundle_id_id, includes: includes).first
|
43
55
|
end
|
@@ -4,23 +4,57 @@ module Spaceship
|
|
4
4
|
class BundleIdCapability
|
5
5
|
include Spaceship::ConnectAPI::Model
|
6
6
|
|
7
|
-
attr_accessor :
|
8
|
-
attr_accessor :
|
7
|
+
attr_accessor :capability_type
|
8
|
+
attr_accessor :settings
|
9
9
|
|
10
10
|
attr_mapping({
|
11
|
-
"capabilityType" => "
|
12
|
-
"settings" => "
|
11
|
+
"capabilityType" => "capability_type",
|
12
|
+
"settings" => "settings"
|
13
13
|
})
|
14
14
|
|
15
|
-
module
|
16
|
-
|
17
|
-
|
15
|
+
module Type
|
16
|
+
ICLOUD = "ICLOUD"
|
17
|
+
IN_APP_PURCHASE = "IN_APP_PURCHASE"
|
18
|
+
GAME_CENTER = "GAME_CENTER"
|
19
|
+
PUSH_NOTIFICATIONS = "PUSH_NOTIFICATIONS"
|
20
|
+
WALLET = "WALLET"
|
21
|
+
INTER_APP_AUDIO = "INTER_APP_AUDIO"
|
22
|
+
MAPS = "MAPS"
|
23
|
+
ASSOCIATED_DOMAINS = "ASSOCIATED_DOMAINS"
|
24
|
+
PERSONAL_VPN = "PERSONAL_VPN"
|
25
|
+
APP_GROUPS = "APP_GROUPS"
|
26
|
+
HEALTHKIT = "HEALTHKIT"
|
27
|
+
HOMEKIT = "HOMEKIT"
|
28
|
+
WIRELESS_ACCESSORY_CONFIGURATION = "WIRELESS_ACCESSORY_CONFIGURATION"
|
29
|
+
APPLE_PAY = "APPLE_PAY"
|
30
|
+
DATA_PROTECTION = "DATA_PROTECTION"
|
31
|
+
SIRIKIT = "SIRIKIT"
|
32
|
+
NETWORK_EXTENSIONS = "NETWORK_EXTENSIONS"
|
33
|
+
MULTIPATH = "MULTIPATH"
|
34
|
+
HOT_SPOT = "HOT_SPOT"
|
35
|
+
NFC_TAG_READING = "NFC_TAG_READING"
|
36
|
+
CLASSKIT = "CLASSKIT"
|
37
|
+
AUTOFILL_CREDENTIAL_PROVIDER = "AUTOFILL_CREDENTIAL_PROVIDER"
|
38
|
+
ACCESS_WIFI_INFORMATION = "ACCESS_WIFI_INFORMATION"
|
39
|
+
|
40
|
+
# Undocumented as of 2020-06-09
|
41
|
+
MARZIPAN = "MARZIPAN" # Catalyst
|
18
42
|
end
|
19
43
|
|
20
44
|
def self.type
|
21
45
|
return "bundleIdCapabilities"
|
22
46
|
end
|
23
47
|
|
48
|
+
#
|
49
|
+
# Helpers
|
50
|
+
#
|
51
|
+
|
52
|
+
def is_type?(type)
|
53
|
+
# JWT session returns type under "capability_type" attribute
|
54
|
+
# Web session returns type under "id" attribute but with "P7GJR49W72_" prefixed
|
55
|
+
return capability_type == type || id.end_with?(type)
|
56
|
+
end
|
57
|
+
|
24
58
|
#
|
25
59
|
# API
|
26
60
|
#
|
@@ -13,6 +13,9 @@ module Spaceship
|
|
13
13
|
attr_accessor :profile_type
|
14
14
|
attr_accessor :expiration_date
|
15
15
|
|
16
|
+
attr_accessor :bundle_id
|
17
|
+
attr_accessor :certificates
|
18
|
+
|
16
19
|
attr_mapping({
|
17
20
|
"name" => "name",
|
18
21
|
"platform" => "platform",
|
@@ -21,7 +24,10 @@ module Spaceship
|
|
21
24
|
"createdDate" => "created_date",
|
22
25
|
"profileState" => "profile_state",
|
23
26
|
"profileType" => "profile_type",
|
24
|
-
"expirationDate" => "expiration_date"
|
27
|
+
"expirationDate" => "expiration_date",
|
28
|
+
|
29
|
+
"bundleId" => "bundle_id",
|
30
|
+
"certificates" => "certificates"
|
25
31
|
})
|
26
32
|
|
27
33
|
module ProfileState
|
@@ -41,12 +47,19 @@ module Spaceship
|
|
41
47
|
TVOS_APP_STORE = "TVOS_APP_STORE"
|
42
48
|
TVOS_APP_ADHOC = "TVOS_APP_ADHOC"
|
43
49
|
TVOS_APP_INHOUSE = "TVOS_APP_INHOUSE"
|
50
|
+
MAC_CATALYST_APP_DEVELOPMENT = "MAC_CATALYST_APP_DEVELOPMENT"
|
51
|
+
MAC_CATALYST_APP_STORE = "MAC_CATALYST_APP_STORE"
|
52
|
+
MAC_CATALYST_APP_DIRECT = "MAC_CATALYST_APP_DIRECT"
|
44
53
|
end
|
45
54
|
|
46
55
|
def self.type
|
47
56
|
return "profiles"
|
48
57
|
end
|
49
58
|
|
59
|
+
def valid?
|
60
|
+
return profile_state == ProfileState::ACTIVE
|
61
|
+
end
|
62
|
+
|
50
63
|
#
|
51
64
|
# API
|
52
65
|
#
|
@@ -55,6 +68,23 @@ module Spaceship
|
|
55
68
|
resps = Spaceship::ConnectAPI.get_profiles(filter: filter, includes: includes).all_pages
|
56
69
|
return resps.flat_map(&:to_models)
|
57
70
|
end
|
71
|
+
|
72
|
+
def self.create(name: nil, profile_type: nil, bundle_id_id: nil, certificate_ids: nil, device_ids: nil)
|
73
|
+
resp = Spaceship::ConnectAPI.post_profiles(
|
74
|
+
bundle_id_id: bundle_id_id,
|
75
|
+
certificates: certificate_ids,
|
76
|
+
devices: device_ids,
|
77
|
+
attributes: {
|
78
|
+
name: name,
|
79
|
+
profileType: profile_type
|
80
|
+
}
|
81
|
+
)
|
82
|
+
return resp.to_models.first
|
83
|
+
end
|
84
|
+
|
85
|
+
def delete!
|
86
|
+
return Spaceship::ConnectAPI.delete_profile(profile_id: id)
|
87
|
+
end
|
58
88
|
end
|
59
89
|
end
|
60
90
|
end
|
@@ -33,14 +33,30 @@ module Spaceship
|
|
33
33
|
#
|
34
34
|
|
35
35
|
def get(url_or_path, params = nil)
|
36
|
-
# The App Store Connect API
|
37
|
-
#
|
38
|
-
return
|
36
|
+
# The Provisioning App Store Connect API needs to be proxied through a
|
37
|
+
# POST request if using web session
|
38
|
+
return proxy_get(url_or_path, params) if web_session?
|
39
39
|
|
40
40
|
super(url_or_path, params)
|
41
41
|
end
|
42
42
|
|
43
|
-
def
|
43
|
+
def post(url_or_path, body)
|
44
|
+
# The Provisioning App Store Connect API needs teamId added to the body of
|
45
|
+
# each post if using web session
|
46
|
+
return proxy_post(url_or_path, body) if web_session?
|
47
|
+
|
48
|
+
super(url_or_path, body)
|
49
|
+
end
|
50
|
+
|
51
|
+
def delete(url_or_path, params = nil)
|
52
|
+
# The Provisioning App Store Connect API needs to be proxied through a
|
53
|
+
# POST request if using web session
|
54
|
+
return proxy_delete(url_or_path, params) if web_session?
|
55
|
+
|
56
|
+
super(url_or_path, params)
|
57
|
+
end
|
58
|
+
|
59
|
+
def proxy_get(url_or_path, params = nil)
|
44
60
|
encoded_params = Faraday::NestedParamsEncoder.encode(params)
|
45
61
|
body = { "urlEncodedQueryParams" => encoded_params, "teamId" => team_id }
|
46
62
|
|
@@ -53,6 +69,32 @@ module Spaceship
|
|
53
69
|
end
|
54
70
|
handle_response(response)
|
55
71
|
end
|
72
|
+
|
73
|
+
def proxy_post(url_or_path, body)
|
74
|
+
body[:data][:attributes][:teamId] = team_id
|
75
|
+
|
76
|
+
response = request(:post) do |req|
|
77
|
+
req.url(url_or_path)
|
78
|
+
req.body = body.to_json
|
79
|
+
req.headers['Content-Type'] = 'application/vnd.api+json'
|
80
|
+
req.headers['X-Requested-With'] = 'XMLHttpRequest'
|
81
|
+
end
|
82
|
+
handle_response(response)
|
83
|
+
end
|
84
|
+
|
85
|
+
def proxy_delete(url_or_path, params = nil)
|
86
|
+
encoded_params = Faraday::NestedParamsEncoder.encode(params)
|
87
|
+
body = { "urlEncodedQueryParams" => encoded_params, "teamId" => team_id }
|
88
|
+
|
89
|
+
response = request(:post) do |req|
|
90
|
+
req.url(url_or_path)
|
91
|
+
req.body = body.to_json
|
92
|
+
req.headers['Content-Type'] = 'application/vnd.api+json'
|
93
|
+
req.headers['X-HTTP-Method-Override'] = 'DELETE'
|
94
|
+
req.headers['X-Requested-With'] = 'XMLHttpRequest'
|
95
|
+
end
|
96
|
+
handle_response(response)
|
97
|
+
end
|
56
98
|
end
|
57
99
|
end
|
58
100
|
end
|
@@ -43,6 +43,47 @@ module Spaceship
|
|
43
43
|
params = Client.instance.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
|
44
44
|
Client.instance.get("profiles", params)
|
45
45
|
end
|
46
|
+
|
47
|
+
def post_profiles(bundle_id_id: nil, certificates: nil, devices: nil, attributes: {})
|
48
|
+
body = {
|
49
|
+
data: {
|
50
|
+
attributes: attributes,
|
51
|
+
type: "profiles",
|
52
|
+
relationships: {
|
53
|
+
bundleId: {
|
54
|
+
data: {
|
55
|
+
type: "bundleIds",
|
56
|
+
id: bundle_id_id
|
57
|
+
}
|
58
|
+
},
|
59
|
+
certificates: {
|
60
|
+
data: certificates.map do |certificate|
|
61
|
+
{
|
62
|
+
type: "certificates",
|
63
|
+
id: certificate
|
64
|
+
}
|
65
|
+
end
|
66
|
+
},
|
67
|
+
devices: {
|
68
|
+
data: (devices || []).map do |certificate|
|
69
|
+
{
|
70
|
+
type: "devices",
|
71
|
+
id: devices
|
72
|
+
}
|
73
|
+
end
|
74
|
+
}
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
Client.instance.post("profiles", body)
|
80
|
+
end
|
81
|
+
|
82
|
+
def delete_profile(profile_id: nil)
|
83
|
+
raise "Profile id is nil" if profile_id.nil?
|
84
|
+
|
85
|
+
Client.instance.delete("profiles/#{profile_id}")
|
86
|
+
end
|
46
87
|
end
|
47
88
|
end
|
48
89
|
end
|
@@ -280,6 +280,15 @@ module Spaceship
|
|
280
280
|
Client.instance.patch("appPreviewSets/#{app_preview_set_id}/relationships/appPreviews", body)
|
281
281
|
end
|
282
282
|
|
283
|
+
#
|
284
|
+
# availableTerritories
|
285
|
+
#
|
286
|
+
|
287
|
+
def get_available_territories(app_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
|
288
|
+
params = Client.instance.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
|
289
|
+
Client.instance.get("apps/#{app_id}/availableTerritories", params)
|
290
|
+
end
|
291
|
+
|
283
292
|
#
|
284
293
|
# appPrices
|
285
294
|
#
|
@@ -402,7 +411,7 @@ module Spaceship
|
|
402
411
|
}
|
403
412
|
}
|
404
413
|
|
405
|
-
Client.instance.post("appScreenshots", body)
|
414
|
+
Client.instance.post("appScreenshots", body, tries: 1)
|
406
415
|
end
|
407
416
|
|
408
417
|
def patch_app_screenshot(app_screenshot_id: nil, attributes: {})
|
@@ -821,6 +830,28 @@ module Spaceship
|
|
821
830
|
Client.instance.delete("appStoreVersionSubmissions/#{app_store_version_submission_id}", params)
|
822
831
|
end
|
823
832
|
|
833
|
+
#
|
834
|
+
# appStoreVersionReleaseRequests
|
835
|
+
#
|
836
|
+
|
837
|
+
def post_app_store_version_release_request(app_store_version_id: nil)
|
838
|
+
body = {
|
839
|
+
data: {
|
840
|
+
type: "appStoreVersionReleaseRequests",
|
841
|
+
relationships: {
|
842
|
+
appStoreVersion: {
|
843
|
+
data: {
|
844
|
+
type: "appStoreVersions",
|
845
|
+
id: app_store_version_id
|
846
|
+
}
|
847
|
+
}
|
848
|
+
}
|
849
|
+
}
|
850
|
+
}
|
851
|
+
|
852
|
+
Client.instance.post("appStoreVersionReleaseRequests", body)
|
853
|
+
end
|
854
|
+
|
824
855
|
#
|
825
856
|
# idfaDeclarations
|
826
857
|
#
|
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.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
-
|
9
|
-
-
|
7
|
+
- Manu Wallner
|
8
|
+
- Helmut Januschka
|
9
|
+
- Jérôme Lacoste
|
10
|
+
- Fumiya Nakamura
|
10
11
|
- Felix Krause
|
11
|
-
-
|
12
|
+
- Jimmy Dee
|
12
13
|
- Iulian Onofrei
|
13
|
-
-
|
14
|
-
-
|
14
|
+
- Danielle Tomlinson
|
15
|
+
- Maksym Grebenets
|
15
16
|
- Jan Piotrowski
|
17
|
+
- Luka Mirosevic
|
18
|
+
- Joshua Liebowitz
|
19
|
+
- Daniel Jankowski
|
20
|
+
- Max Ott
|
21
|
+
- Olivier Halligon
|
22
|
+
- Josh Holtz
|
23
|
+
- Matthew Ellis
|
16
24
|
- Stefan Natchev
|
17
|
-
- Jérôme Lacoste
|
18
|
-
- Manu Wallner
|
19
25
|
- Jorge Revuelta H
|
20
|
-
- Joshua Liebowitz
|
21
26
|
- Kohki Miki
|
22
|
-
- Jimmy Dee
|
23
|
-
- Olivier Halligon
|
24
|
-
- Maksym Grebenets
|
25
|
-
- Helmut Januschka
|
26
|
-
- Max Ott
|
27
|
-
- Danielle Tomlinson
|
28
27
|
- Aaron Brager
|
28
|
+
- Andrew McBurney
|
29
29
|
autorequire:
|
30
30
|
bindir: bin
|
31
31
|
cert_chain: []
|
32
|
-
date: 2020-
|
32
|
+
date: 2020-08-06 00:00:00.000000000 Z
|
33
33
|
dependencies:
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: slack-notifier
|
@@ -345,42 +345,30 @@ dependencies:
|
|
345
345
|
name: faraday
|
346
346
|
requirement: !ruby/object:Gem::Requirement
|
347
347
|
requirements:
|
348
|
-
- - "
|
349
|
-
- !ruby/object:Gem::Version
|
350
|
-
version: '0.17'
|
351
|
-
- - "<"
|
348
|
+
- - "~>"
|
352
349
|
- !ruby/object:Gem::Version
|
353
|
-
version: '
|
350
|
+
version: '1.0'
|
354
351
|
type: :runtime
|
355
352
|
prerelease: false
|
356
353
|
version_requirements: !ruby/object:Gem::Requirement
|
357
354
|
requirements:
|
358
|
-
- - "
|
359
|
-
- !ruby/object:Gem::Version
|
360
|
-
version: '0.17'
|
361
|
-
- - "<"
|
355
|
+
- - "~>"
|
362
356
|
- !ruby/object:Gem::Version
|
363
|
-
version: '
|
357
|
+
version: '1.0'
|
364
358
|
- !ruby/object:Gem::Dependency
|
365
359
|
name: faraday_middleware
|
366
360
|
requirement: !ruby/object:Gem::Requirement
|
367
361
|
requirements:
|
368
|
-
- - "
|
369
|
-
- !ruby/object:Gem::Version
|
370
|
-
version: 0.13.1
|
371
|
-
- - "<"
|
362
|
+
- - "~>"
|
372
363
|
- !ruby/object:Gem::Version
|
373
|
-
version: '
|
364
|
+
version: '1.0'
|
374
365
|
type: :runtime
|
375
366
|
prerelease: false
|
376
367
|
version_requirements: !ruby/object:Gem::Requirement
|
377
368
|
requirements:
|
378
|
-
- - "
|
379
|
-
- !ruby/object:Gem::Version
|
380
|
-
version: 0.13.1
|
381
|
-
- - "<"
|
369
|
+
- - "~>"
|
382
370
|
- !ruby/object:Gem::Version
|
383
|
-
version: '
|
371
|
+
version: '1.0'
|
384
372
|
- !ruby/object:Gem::Dependency
|
385
373
|
name: fastimage
|
386
374
|
requirement: !ruby/object:Gem::Requirement
|
@@ -691,28 +679,28 @@ dependencies:
|
|
691
679
|
requirements:
|
692
680
|
- - "~>"
|
693
681
|
- !ruby/object:Gem::Version
|
694
|
-
version: 3.
|
682
|
+
version: 3.9.0
|
695
683
|
type: :development
|
696
684
|
prerelease: false
|
697
685
|
version_requirements: !ruby/object:Gem::Requirement
|
698
686
|
requirements:
|
699
687
|
- - "~>"
|
700
688
|
- !ruby/object:Gem::Version
|
701
|
-
version: 3.
|
689
|
+
version: 3.9.0
|
702
690
|
- !ruby/object:Gem::Dependency
|
703
691
|
name: rspec_junit_formatter
|
704
692
|
requirement: !ruby/object:Gem::Requirement
|
705
693
|
requirements:
|
706
694
|
- - "~>"
|
707
695
|
- !ruby/object:Gem::Version
|
708
|
-
version: 0.
|
696
|
+
version: 0.4.1
|
709
697
|
type: :development
|
710
698
|
prerelease: false
|
711
699
|
version_requirements: !ruby/object:Gem::Requirement
|
712
700
|
requirements:
|
713
701
|
- - "~>"
|
714
702
|
- !ruby/object:Gem::Version
|
715
|
-
version: 0.
|
703
|
+
version: 0.4.1
|
716
704
|
- !ruby/object:Gem::Dependency
|
717
705
|
name: pry
|
718
706
|
requirement: !ruby/object:Gem::Requirement
|
@@ -789,28 +777,14 @@ dependencies:
|
|
789
777
|
requirements:
|
790
778
|
- - "~>"
|
791
779
|
- !ruby/object:Gem::Version
|
792
|
-
version:
|
780
|
+
version: '3.8'
|
793
781
|
type: :development
|
794
782
|
prerelease: false
|
795
783
|
version_requirements: !ruby/object:Gem::Requirement
|
796
784
|
requirements:
|
797
785
|
- - "~>"
|
798
786
|
- !ruby/object:Gem::Version
|
799
|
-
version:
|
800
|
-
- !ruby/object:Gem::Dependency
|
801
|
-
name: hashdiff
|
802
|
-
requirement: !ruby/object:Gem::Requirement
|
803
|
-
requirements:
|
804
|
-
- - "<"
|
805
|
-
- !ruby/object:Gem::Version
|
806
|
-
version: 0.4.0
|
807
|
-
type: :development
|
808
|
-
prerelease: false
|
809
|
-
version_requirements: !ruby/object:Gem::Requirement
|
810
|
-
requirements:
|
811
|
-
- - "<"
|
812
|
-
- !ruby/object:Gem::Version
|
813
|
-
version: 0.4.0
|
787
|
+
version: '3.8'
|
814
788
|
- !ruby/object:Gem::Dependency
|
815
789
|
name: coveralls
|
816
790
|
requirement: !ruby/object:Gem::Requirement
|
@@ -969,8 +943,6 @@ files:
|
|
969
943
|
- deliver/lib/assets/ScreenshotsHelp
|
970
944
|
- deliver/lib/assets/summary.html.erb
|
971
945
|
- deliver/lib/deliver.rb
|
972
|
-
- deliver/lib/deliver/.commands_generator.rb.swp
|
973
|
-
- deliver/lib/deliver/.submit_for_review.rb.swp
|
974
946
|
- deliver/lib/deliver/app_screenshot.rb
|
975
947
|
- deliver/lib/deliver/commands_generator.rb
|
976
948
|
- deliver/lib/deliver/detect_values.rb
|
@@ -1005,8 +977,10 @@ files:
|
|
1005
977
|
- fastlane/lib/assets/s3_plist_template.erb
|
1006
978
|
- fastlane/lib/assets/s3_version_template.erb
|
1007
979
|
- fastlane/lib/fastlane.rb
|
980
|
+
- fastlane/lib/fastlane/.erb_template_helper.rb.swp
|
1008
981
|
- fastlane/lib/fastlane/action.rb
|
1009
982
|
- fastlane/lib/fastlane/action_collector.rb
|
983
|
+
- fastlane/lib/fastlane/actions/.git_commit.rb.swp
|
1010
984
|
- fastlane/lib/fastlane/actions/README.md
|
1011
985
|
- fastlane/lib/fastlane/actions/actions_helper.rb
|
1012
986
|
- fastlane/lib/fastlane/actions/adb.rb
|
@@ -1262,7 +1236,6 @@ files:
|
|
1262
1236
|
- fastlane/lib/fastlane/fast_file.rb
|
1263
1237
|
- fastlane/lib/fastlane/fastlane_require.rb
|
1264
1238
|
- fastlane/lib/fastlane/features.rb
|
1265
|
-
- fastlane/lib/fastlane/helper/.s3_client_helper.rb.swp
|
1266
1239
|
- fastlane/lib/fastlane/helper/README.md
|
1267
1240
|
- fastlane/lib/fastlane/helper/adb_helper.rb
|
1268
1241
|
- fastlane/lib/fastlane/helper/crashlytics_helper.rb
|
@@ -1433,7 +1406,6 @@ files:
|
|
1433
1406
|
- frameit/README.md
|
1434
1407
|
- frameit/lib/assets/empty.png
|
1435
1408
|
- frameit/lib/frameit.rb
|
1436
|
-
- frameit/lib/frameit/.editor.rb.swp
|
1437
1409
|
- frameit/lib/frameit/commands_generator.rb
|
1438
1410
|
- frameit/lib/frameit/config_parser.rb
|
1439
1411
|
- frameit/lib/frameit/dependency_checker.rb
|
@@ -1655,6 +1627,7 @@ files:
|
|
1655
1627
|
- spaceship/lib/spaceship/connect_api/models/app_store_version.rb
|
1656
1628
|
- spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb
|
1657
1629
|
- spaceship/lib/spaceship/connect_api/models/app_store_version_phased_release.rb
|
1630
|
+
- spaceship/lib/spaceship/connect_api/models/app_store_version_release_request.rb
|
1658
1631
|
- spaceship/lib/spaceship/connect_api/models/app_store_version_submission.rb
|
1659
1632
|
- spaceship/lib/spaceship/connect_api/models/beta_app_localization.rb
|
1660
1633
|
- spaceship/lib/spaceship/connect_api/models/beta_app_review_detail.rb
|