fastlane 2.27.0.beta.20170414010035 → 2.27.0

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: 01337b98c0f98b6328edb48af5fefc0e194bfb1e
4
- data.tar.gz: a9c689b43a10335807721aa4dc5913bb09ab1cd4
3
+ metadata.gz: e0bc3b953c5f1d772eb759ffdeb8a8ebf6437ba8
4
+ data.tar.gz: 3ececf8302264c6b69c98871135617cf9901deb7
5
5
  SHA512:
6
- metadata.gz: 28dba41521b08845f9d095400b7cd4d50691c95a1d7da82d32c92b4abd4ac505da20088ea67d9f818c2330c483397912a23086870e756b9ffafe7720032cbf29
7
- data.tar.gz: 93e0f956661472dd1e62e7bd3d8c7d2bad2ced89bb9d1ecdc47ab951b8d84879498a16ae5480730fc054b1a9428db649c6b030dba32493725ecbcaabeaf4ea11
6
+ metadata.gz: dbbb696a9d86c32457e4d222f0e6f1a55bc48ef97c0fb3654aabed80b1a6ee7a4406a43aef273926d21f8d8eb385354e9c26da43ddc1bff1bb7885f89ea07213
7
+ data.tar.gz: 49c5bb0aa4f3b403034e030861cb608be9b436e8fd8917831a4ef1c355bc929fe0e2e1c0efcb3a254cd56849385570b3e1f33ec523c00a8ed7eb47f3e175576d
@@ -52,7 +52,7 @@ module Fastlane
52
52
  default_value: false),
53
53
  FastlaneCore::ConfigItem.new(key: :tags,
54
54
  env_name: "FL_PUSH_GIT_TAGS",
55
- description: "Wether tags are pushed to remote. Defaults to true",
55
+ description: "Whether tags are pushed to remote. Defaults to true",
56
56
  is_string: false,
57
57
  default_value: true),
58
58
  FastlaneCore::ConfigItem.new(key: :remote,
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.27.0.beta.20170414010035'.freeze
2
+ VERSION = '2.27.0'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -35,7 +35,13 @@ module Commander
35
35
 
36
36
  begin
37
37
  collector.did_launch_action(@program[:name])
38
- run_active_command
38
+ # PILOT_MAINTENANCE Temporaroy `begin/rescue` block for pilot mainenance mode
39
+ begin
40
+ run_active_command
41
+ rescue => e
42
+ raise e unless @program[:name] == 'pilot'
43
+ raise_pilot_maintenance_mode_exception!(e)
44
+ end
39
45
  rescue InvalidCommandError => e
40
46
  # calling `abort` makes it likely that tests stop without failing, so
41
47
  # we'll disable that during tests.
@@ -44,10 +50,10 @@ module Commander
44
50
  else
45
51
  abort "#{e}. Use --help for more information"
46
52
  end
47
- rescue Interrupt => ex
53
+ rescue Interrupt => e
48
54
  # We catch it so that the stack trace is hidden by default when using ctrl + c
49
55
  if FastlaneCore::Globals.verbose?
50
- raise ex
56
+ raise e
51
57
  else
52
58
  puts "\nCancelled... use --verbose to show the stack trace"
53
59
  end
@@ -91,6 +97,27 @@ module Commander
91
97
  end
92
98
  end
93
99
 
100
+ # PILOT_MAINTENANCE Remove after pilot migration is done
101
+ def raise_pilot_maintenance_mode_exception!(e)
102
+ FastlaneCore::UI.important("-------------")
103
+ FastlaneCore::UI.important("pilot crashed")
104
+ FastlaneCore::UI.important("-------------")
105
+ FastlaneCore::UI.error("Unfortunately the TestFlight update from 11th April 2017 changed")
106
+ FastlaneCore::UI.error("the way Testers, Groups and Builds are managed on iTunes connect.")
107
+ FastlaneCore::UI.error("We're busy working on migrating _pilot_ to work with the new system")
108
+ FastlaneCore::UI.error("however it requires lots of changes and refactors from our side")
109
+ FastlaneCore::UI.error("to ensure that everything keeps working for you as it did before")
110
+ FastlaneCore::UI.error("")
111
+ FastlaneCore::UI.error("Please follow the WIP pull request on GitHub to stay up to date: https://github.com/fastlane/fastlane/pull/8871")
112
+ FastlaneCore::UI.error("")
113
+ FastlaneCore::UI.error("Original error message: #{e}")
114
+ if FastlaneCore::Globals.verbose?
115
+ raise e # on verbose mode, we want to show the original stack trace
116
+ else
117
+ FastlaneCore::UI.user_error!("pilot doesn't work with the latest TestFlight yet, we're busy working on upgrading it!")
118
+ end
119
+ end
120
+
94
121
  def handle_tls_error!(e)
95
122
  # Apple has upgraded its iTunes Connect servers to require TLS 1.2, but
96
123
  # system Ruby 2.0 does not support it. We want to suggest that users upgrade
Binary file
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.27.0.beta.20170414010035
4
+ version: 2.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -1167,6 +1167,7 @@ files:
1167
1167
  - sigh/lib/sigh/resign.rb
1168
1168
  - sigh/lib/sigh/runner.rb
1169
1169
  - snapshot/README.md
1170
+ - snapshot/lib/.DS_Store
1170
1171
  - snapshot/lib/assets/SnapfileTemplate
1171
1172
  - snapshot/lib/assets/SnapshotHelper.swift
1172
1173
  - snapshot/lib/assets/SnapshotHelper2-3.swift
@@ -1283,23 +1284,23 @@ metadata:
1283
1284
  post_install_message:
1284
1285
  rdoc_options: []
1285
1286
  require_paths:
1286
- - pilot/lib
1287
- - pem/lib
1288
- - fastlane/lib
1287
+ - cert/lib
1288
+ - credentials_manager/lib
1289
1289
  - deliver/lib
1290
+ - fastlane/lib
1290
1291
  - fastlane_core/lib
1292
+ - frameit/lib
1291
1293
  - gym/lib
1294
+ - match/lib
1295
+ - pem/lib
1296
+ - pilot/lib
1297
+ - produce/lib
1298
+ - scan/lib
1292
1299
  - screengrab/lib
1293
- - frameit/lib
1294
1300
  - sigh/lib
1295
- - produce/lib
1296
- - credentials_manager/lib
1301
+ - snapshot/lib
1297
1302
  - spaceship/lib
1298
- - cert/lib
1299
- - match/lib
1300
- - scan/lib
1301
1303
  - supply/lib
1302
- - snapshot/lib
1303
1304
  required_ruby_version: !ruby/object:Gem::Requirement
1304
1305
  requirements:
1305
1306
  - - ">="
@@ -1307,14 +1308,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
1307
1308
  version: 2.0.0
1308
1309
  required_rubygems_version: !ruby/object:Gem::Requirement
1309
1310
  requirements:
1310
- - - ">"
1311
+ - - ">="
1311
1312
  - !ruby/object:Gem::Version
1312
- version: 1.3.1
1313
+ version: '0'
1313
1314
  requirements: []
1314
1315
  rubyforge_project:
1315
- rubygems_version: 2.4.5.2
1316
+ rubygems_version: 2.6.8
1316
1317
  signing_key:
1317
1318
  specification_version: 4
1318
1319
  summary: The easiest way to automate beta deployments and releases for your iOS and
1319
1320
  Android apps
1320
1321
  test_files: []
1322
+ has_rdoc: