fastlane 1.33.2 → 1.33.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 +4 -4
- data/README.md +2 -2
- data/bin/fastlane +10 -0
- data/lib/fastlane/lane_manager.rb +2 -0
- data/lib/fastlane/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf88c61a4182e34f989e273257aae74aa91ae7c2
|
|
4
|
+
data.tar.gz: 906b823da0f648bbc4c72373ed6074d0a7cd2e4e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32fdbfac6614780ec4083c796ce5b668f43633bc6886dc17bad66bd5b5131bfe9c050c4f7fbb1710b3788351de4a748da979a7ee61d04f52a1cbfd9ac7041403
|
|
7
|
+
data.tar.gz: cd911d7445b249c4fd572492dc54126f32c1272fb263401b789ee267806f0d813be54162147f0fbe3c3dd9a94eeead7fa49b37a4ba0af1956d294068eb3d3864
|
data/README.md
CHANGED
|
@@ -169,9 +169,9 @@ See how [Wikipedia](https://github.com/fastlane/examples#wikipedia-by-wikimedia-
|
|
|
169
169
|
|
|
170
170
|
`fastlane` tracks the number of errors for each action to detect integration issues. The data will be sent to [fastlane-enhancer](https://github.com/fastlane/enhancer) and is available publicly.
|
|
171
171
|
|
|
172
|
-
You can easily opt-out by adding `opt_out_usage` to your `Fastfile` or by setting the environment variable `FASTLANE_OPT_OUT_USAGE`.
|
|
172
|
+
You can easily opt-out by adding `opt_out_usage` to your `Fastfile` or by setting the environment variable `FASTLANE_OPT_OUT_USAGE`. To also disable update checks, set the `FASTLANE_SKIP_UPDATE_CHECK` variable.
|
|
173
173
|
|
|
174
|
-
|
|
174
|
+
You can optionally submit crash reports, run `fastlane enable_crash_reporting` to get started. This makes resolving issues much easier and helps improving fastlane. No sensitive information is sent.
|
|
175
175
|
|
|
176
176
|
## Credentials
|
|
177
177
|
A detailed description about how `fastlane` stores your credentials is available on a [separate repo](https://github.com/fastlane/credentials_manager).
|
data/bin/fastlane
CHANGED
|
@@ -131,6 +131,14 @@ class FastlaneApplication
|
|
|
131
131
|
end
|
|
132
132
|
end
|
|
133
133
|
|
|
134
|
+
command :enable_crash_reporting do |c|
|
|
135
|
+
c.syntax = 'fastlane enable_crash_reporting'
|
|
136
|
+
c.description = 'Enable crash reporting to improve fastlane'
|
|
137
|
+
c.action do |args, options|
|
|
138
|
+
FastlaneCore::CrashReporting.enable
|
|
139
|
+
end
|
|
140
|
+
end
|
|
141
|
+
|
|
134
142
|
default_command :trigger
|
|
135
143
|
|
|
136
144
|
run!
|
|
@@ -140,6 +148,8 @@ end
|
|
|
140
148
|
begin
|
|
141
149
|
FastlaneCore::UpdateChecker.start_looking_for_update('fastlane')
|
|
142
150
|
FastlaneApplication.new.run
|
|
151
|
+
rescue => ex
|
|
152
|
+
FastlaneCore::CrashReporting.handle_crash(ex)
|
|
143
153
|
ensure
|
|
144
154
|
FastlaneCore::UpdateChecker.show_update_status('fastlane', Fastlane::VERSION)
|
|
145
155
|
end
|
data/lib/fastlane/version.rb
CHANGED
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: 1.33.
|
|
4
|
+
version: 1.33.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -176,7 +176,7 @@ dependencies:
|
|
|
176
176
|
requirements:
|
|
177
177
|
- - ">="
|
|
178
178
|
- !ruby/object:Gem::Version
|
|
179
|
-
version: 0.
|
|
179
|
+
version: 0.23.0
|
|
180
180
|
- - "<"
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
182
|
version: 1.0.0
|
|
@@ -186,7 +186,7 @@ dependencies:
|
|
|
186
186
|
requirements:
|
|
187
187
|
- - ">="
|
|
188
188
|
- !ruby/object:Gem::Version
|
|
189
|
-
version: 0.
|
|
189
|
+
version: 0.23.0
|
|
190
190
|
- - "<"
|
|
191
191
|
- !ruby/object:Gem::Version
|
|
192
192
|
version: 1.0.0
|
|
@@ -689,7 +689,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
689
689
|
version: '0'
|
|
690
690
|
requirements: []
|
|
691
691
|
rubyforge_project:
|
|
692
|
-
rubygems_version: 2.4.
|
|
692
|
+
rubygems_version: 2.4.6
|
|
693
693
|
signing_key:
|
|
694
694
|
specification_version: 4
|
|
695
695
|
summary: Connect all iOS deployment tools into one streamlined workflow
|