newrelic_rpm 3.4.1.beta1 → 3.4.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of newrelic_rpm might be problematic. Click here for more details.
- data/CHANGELOG +35 -5
- data/lib/new_relic/version.rb +1 -1
- data/newrelic_rpm.gemspec +4 -4
- metadata +9 -14
data/CHANGELOG
CHANGED
@@ -1,18 +1,48 @@
|
|
1
1
|
|
2
|
-
|
2
|
+
# New Relic Ruby Agent Release Notes #
|
3
|
+
|
4
|
+
### current version ###
|
5
|
+
## v3.4.1 ##
|
6
|
+
#### Bug Fixes ####
|
3
7
|
* Fix edge case in RUM auto instrumentation where X-UA-Compatible meta tag is
|
4
8
|
present but </head> tag is missing.
|
9
|
+
|
10
|
+
There is a somewhat obscure edge case where RUM auto instrumentation will
|
11
|
+
crash a request. The issue seems to be triggered when the X-UA-Compatible
|
12
|
+
meta tag is present and the </head> tag is missing.
|
13
|
+
|
5
14
|
* Fixed reference to @service.request_timeout to @request_timeout in
|
6
15
|
new_relic_service.rb. (Thanks to Matthew Savage)
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
16
|
+
|
17
|
+
When a timeout occurred during connection to the collector an "undefined
|
18
|
+
method `request_timeout' for nil:NilClass'" would get raised.
|
19
|
+
|
20
|
+
* preserve visibility on traced methods.
|
21
|
+
|
22
|
+
Aliased methods now have the same visibility as the original traced method.
|
23
|
+
A couple of the esoteric methods created in the process weren't getting the
|
24
|
+
visibility set properly.
|
25
|
+
|
11
26
|
* Agent service does not connect to directed shard collector after connecting
|
12
27
|
to proxy
|
28
|
+
|
29
|
+
After connecting to collector proxy name of real collector was updated, but
|
30
|
+
ip address was not being updated causing connections to go to the proxy.
|
31
|
+
Agent now looks up ip address for real collector.
|
32
|
+
|
13
33
|
* corrupt marshal data from pipe children crashing agent
|
34
|
+
|
35
|
+
If the agent receieved corrupted data from the Reqsue worker child agent
|
36
|
+
it could crash the agent itself. fixed.
|
37
|
+
|
14
38
|
* should reset RubyBench GC counter between polls
|
15
39
|
|
40
|
+
On Ruby REE, the GC profiler does not reset the counter between polls. This
|
41
|
+
is only a problem if GC could happen *between* transactions, as in, for
|
42
|
+
example, out-of-band GC in Unicorn. fixed.
|
43
|
+
|
44
|
+
|
45
|
+
### previous versions ###
|
16
46
|
v3.4.0.1
|
17
47
|
* Prevent the agent from resolving the collector address when disabled.
|
18
48
|
* Fix for error collector configuration that was introduced during beta.
|
data/lib/new_relic/version.rb
CHANGED
@@ -4,7 +4,7 @@ module NewRelic
|
|
4
4
|
MAJOR = 3
|
5
5
|
MINOR = 4
|
6
6
|
TINY = 1
|
7
|
-
BUILD =
|
7
|
+
BUILD = nil # Set to nil for a release, 'beta1', 'alpha', etc for prerelease builds
|
8
8
|
STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
|
9
9
|
end
|
10
10
|
|
data/newrelic_rpm.gemspec
CHANGED
@@ -5,13 +5,13 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "newrelic_rpm"
|
8
|
-
s.version = "3.4.1
|
8
|
+
s.version = "3.4.1"
|
9
9
|
|
10
10
|
s.authors = ["Bill Kayser", "Jon Guymon", "Justin George", "Darin Swanson"]
|
11
|
-
s.date = "2012-07-
|
11
|
+
s.date = "2012-07-26"
|
12
12
|
s.description = "New Relic is a performance management system, developed by New Relic,\nInc (http://www.newrelic.com). New Relic provides you with deep\ninformation about the performance of your web application as it runs\nin production. The New Relic Ruby Agent is dual-purposed as a either a\nGem or plugin, hosted on\nhttp://github.com/newrelic/rpm/\n"
|
13
13
|
s.email = "support@newrelic.com"
|
14
|
-
s.executables = ["
|
14
|
+
s.executables = ["mongrel_rpm", "newrelic_cmd", "newrelic"]
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"CHANGELOG",
|
17
17
|
"LICENSE",
|
@@ -296,7 +296,7 @@ Gem::Specification.new do |s|
|
|
296
296
|
]
|
297
297
|
s.homepage = "http://www.github.com/newrelic/rpm"
|
298
298
|
s.post_install_message = "\nPLEASE NOTE:\n\nDeveloper Mode is now a Rack middleware.\n\nDeveloper Mode is no longer available in Rails 2.1 and earlier.\nHowever, starting in version 2.12 you can use Developer Mode in any\nRack based framework, in addition to Rails. To install developer mode\nin a non-Rails application, just add NewRelic::Rack::DeveloperMode to\nyour middleware stack.\n\nIf you are using JRuby, we recommend using at least version 1.4 or \nlater because of issues with the implementation of the timeout library.\n\nRefer to the README.md file for more information.\n\nPlease see http://github.com/newrelic/rpm/blob/master/CHANGELOG\nfor a complete description of the features and enhancements available\nin version 3.4 of the Ruby Agent.\n \n"
|
299
|
-
s.rdoc_options = ["--
|
299
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "New Relic Ruby Agent"]
|
300
300
|
s.require_paths = ["lib"]
|
301
301
|
s.summary = "New Relic Ruby Agent"
|
302
302
|
|
metadata
CHANGED
@@ -1,15 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: newrelic_rpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 21
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 4
|
9
9
|
- 1
|
10
|
-
|
11
|
-
- 1
|
12
|
-
version: 3.4.1.beta1
|
10
|
+
version: 3.4.1
|
13
11
|
platform: ruby
|
14
12
|
authors:
|
15
13
|
- Bill Kayser
|
@@ -20,7 +18,7 @@ autorequire:
|
|
20
18
|
bindir: bin
|
21
19
|
cert_chain: []
|
22
20
|
|
23
|
-
date: 2012-07-
|
21
|
+
date: 2012-07-26 00:00:00 Z
|
24
22
|
dependencies:
|
25
23
|
- !ruby/object:Gem::Dependency
|
26
24
|
name: jeweler
|
@@ -74,9 +72,9 @@ description: |
|
|
74
72
|
|
75
73
|
email: support@newrelic.com
|
76
74
|
executables:
|
75
|
+
- mongrel_rpm
|
77
76
|
- newrelic_cmd
|
78
77
|
- newrelic
|
79
|
-
- mongrel_rpm
|
80
78
|
extensions: []
|
81
79
|
|
82
80
|
extra_rdoc_files:
|
@@ -385,7 +383,6 @@ post_install_message: |
|
|
385
383
|
|
386
384
|
|
387
385
|
rdoc_options:
|
388
|
-
- --charset=UTF-8
|
389
386
|
- --line-numbers
|
390
387
|
- --inline-source
|
391
388
|
- --title
|
@@ -404,14 +401,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
404
401
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
405
402
|
none: false
|
406
403
|
requirements:
|
407
|
-
- - "
|
404
|
+
- - ">="
|
408
405
|
- !ruby/object:Gem::Version
|
409
|
-
hash:
|
406
|
+
hash: 3
|
410
407
|
segments:
|
411
|
-
-
|
412
|
-
|
413
|
-
- 1
|
414
|
-
version: 1.3.1
|
408
|
+
- 0
|
409
|
+
version: "0"
|
415
410
|
requirements: []
|
416
411
|
|
417
412
|
rubyforge_project:
|