fastlane 2.117.0.beta.20190213200055 → 2.117.0.beta.20190214200107
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fastlane/lib/assets/ActionDetails.md.erb +1 -1
- data/fastlane/lib/fastlane/cli_tools_distributor.rb +6 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/match/lib/match/generator.rb +2 -0
- data/spaceship/lib/assets/languageMapping.json +1 -1
- data/spaceship/lib/spaceship/portal/ui/select_team.rb +9 -2
- metadata +13 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a70a6c8c0aa5bdac7197f1b86ae10db2606e96d
|
4
|
+
data.tar.gz: a15792efd66811268d81e7a40dabcad111f1f0f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20ab4e1e669724c078b2f2fe338b7e67184249d705b4c4db84e50ef54921d2b6ba71afad2bfa90c057a6a49a6e7b81312f5f4aa8fac91c8c15f15e366ff52a0a
|
7
|
+
data.tar.gz: 133bdfa704b21b8fe99dc83e4d2428cf929880eeea6bac00892d75539dc6ac4d7b4eae3572691fcf549611611e8d3eded94fd9d736846ca52f0ce43523a65f02
|
@@ -74,7 +74,7 @@ To pass parameters, make use of the `:` symbol, for example
|
|
74
74
|
fastlane run <%= @action.action_name %> parameter1:"value1" parameter2:"value2"
|
75
75
|
```
|
76
76
|
|
77
|
-
It's important to note that the CLI supports
|
77
|
+
It's important to note that the CLI supports primitive types like integers, floats, booleans, and strings. Arrays can be passed as a comma delimited string (e.g. `param:"1,2,3"`). Hashes are not currently supported.
|
78
78
|
|
79
79
|
It is recommended to add all _fastlane_ actions you use to your `Fastfile`.
|
80
80
|
|
@@ -102,6 +102,12 @@ module Fastlane
|
|
102
102
|
# When we launch this feature, this should never be the case
|
103
103
|
abort("#{tool_name} can't be called via `fastlane #{tool_name}`, run '#{tool_name}' directly instead".red)
|
104
104
|
end
|
105
|
+
|
106
|
+
# Some of the tools use other actions so need to load all
|
107
|
+
# actions before we start the tool generator
|
108
|
+
# Example: scan uses slack
|
109
|
+
Fastlane.load_actions
|
110
|
+
|
105
111
|
commands_generator.start
|
106
112
|
elsif tool_name == "fastlane-credentials"
|
107
113
|
require 'credentials_manager'
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.117.0.beta.
|
2
|
+
VERSION = '2.117.0.beta.20190214200107'.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
|
@@ -15,6 +15,7 @@ module Match
|
|
15
15
|
force: true, # we don't need a certificate without its private key, we only care about a new certificate
|
16
16
|
username: params[:username],
|
17
17
|
team_id: params[:team_id],
|
18
|
+
team_name: params[:team_name],
|
18
19
|
keychain_path: FastlaneCore::Helper.keychain_path(params[:keychain_name]),
|
19
20
|
keychain_password: params[:keychain_password]
|
20
21
|
})
|
@@ -63,6 +64,7 @@ module Match
|
|
63
64
|
provisioning_name: profile_name,
|
64
65
|
ignore_profiles_with_different_name: true,
|
65
66
|
team_id: params[:team_id],
|
67
|
+
team_name: params[:team_name],
|
66
68
|
template_name: params[:template_name]
|
67
69
|
}
|
68
70
|
|
@@ -67,7 +67,11 @@ module Spaceship
|
|
67
67
|
return team['teamId'] if team['teamId'].strip == team_id
|
68
68
|
return team['teamId'] if team['currentTeamMember']['teamMemberId'].to_s.strip == team_id
|
69
69
|
end
|
70
|
-
|
70
|
+
# Better message to inform user of misconfiguration as Apple now provides less friendly error as of 2019-02-12
|
71
|
+
# This is especially important as Developer Portal team IDs are deprecated and should be replaced with App Store Connect teamIDs
|
72
|
+
# "Access Unavailable - You currently don't have access to this membership resource. Contact your team's Account Holder, Josh Holtz, or an Admin."
|
73
|
+
# https://github.com/fastlane/fastlane/issues/14228
|
74
|
+
puts("Couldn't find team with ID '#{team_id}'. Make sure your are using the correct App Store Connect team ID and have the proper permissions for this team")
|
71
75
|
end
|
72
76
|
|
73
77
|
if team_name.length > 0
|
@@ -75,7 +79,10 @@ module Spaceship
|
|
75
79
|
teams.each_with_index do |team, i|
|
76
80
|
return team['teamId'] if team['name'].strip == team_name
|
77
81
|
end
|
78
|
-
|
82
|
+
# Better message to inform user of misconfiguration as Apple now provides less friendly error as of 2019-02-12
|
83
|
+
# "Access Unavailable - You currently don't have access to this membership resource. Contact your team's Account Holder, Josh Holtz, or an Admin."
|
84
|
+
# https://github.com/fastlane/fastlane/issues/14228
|
85
|
+
puts("Couldn't find team with Name '#{team_name}. Make sure you have the proper permissions for this team'")
|
79
86
|
end
|
80
87
|
|
81
88
|
return teams[0]['teamId'] if teams.count == 1 # user is just in one team
|
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.117.0.beta.
|
4
|
+
version: 2.117.0.beta.20190214200107
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Olivier Halligon
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-02-
|
30
|
+
date: 2019-02-14 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1687,24 +1687,24 @@ metadata:
|
|
1687
1687
|
post_install_message:
|
1688
1688
|
rdoc_options: []
|
1689
1689
|
require_paths:
|
1690
|
-
- scan/lib
|
1691
|
-
- precheck/lib
|
1692
1690
|
- gym/lib
|
1691
|
+
- snapshot/lib
|
1692
|
+
- produce/lib
|
1693
|
+
- screengrab/lib
|
1694
|
+
- frameit/lib
|
1695
|
+
- pilot/lib
|
1696
|
+
- deliver/lib
|
1697
|
+
- precheck/lib
|
1698
|
+
- spaceship/lib
|
1693
1699
|
- credentials_manager/lib
|
1694
1700
|
- cert/lib
|
1695
|
-
-
|
1701
|
+
- scan/lib
|
1696
1702
|
- fastlane_core/lib
|
1697
|
-
- screengrab/lib
|
1698
|
-
- pem/lib
|
1699
|
-
- deliver/lib
|
1700
|
-
- supply/lib
|
1701
|
-
- pilot/lib
|
1702
1703
|
- match/lib
|
1704
|
+
- pem/lib
|
1703
1705
|
- fastlane/lib
|
1704
|
-
-
|
1706
|
+
- supply/lib
|
1705
1707
|
- sigh/lib
|
1706
|
-
- frameit/lib
|
1707
|
-
- snapshot/lib
|
1708
1708
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1709
1709
|
requirements:
|
1710
1710
|
- - ">="
|