fastlane 2.132.0.beta.20190917200011 → 2.132.0.beta.20190918200023

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2ce61fb70c339ee0adcc8a76e9e8d3b4c3891856
4
- data.tar.gz: 9dc481964214e805717a102d3c6e0540e30099d6
3
+ metadata.gz: 56349d7e39582dfb471e430c0288c24c54441815
4
+ data.tar.gz: 8319061e5fbcf2d449e4e4192ed025419ca6096e
5
5
  SHA512:
6
- metadata.gz: b9fbd0288075c503a4f91f69a13aeab06aef56f570611e49b5793712c2ad7eb2959739f83d9b5e5f2bf60b6db6cd6eb76433f5f6d219e78e4b7bc438ae44f553
7
- data.tar.gz: c6a0a9df373fb04372732186f1f7fef9e12790bfa7c5f73e127b2b56e38f31e94c1ba281052f5e7731cc6dab674f08111de18c8a1a7778a376f22d9ec34347cf
6
+ metadata.gz: 4d175820ea2620182694b1a4b9001ac61d10011d1d6ea224d85944c963fea13e80b94f63b9e1e5620b106991c54b522bfea6d5b23829ce224dba7f75b7a458cc
7
+ data.tar.gz: cd0e4849e60959632a8f13a1f514bc971099c7d7ca0687a67ffddfba0f47ad0c71c50c88b42ab2cd9e7e7707b91b74aba171be97e16c39d7a3256c74f95f2abb
@@ -79,7 +79,7 @@ You'll be asked if you want to store your code signing identities inside a **Git
79
79
 
80
80
  Use Git Storage to store all code signing identities in a private git repo, owned and operated by you. The files will be encrypted using OpenSSL.
81
81
 
82
- First, enter the URL to your private (!) Git repo (You can create one for free on e.g. [GitHub](https://github.com/new) or [BitBucket](https://bitbucket.org/repo/create)). The URL you enter can be either a `https://` or a `git` URL. (If your machine is currently using SSH to authenticate with GitHub, you'll want to use a `git` URL, otherwise you may see an authentication error when you attempt to use match.) `fastlane match init` won't read or modify your certificates or profiles yet, and also won't validate your git URL.
82
+ First, enter the URL to your private (!) Git repo (You can create one for free on e.g. [GitHub](https://github.com/new) or [BitBucket](https://bitbucket.org/repo/create)). The URL you enter can be either a `https://` or a `git` URL. `fastlane match init` won't read or modify your certificates or profiles yet, and also won't validate your git URL.
83
83
 
84
84
  This will create a `Matchfile` in your current directory (or in your `./fastlane/` folder).
85
85
 
@@ -92,6 +92,25 @@ app_identifier("tools.fastlane.app")
92
92
  username("user@fastlane.tools")
93
93
  ```
94
94
 
95
+ ##### Git Storage on GitHub
96
+
97
+ If your machine is currently using SSH to authenticate with GitHub, you'll want to use a `git` URL, otherwise, you may see an authentication error when you attempt to use match. Alternatively, you can set a basic authorization for _match_:
98
+
99
+ Using parameter:
100
+
101
+ ```
102
+ math(git_basic_authorization: '<YOUR KEY>')
103
+ ```
104
+
105
+ Using environment variable:
106
+
107
+ ```
108
+ ENV['MATCH_GIT_BASIC_AUTHORIZATION'] = '<YOUR KEY>'
109
+ match
110
+ ```
111
+
112
+ You can find more information about GitHub basic authentication and personal token generation here: [https://developer.github.com/v3/auth/#basic-authentication](https://developer.github.com/v3/auth/#basic-authentication)
113
+
95
114
  #### Google Cloud Storage
96
115
 
97
116
  Use [Google Cloud Storage](https://cloud.google.com/storage/) for a fully hosted solution for your code signing identities. Certificates are stored on Google Cloud, encrypted using Google managed keys. Everything will be stored on your Google account, inside a storage bucket you provide. You can also directly access the files using the web console.
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.132.0.beta.20190917200011'.freeze
2
+ VERSION = '2.132.0.beta.20190918200023'.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
@@ -115,6 +115,12 @@ module Match
115
115
  description: "Clone just the branch specified, instead of the whole repo. This requires that the branch already exists. Otherwise the command will fail",
116
116
  is_string: false,
117
117
  default_value: false),
118
+ FastlaneCore::ConfigItem.new(key: :git_basic_authorization,
119
+ env_name: "MATCH_GIT_BASIC_AUTHORIZATION",
120
+ sensitive: true,
121
+ description: "Use a basic authorization header to access the git repo (e.g.: access via HTTPS, GitHub Actions, etc)",
122
+ optional: true,
123
+ default_value: nil),
118
124
 
119
125
  # Storage: Google Cloud
120
126
  FastlaneCore::ConfigItem.new(key: :google_cloud_bucket_name,
@@ -37,6 +37,7 @@ module Match
37
37
  git_full_name: params[:git_full_name],
38
38
  git_user_email: params[:git_user_email],
39
39
  clone_branch_directly: params[:clone_branch_directly],
40
+ git_basic_authorization: params[:git_basic_authorization],
40
41
  type: params[:type].to_s,
41
42
  platform: params[:platform].to_s,
42
43
  google_cloud_bucket_name: params[:google_cloud_bucket_name].to_s,
@@ -17,6 +17,7 @@ module Match
17
17
  attr_accessor :clone_branch_directly
18
18
  attr_accessor :type
19
19
  attr_accessor :platform
20
+ attr_accessor :git_basic_authorization
20
21
 
21
22
  def self.configure(params)
22
23
  return self.new(
@@ -28,7 +29,8 @@ module Match
28
29
  branch: params[:git_branch],
29
30
  git_full_name: params[:git_full_name],
30
31
  git_user_email: params[:git_user_email],
31
- clone_branch_directly: params[:clone_branch_directly]
32
+ clone_branch_directly: params[:clone_branch_directly],
33
+ git_basic_authorization: params[:git_basic_authorization]
32
34
  )
33
35
  end
34
36
 
@@ -40,7 +42,8 @@ module Match
40
42
  branch: "master",
41
43
  git_full_name: nil,
42
44
  git_user_email: nil,
43
- clone_branch_directly: false)
45
+ clone_branch_directly: false,
46
+ git_basic_authorization: nil)
44
47
  self.git_url = git_url
45
48
  self.shallow_clone = shallow_clone
46
49
  self.skip_docs = skip_docs
@@ -48,6 +51,7 @@ module Match
48
51
  self.git_full_name = git_full_name
49
52
  self.git_user_email = git_user_email
50
53
  self.clone_branch_directly = clone_branch_directly
54
+ self.git_basic_authorization = git_basic_authorization
51
55
 
52
56
  self.type = type if type
53
57
  self.platform = platform if platform
@@ -65,6 +69,8 @@ module Match
65
69
  self.working_directory = Dir.mktmpdir
66
70
 
67
71
  command = "git clone #{self.git_url.shellescape} #{self.working_directory.shellescape}"
72
+ command << " -c http.extraheader='AUTHORIZATION: basic #{self.git_basic_authorization.shellescape}'" unless self.git_basic_authorization.nil?
73
+
68
74
  if self.shallow_clone
69
75
  command << " --depth 1 --no-single-branch"
70
76
  elsif self.clone_branch_directly
@@ -77,6 +77,9 @@ module Snapshot
77
77
  {
78
78
  # snapshot in Xcode 9 saves screenshots with the SIMULATOR_DEVICE_NAME
79
79
  # which includes spaces
80
+ 'iPhone 11 Pro Max' => "iPhone 11 Pro Max",
81
+ 'iPhone 11 Pro' => "iPhone 11 Pro",
82
+ 'iPhone 11' => "iPhone 11",
80
83
  'iPhone XS Max' => "iPhone XS Max",
81
84
  'iPhone XS' => "iPhone XS",
82
85
  'iPhone XR' => "iPhone XR",
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.132.0.beta.20190917200011
4
+ version: 2.132.0.beta.20190918200023
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew McBurney
@@ -27,7 +27,7 @@ authors:
27
27
  autorequire:
28
28
  bindir: bin
29
29
  cert_chain: []
30
- date: 2019-09-17 00:00:00.000000000 Z
30
+ date: 2019-09-18 00:00:00.000000000 Z
31
31
  dependencies:
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: slack-notifier
@@ -1746,24 +1746,24 @@ metadata:
1746
1746
  post_install_message:
1747
1747
  rdoc_options: []
1748
1748
  require_paths:
1749
- - scan/lib
1750
- - credentials_manager/lib
1749
+ - pilot/lib
1750
+ - deliver/lib
1751
+ - fastlane/lib
1752
+ - fastlane_core/lib
1753
+ - cert/lib
1751
1754
  - gym/lib
1752
- - screengrab/lib
1755
+ - supply/lib
1756
+ - pem/lib
1757
+ - frameit/lib
1753
1758
  - precheck/lib
1759
+ - scan/lib
1760
+ - credentials_manager/lib
1754
1761
  - produce/lib
1755
- - cert/lib
1756
- - pem/lib
1757
- - deliver/lib
1762
+ - spaceship/lib
1763
+ - match/lib
1758
1764
  - snapshot/lib
1759
- - frameit/lib
1760
1765
  - sigh/lib
1761
- - fastlane/lib
1762
- - pilot/lib
1763
- - match/lib
1764
- - spaceship/lib
1765
- - fastlane_core/lib
1766
- - supply/lib
1766
+ - screengrab/lib
1767
1767
  required_ruby_version: !ruby/object:Gem::Requirement
1768
1768
  requirements:
1769
1769
  - - ">="