fastlane 1.46.0 → 1.46.1

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: c932c5b2ee42b209b75410e61ed5e82ba492913e
4
- data.tar.gz: ef284ec7b67e28d72707ebc5d7187a6a9e96eef8
3
+ metadata.gz: 5c2c02d95f1398afe851c4be7156a3375468b9c9
4
+ data.tar.gz: 8a92f67bb2f712a549ca010df4ab750ca2db0a06
5
5
  SHA512:
6
- metadata.gz: 1545e73a7ef3dd23250e7b4e074d6fb93f1aa4a279cafa1646b22cf010419493b45ab602bf8edbaf0f83d7704676e3f1bbacfb3b5b1a502a7af75831ffe27f7c
7
- data.tar.gz: 4356d2b3d0e65eabe5377cf338194cbbbd897b550c3bd7d9e41e2c8f02f722d65d3db3bad96fa0baeaa7dcf42097e5fdb2c5a3729b88324b69a58a188faef889
6
+ metadata.gz: 1164580d026faade116ccc2e516b50555e7d74a844ffbcf959ac6f5455f97d2d669c3ca8d8c205bb90acc8c44b670f76c2cf0505dda255afc6b5a30c40b55322
7
+ data.tar.gz: 29ba5bf0b359533d448530e03116ac5c2782baccce8ffe393750644140c99bdb0a0699b3d22f1543842eccdcc437429ae3b9e93d73dfca3adff420cfb14b699a
@@ -16,7 +16,8 @@ module Fastlane
16
16
 
17
17
  Helper.log.info "Collecting Git commits between #{from} and #{to}".green
18
18
 
19
- changelog = Actions.git_log_between(params[:pretty], from, to).gsub("\n\n", "\n") # as there are duplicate newlines
19
+ changelog = Actions.git_log_between(params[:pretty], from, to)
20
+ changelog = changelog.gsub("\n\n", "\n") if changelog # as there are duplicate newlines
20
21
  Actions.lane_context[SharedValues::FL_CHANGELOG] = changelog
21
22
 
22
23
  changelog
@@ -41,7 +42,7 @@ module Fastlane
41
42
  def self.available_options
42
43
  [
43
44
  FastlaneCore::ConfigItem.new(key: :between,
44
- env_name: 'FL_GIT_COLLECT_MESSAGES_BETWEEN',
45
+ env_name: 'FL_CHANGELOG_FROM_GIT_COMMITS_BETWEEN',
45
46
  description: 'Array containing two Git revision values between which to collect messages',
46
47
  optional: true,
47
48
  is_string: false,
@@ -50,13 +51,13 @@ module Fastlane
50
51
  raise ":between must be an array of size 2".red unless (value || []).size == 2
51
52
  end),
52
53
  FastlaneCore::ConfigItem.new(key: :pretty,
53
- env_name: 'FL_GIT_COLLECT_MESSAGES_PRETTY',
54
+ env_name: 'FL_CHANGELOG_FROM_GIT_COMMITS_PRETTY',
54
55
  description: 'The format applied to each commit while generating the collected value',
55
56
  optional: true,
56
57
  default_value: '%B',
57
58
  is_string: true),
58
59
  FastlaneCore::ConfigItem.new(key: :match_lightweight_tag,
59
- env_name: 'FL_GIT_COLLECT_MESSAGES_MATCH_LIGHTWEIGHT_TAG',
60
+ env_name: 'FL_CHANGELOG_FROM_GIT_COMMITS_MATCH_LIGHTWEIGHT_TAG',
60
61
  description: 'Whether or not to match a lightweight tag when searching for the last one',
61
62
  optional: true,
62
63
  default_value: true,
@@ -8,9 +8,12 @@ module Fastlane
8
8
  begin
9
9
  FastlaneCore::UpdateChecker.start_looking_for_update('pilot') unless Helper.is_test?
10
10
 
11
+ changelog = Actions.lane_context[SharedValues::FL_CHANGELOG]
12
+ values[:changelog] ||= changelog if changelog
13
+
11
14
  values[:ipa] ||= Actions.lane_context[SharedValues::IPA_OUTPUT_PATH]
12
15
 
13
- return if Helper.test?
16
+ return values if Helper.test?
14
17
 
15
18
  Pilot::BuildManager.new.upload(values) # we already have the finished config
16
19
  ensure
@@ -1,7 +1,7 @@
1
1
  module Fastlane
2
2
  module Actions
3
3
  def self.git_log_between(pretty_format, from, to)
4
- Actions.sh("git log --pretty=#{pretty_format} #{from}...#{to}", log: false).chomp
4
+ Actions.sh("git log --pretty=\"#{pretty_format}\" #{from}...#{to}", log: false).chomp
5
5
  rescue
6
6
  nil
7
7
  end
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.46.0'
2
+ VERSION = '1.46.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.46.0
4
+ version: 1.46.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-06 00:00:00.000000000 Z
11
+ date: 2015-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: krausefx-shenzhen
@@ -208,7 +208,7 @@ dependencies:
208
208
  requirements:
209
209
  - - ">="
210
210
  - !ruby/object:Gem::Version
211
- version: 1.6.2
211
+ version: 1.6.3
212
212
  - - "<"
213
213
  - !ruby/object:Gem::Version
214
214
  version: 2.0.0
@@ -218,7 +218,7 @@ dependencies:
218
218
  requirements:
219
219
  - - ">="
220
220
  - !ruby/object:Gem::Version
221
- version: 1.6.2
221
+ version: 1.6.3
222
222
  - - "<"
223
223
  - !ruby/object:Gem::Version
224
224
  version: 2.0.0
@@ -228,7 +228,7 @@ dependencies:
228
228
  requirements:
229
229
  - - ">="
230
230
  - !ruby/object:Gem::Version
231
- version: 1.2.2
231
+ version: 1.4.0
232
232
  - - "<"
233
233
  - !ruby/object:Gem::Version
234
234
  version: 2.0.0
@@ -238,7 +238,7 @@ dependencies:
238
238
  requirements:
239
239
  - - ">="
240
240
  - !ruby/object:Gem::Version
241
- version: 1.2.2
241
+ version: 1.4.0
242
242
  - - "<"
243
243
  - !ruby/object:Gem::Version
244
244
  version: 2.0.0
@@ -268,7 +268,7 @@ dependencies:
268
268
  requirements:
269
269
  - - ">="
270
270
  - !ruby/object:Gem::Version
271
- version: 1.0.1
271
+ version: 1.1.0
272
272
  - - "<"
273
273
  - !ruby/object:Gem::Version
274
274
  version: 2.0.0
@@ -278,7 +278,7 @@ dependencies:
278
278
  requirements:
279
279
  - - ">="
280
280
  - !ruby/object:Gem::Version
281
- version: 1.0.1
281
+ version: 1.1.0
282
282
  - - "<"
283
283
  - !ruby/object:Gem::Version
284
284
  version: 2.0.0
@@ -288,7 +288,7 @@ dependencies:
288
288
  requirements:
289
289
  - - ">="
290
290
  - !ruby/object:Gem::Version
291
- version: 1.2.5
291
+ version: 1.2.7
292
292
  - - "<"
293
293
  - !ruby/object:Gem::Version
294
294
  version: 2.0.0
@@ -298,7 +298,7 @@ dependencies:
298
298
  requirements:
299
299
  - - ">="
300
300
  - !ruby/object:Gem::Version
301
- version: 1.2.5
301
+ version: 1.2.7
302
302
  - - "<"
303
303
  - !ruby/object:Gem::Version
304
304
  version: 2.0.0
@@ -328,7 +328,7 @@ dependencies:
328
328
  requirements:
329
329
  - - ">="
330
330
  - !ruby/object:Gem::Version
331
- version: 1.0.2
331
+ version: 1.1.0
332
332
  - - "<"
333
333
  - !ruby/object:Gem::Version
334
334
  version: 2.0.0
@@ -338,7 +338,7 @@ dependencies:
338
338
  requirements:
339
339
  - - ">="
340
340
  - !ruby/object:Gem::Version
341
- version: 1.0.2
341
+ version: 1.1.0
342
342
  - - "<"
343
343
  - !ruby/object:Gem::Version
344
344
  version: 2.0.0
@@ -731,7 +731,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
731
731
  version: '0'
732
732
  requirements: []
733
733
  rubyforge_project:
734
- rubygems_version: 2.4.0
734
+ rubygems_version: 2.4.5.1
735
735
  signing_key:
736
736
  specification_version: 4
737
737
  summary: Connect all iOS deployment tools into one streamlined workflow