newrelic_rpm 4.7.0.339 → 4.7.1.340

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: aabe09622c53b4daace84facb8f8ada18fc60744
4
- data.tar.gz: 743c735df3aec5ee4dc31a861039835143e45fd2
3
+ metadata.gz: 9a3a168ac481a87a70d8f290883b23ab68a34350
4
+ data.tar.gz: cf5d8a5680a0d8303b54233c87997b64f71440bd
5
5
  SHA512:
6
- metadata.gz: fc9a023f05c6fc816622fad43aa920619c7acf14c49dbfbe5ec9513056f11da6a6ab56d343cfcc2f73ed484e156bc3ca535a7162530197228200b0d102503d5a
7
- data.tar.gz: 7added760ccb67756285381503e6d4e7e6411bf61e2a6c0814a22465beda1516d8ddce1d2c5de8403b27b3413211ccf20c4f43ae287389dc179500d60a919490
6
+ metadata.gz: c6ef5fdc5bc818e532fc67ffb3a6ab937271f5aeb7ee98b3e52e55da5962fcfbf1fb9d5f4f585bef8592de128b2b0ea7366b3d0c3ad526687c09e136c6620d3a
7
+ data.tar.gz: a5d67d727409fb4879880923a26bbebdce0d77f04b7931a842fef6166fd0b0790e59b84dfc6c06e38690a4c90b73197929b728ffe9e876004834cf4c6db45974
@@ -1,5 +1,14 @@
1
1
  # New Relic Ruby Agent Release Notes #
2
2
 
3
+ ## 4.7.1 ##
4
+
5
+ * Bugfix for Manual Browser Instrumentation
6
+
7
+ There was a previous bug that required setting both `rum.enabled: false` and
8
+ `browser.auto_instrument: false` to completely disable browser monitoring. An
9
+ attempt to fix this in 4.7.0 resulted in breaking manual browser
10
+ instrumentation. Those changes have been reverted.
11
+
3
12
  ## v4.7.0 ##
4
13
 
5
14
  * Expected Error API
@@ -23,13 +23,13 @@ module NewRelic
23
23
  "JS agent loader debug: #{NewRelic::Agent.config[:'browser_monitoring.debug']}",
24
24
  "JS agent loader version: #{NewRelic::Agent.config[:'browser_monitoring.loader_version']}")
25
25
 
26
- if !NewRelic::Agent.config[:'browser_monitoring.auto_instrument']
26
+ if !NewRelic::Agent.config[:'rum.enabled']
27
27
  NewRelic::Agent.logger.debug("Real User Monitoring is disabled for this agent. Edit your configuration to change this.")
28
28
  end
29
29
  end
30
30
 
31
31
  def enabled?
32
- Agent.config[:'browser_monitoring.auto_instrument'] && !!Agent.config[:beacon]
32
+ Agent.config[:'rum.enabled'] && !!Agent.config[:beacon]
33
33
  end
34
34
 
35
35
  def obfuscator
@@ -12,7 +12,7 @@ module NewRelic
12
12
 
13
13
  MAJOR = 4
14
14
  MINOR = 7
15
- TINY = 0
15
+ TINY = 1
16
16
 
17
17
  begin
18
18
  require File.join(File.dirname(__FILE__), 'build')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newrelic_rpm
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.7.0.339
4
+ version: 4.7.1.340
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Wear
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-12-14 00:00:00.000000000 Z
13
+ date: 2017-12-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake