fastlane 2.54.2 → 2.54.3

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: a890b3280122a28420511fb7a3a59a8442c5d068
4
- data.tar.gz: c1272530510f7b36359ed05194003b59d61e1abc
3
+ metadata.gz: 331fe53391332185d79efc7c8730e305d5c050da
4
+ data.tar.gz: f198507ebd6254e8dffce7c0dddfc273a867774e
5
5
  SHA512:
6
- metadata.gz: 31c4ab586c535aca33a757649afe5f8c9aa5ad322bccfd3df27ed66fe1adf7cac6cca9e965c898913106e3be513b5ba846f311a39870c278d52efd0b087ca724
7
- data.tar.gz: 076e78c07baba2b6a2bdf6f3bfeff1e94a5723dc6093fef91579452238f35fff78a643cbf1a2d80486f3712acc14ba889aafdfdeebdc3db00f5cd449a1d5fd79
6
+ metadata.gz: 48a22cb01e02d8e5681c4e1f7497b920f860a1218434cb08d6b125d566be6b9f6d0a581281f3477f39dbcbd85d6ec68688b6ae04f9ebf4c36f9fa71f643cb25b
7
+ data.tar.gz: 847be7b20d49b7d73a57f3f245a4194edce283950147a3d4eb49c4f8071ce53c1fafecd958dd6733c37bf719c7aaf7ee3fb66a8f1f1c1ba442ad3bb06af9f79e
@@ -70,12 +70,10 @@ module Deliver
70
70
 
71
71
  def collect_screenshots(options)
72
72
  return [] if options[:skip_screenshots]
73
- return collect_screenshots_for_languages(options)
73
+ return collect_screenshots_for_languages(options[:screenshots_path])
74
74
  end
75
75
 
76
- def collect_screenshots_for_languages(options)
77
- path = options[:screenshots_path]
78
-
76
+ def collect_screenshots_for_languages(path)
79
77
  screenshots = []
80
78
  extensions = '{png,jpg,jpeg}'
81
79
 
@@ -5,9 +5,10 @@ module Fastlane
5
5
  end
6
6
 
7
7
  class SlatherAction < Action
8
- # https://github.com/SlatherOrg/slather/blob/cbc5099cd25beb43fd978b7a3e5428f02230122d/lib/slather/command/coverage_command.rb#L24
8
+ # https://github.com/SlatherOrg/slather/blob/v2.4.2/lib/slather/command/coverage_command.rb
9
9
  ARGS_MAP = {
10
10
  travis: '--travis',
11
+ travis_pro: '--travis-pro',
11
12
  circleci: '--circleci',
12
13
  jenkins: '--jenkins',
13
14
  buildkite: '--buildkite',
@@ -163,6 +164,11 @@ Slather is available at https://github.com/SlatherOrg/slather
163
164
  description: "Tell slather that it is running on TravisCI",
164
165
  is_string: false,
165
166
  optional: true),
167
+ FastlaneCore::ConfigItem.new(key: :travis_pro,
168
+ env_name: "FL_SLATHER_TRAVIS_PRO_ENABLED", # The name of the environment variable
169
+ description: "Tell slather that it is running on TravisCI Pro",
170
+ is_string: false,
171
+ optional: true),
166
172
  FastlaneCore::ConfigItem.new(key: :circleci,
167
173
  env_name: "FL_SLATHER_CIRCLECI_ENABLED",
168
174
  description: "Tell slather that it is running on CircleCI",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.54.2'.freeze
2
+ VERSION = '2.54.3'.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
  end
@@ -115,7 +115,6 @@ module FastlaneCore
115
115
  analytics << event_for_completion(action, action_completion_status, action_version, timestamp_seconds)
116
116
  analytics << event_for_count(action, count, action_version, timestamp_seconds)
117
117
  end
118
-
119
118
  { analytics: analytics }.to_json
120
119
  end
121
120
 
@@ -217,7 +216,7 @@ module FastlaneCore
217
216
  def event_for_web_onboarding(fastfile_id, completion_status, timestamp_seconds)
218
217
  {
219
218
  event_source: {
220
- oauth_app_name: 'fastlane-enhancer',
219
+ oauth_app_name: oauth_app_name,
221
220
  product: 'fastlane_web_onboarding'
222
221
  },
223
222
  actor: {
@@ -231,6 +230,10 @@ module FastlaneCore
231
230
  name: 'fastlane_completion_status',
232
231
  detail: completion_status
233
232
  },
233
+ secondary_target: {
234
+ name: 'executed',
235
+ detail: secondary_target_string('')
236
+ },
234
237
  millis_since_epoch: timestamp_seconds * 1000,
235
238
  version: 1
236
239
  }
@@ -239,7 +242,7 @@ module FastlaneCore
239
242
  def event_for_completion(action, completion_status, version, timestamp_seconds)
240
243
  {
241
244
  event_source: {
242
- oauth_app_name: 'fastlane-enhancer',
245
+ oauth_app_name: oauth_app_name,
243
246
  product: 'fastlane'
244
247
  },
245
248
  actor: {
@@ -255,7 +258,7 @@ module FastlaneCore
255
258
  },
256
259
  secondary_target: {
257
260
  name: 'version',
258
- detail: version
261
+ detail: secondary_target_string(version)
259
262
  },
260
263
  millis_since_epoch: timestamp_seconds * 1000,
261
264
  version: 1
@@ -265,7 +268,7 @@ module FastlaneCore
265
268
  def event_for_count(action, count, version, timestamp_seconds)
266
269
  {
267
270
  event_source: {
268
- oauth_app_name: 'fastlane-enhancer',
271
+ oauth_app_name: oauth_app_name,
269
272
  product: 'fastlane'
270
273
  },
271
274
  actor: {
@@ -281,11 +284,19 @@ module FastlaneCore
281
284
  },
282
285
  secondary_target: {
283
286
  name: 'version',
284
- detail: version
287
+ detail: secondary_target_string(version)
285
288
  },
286
289
  millis_since_epoch: timestamp_seconds * 1000,
287
290
  version: 1
288
291
  }
289
292
  end
293
+
294
+ def oauth_app_name
295
+ return 'fastlane-enhancer'
296
+ end
297
+
298
+ def secondary_target_string(string)
299
+ return string
300
+ end
290
301
  end
291
302
  end
Binary file
@@ -225,7 +225,7 @@ module Supply
225
225
  ensure_active_edit!
226
226
 
227
227
  call_google_api do
228
- android_publisher.upload_deobfuscationfile(
228
+ android_publisher.upload_edit_deobfuscationfile(
229
229
  current_package_name,
230
230
  current_edit.id,
231
231
  apk_version_code,
@@ -346,7 +346,7 @@ module Supply
346
346
  ensure_active_edit!
347
347
 
348
348
  call_google_api do
349
- android_publisher.upload_expansionfile(
349
+ android_publisher.upload_expansion_file(
350
350
  current_package_name,
351
351
  current_edit.id,
352
352
  apk_version_code,
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.54.2
4
+ version: 2.54.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -15,7 +15,7 @@ authors:
15
15
  autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
- date: 2017-08-25 00:00:00.000000000 Z
18
+ date: 2017-08-28 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier
@@ -205,6 +205,20 @@ dependencies:
205
205
  - - "~>"
206
206
  - !ruby/object:Gem::Version
207
207
  version: 1.0.0
208
+ - !ruby/object:Gem::Dependency
209
+ name: public_suffix
210
+ requirement: !ruby/object:Gem::Requirement
211
+ requirements:
212
+ - - "~>"
213
+ - !ruby/object:Gem::Version
214
+ version: 2.0.0
215
+ type: :runtime
216
+ prerelease: false
217
+ version_requirements: !ruby/object:Gem::Requirement
218
+ requirements:
219
+ - - "~>"
220
+ - !ruby/object:Gem::Version
221
+ version: 2.0.0
208
222
  - !ruby/object:Gem::Dependency
209
223
  name: tty-screen
210
224
  requirement: !ruby/object:Gem::Requirement
@@ -1276,6 +1290,7 @@ files:
1276
1290
  - sigh/lib/sigh/resign.rb
1277
1291
  - sigh/lib/sigh/runner.rb
1278
1292
  - snapshot/README.md
1293
+ - snapshot/lib/.DS_Store
1279
1294
  - snapshot/lib/assets/SnapfileTemplate
1280
1295
  - snapshot/lib/assets/SnapshotHelper.swift
1281
1296
  - snapshot/lib/assets/SnapshotHelperXcode8.swift
@@ -1445,7 +1460,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1445
1460
  version: '0'
1446
1461
  requirements: []
1447
1462
  rubyforge_project:
1448
- rubygems_version: 2.5.2
1463
+ rubygems_version: 2.6.8
1449
1464
  signing_key:
1450
1465
  specification_version: 4
1451
1466
  summary: The easiest way to automate beta deployments and releases for your iOS and