scout_apm 2.1.26 → 2.1.27

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: f204bb73b571d29f24c1ef41ef3e643dd53ede06
4
- data.tar.gz: 420211b4994ee6437de618b5fd6cea516881d6aa
3
+ metadata.gz: 6582ade5d3c4c94d6b8fa70ef5581d7a6257196b
4
+ data.tar.gz: 840305139be243d6a891cecddf2d6e33d18f1854
5
5
  SHA512:
6
- metadata.gz: e8095e97d2fc53bcad1a8b100ea13f574795cfbe1bc45a7d4717c7c356f2eab3f9d28ff09cd65df0485fca4a82439fb9d13aa668654a2e8599debc6b97ace906
7
- data.tar.gz: ebe375745cb23716f9930cf12221d9ee11775ee0ba37a0fe89c510d342b2618171b80724201e9f76d141d612b919d6ac41486c2fc07dd9c6ad727ac4e454a17f
6
+ metadata.gz: 70fafc4515edd1af5528705100bc14bf0d9196db6db26057376c5623c7696415b7ca80133a7b0923faa1fcad4889c53b2edc69770ffc5b934f57f2aa06c97069
7
+ data.tar.gz: 3b75c9c1b417190aa5487e4a8b9b1cb6ef1723dd7320347d4167eaac683ece60d259648d4872326ed48477ca7d38ea09ca6b83739d0939cd22e03c83b251027b
data/CHANGELOG.markdown CHANGED
@@ -1,3 +1,15 @@
1
+ # 2.1.27
2
+
3
+ * Don't attempt to call `current_layer.type` on nil
4
+
5
+ # 2.1.26
6
+
7
+ * Bug fix [4b188d6](https://github.com/scoutapp/scout_apm_ruby/commit/4b188d698852c86b86d8768ea5b37d706ce544fe)
8
+
9
+ # 2.1.25
10
+
11
+ * Automatically instrument API and Metal controllers.
12
+
1
13
  # 2.1.24
2
14
 
3
15
  * Capture additional layers of application backtrace frames. (From 3 -> 8)
@@ -63,7 +63,7 @@ module ScoutApm
63
63
  req.instant_key = instant_key
64
64
  end
65
65
 
66
- if current_layer.type == "Controller"
66
+ if current_layer && current_layer.type == "Controller"
67
67
  # Don't start a new layer if ActionController::API or ActionController::Base handled it already.
68
68
  super
69
69
  else
@@ -1,4 +1,4 @@
1
1
  module ScoutApm
2
- VERSION = "2.1.26"
2
+ VERSION = "2.1.27"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout_apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.26
4
+ version: 2.1.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derek Haynes
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-06-22 00:00:00.000000000 Z
12
+ date: 2017-07-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest
@@ -288,34 +288,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
288
288
  version: '0'
289
289
  requirements: []
290
290
  rubyforge_project: scout_apm
291
- rubygems_version: 2.6.8
291
+ rubygems_version: 2.2.2
292
292
  signing_key:
293
293
  specification_version: 4
294
294
  summary: Ruby application performance monitoring
295
- test_files:
296
- - test/data/config_test_1.yml
297
- - test/test_helper.rb
298
- - test/unit/agent_test.rb
299
- - test/unit/background_job_integrations/sidekiq_test.rb
300
- - test/unit/config_test.rb
301
- - test/unit/context_test.rb
302
- - test/unit/environment_test.rb
303
- - test/unit/git_revision_test.rb
304
- - test/unit/histogram_test.rb
305
- - test/unit/ignored_uris_test.rb
306
- - test/unit/instruments/active_record_instruments_test.rb
307
- - test/unit/instruments/net_http_test.rb
308
- - test/unit/instruments/percentile_sampler_test.rb
309
- - test/unit/layaway_test.rb
310
- - test/unit/layer_children_set_test.rb
311
- - test/unit/limited_layer_test.rb
312
- - test/unit/metric_set_test.rb
313
- - test/unit/scored_item_set_test.rb
314
- - test/unit/serializers/payload_serializer_test.rb
315
- - test/unit/slow_job_policy_test.rb
316
- - test/unit/slow_request_policy_test.rb
317
- - test/unit/sql_sanitizer_test.rb
318
- - test/unit/store_test.rb
319
- - test/unit/utils/active_record_metric_name_test.rb
320
- - test/unit/utils/backtrace_parser_test.rb
321
- - test/unit/utils/numbers_test.rb
295
+ test_files: []