fastlane 2.132.0.beta.20190913200058 → 2.132.0.beta.20190918200023

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: '0188264a6780848be546329d776a35b0751bd3ef'
4
- data.tar.gz: e9bbeb6b99b746c4fbee0f35b8f0667ed23711fe
3
+ metadata.gz: 56349d7e39582dfb471e430c0288c24c54441815
4
+ data.tar.gz: 8319061e5fbcf2d449e4e4192ed025419ca6096e
5
5
  SHA512:
6
- metadata.gz: 7117508018213fb30984b09411111ff8cfce4282cf7649ba7e18eaa886997274e877d20988a9871a0a86554a980bc0cb7d5cc8c49b5aa3547787d3a3aaada577
7
- data.tar.gz: 8bea0b51ba0cc5a73daf92dcc46f98ab979d05e2b900d82771f60778c2698cb6307ea347d30b77472634e6a371bf0d27fbda0149fcb7f05b346a250031009e45
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.20190913200058'.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.20190913200058
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-13 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
- - precheck/lib
1750
- - snapshot/lib
1751
- - frameit/lib
1752
- - gym/lib
1749
+ - pilot/lib
1750
+ - deliver/lib
1753
1751
  - fastlane/lib
1754
1752
  - fastlane_core/lib
1755
- - credentials_manager/lib
1756
1753
  - cert/lib
1757
- - scan/lib
1754
+ - gym/lib
1758
1755
  - supply/lib
1759
- - screengrab/lib
1760
1756
  - pem/lib
1757
+ - frameit/lib
1758
+ - precheck/lib
1759
+ - scan/lib
1760
+ - credentials_manager/lib
1761
1761
  - produce/lib
1762
- - sigh/lib
1763
- - pilot/lib
1764
1762
  - spaceship/lib
1765
1763
  - match/lib
1766
- - deliver/lib
1764
+ - snapshot/lib
1765
+ - sigh/lib
1766
+ - screengrab/lib
1767
1767
  required_ruby_version: !ruby/object:Gem::Requirement
1768
1768
  requirements:
1769
1769
  - - ">="