fastlane 2.120.0.beta.20190403200039 → 2.120.0.beta.20190404200009
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fastlane/lib/fastlane/runner.rb +5 -2
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/gym/lib/gym/code_signing_mapping.rb +4 -4
- data/spaceship/README.md +3 -1
- metadata +15 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 579ca8b5ed2920890cdbb4fb1d304dc029e87ec6
|
4
|
+
data.tar.gz: 7fa712b9b006c7e4c98c3abe03c7e7c66e91c9e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77e7823092f1441d40c20fb9b0d78f2f15f3b54b804e44ff22adb4c716021aeddb0de1467e31e7fdd8f11c915449a3968802e053e33b5b8cd35d8bfe190cad50
|
7
|
+
data.tar.gz: 6606113af6fe852f6b286760864f01a0f4b49fb59d342a2c2f6d01411bc61a59bf3713352768cab84595741ec8a63de65c6c3d43513765300c0268042cc7a9e1
|
@@ -226,9 +226,12 @@ module Fastlane
|
|
226
226
|
begin
|
227
227
|
Dir.chdir(custom_dir) do # go up from the fastlane folder, to the project folder
|
228
228
|
# If another action is calling this action, we shouldn't show it in the summary
|
229
|
-
# (see https://github.com/fastlane/fastlane/issues/4546)
|
230
229
|
|
231
|
-
|
230
|
+
unless from_action
|
231
|
+
args = arguments.kind_of?(Array) && arguments.first.kind_of?(Hash) ? arguments.first : {}
|
232
|
+
action_name = args[:step_name] || class_ref.step_text
|
233
|
+
args.delete(:step_name)
|
234
|
+
end
|
232
235
|
Actions.execute_action(action_name) do
|
233
236
|
# arguments is an array by default, containing an hash with the actual parameters
|
234
237
|
# Since we usually just need the passed hash, we'll just use the first object if there is only one
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.120.0.beta.
|
2
|
+
VERSION = '2.120.0.beta.20190404200009'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
@@ -130,14 +130,14 @@ module Gym
|
|
130
130
|
target.build_configuration_list.build_configurations.each do |build_configuration|
|
131
131
|
current = build_configuration.build_settings
|
132
132
|
next if test_target?(current)
|
133
|
-
sdkroot = build_configuration.resolve_build_setting("SDKROOT")
|
133
|
+
sdkroot = build_configuration.resolve_build_setting("SDKROOT", target)
|
134
134
|
next unless same_platform?(sdkroot)
|
135
135
|
next unless specified_configuration == build_configuration.name
|
136
136
|
|
137
|
-
bundle_identifier = build_configuration.resolve_build_setting("PRODUCT_BUNDLE_IDENTIFIER")
|
137
|
+
bundle_identifier = build_configuration.resolve_build_setting("PRODUCT_BUNDLE_IDENTIFIER", target)
|
138
138
|
next unless bundle_identifier
|
139
|
-
provisioning_profile_specifier = build_configuration.resolve_build_setting("PROVISIONING_PROFILE_SPECIFIER")
|
140
|
-
provisioning_profile_uuid = build_configuration.resolve_build_setting("PROVISIONING_PROFILE")
|
139
|
+
provisioning_profile_specifier = build_configuration.resolve_build_setting("PROVISIONING_PROFILE_SPECIFIER", target)
|
140
|
+
provisioning_profile_uuid = build_configuration.resolve_build_setting("PROVISIONING_PROFILE", target)
|
141
141
|
|
142
142
|
has_profile_specifier = provisioning_profile_specifier.to_s.length > 0
|
143
143
|
has_profile_uuid = provisioning_profile_uuid.to_s.length > 0
|
data/spaceship/README.md
CHANGED
@@ -137,7 +137,7 @@ All [fastlane tools](https://fastlane.tools) that communicate with Apple's web s
|
|
137
137
|
|
138
138
|
Overview of the used API endpoints
|
139
139
|
|
140
|
-
- `https://idmsa.apple.com`:
|
140
|
+
- `https://idmsa.apple.com`:
|
141
141
|
- Used to authenticate to get a valid session
|
142
142
|
- `https://developerservices2.apple.com`:
|
143
143
|
- Get a list of all available provisioning profiles
|
@@ -157,6 +157,8 @@ Overview of the used API endpoints
|
|
157
157
|
- Managing app metadata
|
158
158
|
- `https://du-itc.appstoreconnect.apple.com`:
|
159
159
|
- Upload icons, screenshots, trailers ...
|
160
|
+
- `https://is[1-9]-ssl.mzstatic.com`:
|
161
|
+
- Download app screenshots from App Store Connect
|
160
162
|
|
161
163
|
_spaceship_ uses all those API points to offer this seamless experience.
|
162
164
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.120.0.beta.
|
4
|
+
version: 2.120.0.beta.20190404200009
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stefan Natchev
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-04-
|
30
|
+
date: 2019-04-04 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1688,24 +1688,24 @@ metadata:
|
|
1688
1688
|
post_install_message:
|
1689
1689
|
rdoc_options: []
|
1690
1690
|
require_paths:
|
1691
|
-
- fastlane/lib
|
1692
|
-
- gym/lib
|
1693
|
-
- scan/lib
|
1694
|
-
- screengrab/lib
|
1695
|
-
- frameit/lib
|
1696
|
-
- cert/lib
|
1697
|
-
- spaceship/lib
|
1698
|
-
- supply/lib
|
1699
1691
|
- produce/lib
|
1700
|
-
-
|
1701
|
-
- pem/lib
|
1702
|
-
- match/lib
|
1703
|
-
- sigh/lib
|
1692
|
+
- deliver/lib
|
1704
1693
|
- fastlane_core/lib
|
1694
|
+
- pem/lib
|
1705
1695
|
- credentials_manager/lib
|
1696
|
+
- match/lib
|
1697
|
+
- fastlane/lib
|
1698
|
+
- scan/lib
|
1699
|
+
- gym/lib
|
1706
1700
|
- pilot/lib
|
1707
|
-
- deliver/lib
|
1708
1701
|
- precheck/lib
|
1702
|
+
- sigh/lib
|
1703
|
+
- frameit/lib
|
1704
|
+
- screengrab/lib
|
1705
|
+
- supply/lib
|
1706
|
+
- cert/lib
|
1707
|
+
- snapshot/lib
|
1708
|
+
- spaceship/lib
|
1709
1709
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1710
1710
|
requirements:
|
1711
1711
|
- - ">="
|