newrelic_rpm 2.11.0.beta2 → 2.11.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 CHANGED
@@ -1,3 +1,6 @@
1
+ v2.11.1
2
+ * republished gem without generated rdocs
3
+
1
4
  v2.11.0
2
5
  * rails3 instrumentation (no developer mode support yet)
3
6
  * removed the ensure_worker_thread started and instead defined an after_fork
@@ -7,6 +10,14 @@ v2.11.0
7
10
  * add visibility to active record db transactions in the rpm transaction
8
11
  traces (thanks to jeremy kemper)
9
12
  * fix regression in merb support which caused merb apps not to start
13
+ * added NewRelic::Agent.logger to the public api to write to the agent
14
+ log file.
15
+ * optimizations to background thread, controller instrumentation, memory
16
+ usage
17
+ * add logger method to public_api
18
+ * support list notation for ignored exceptions in the newrelic.yml
19
+
20
+ v2.10.8
10
21
  * fix bug in delayed_job instrumentation that caused the job queue sampler
11
22
  to run in the wrong place
12
23
  * change startup sequence and code that restarts the worker loop
@@ -18,11 +29,7 @@ v2.11.0
18
29
  * allow more correct overriding of transaction trace settings in the
19
30
  call to #manual_start
20
31
  * simplify WorkerLoop and add better protection for concurrency
21
- * added NewRelic::Agent.logger to the public api to write to the agent
22
- log file.
23
- * optimizations to background thread, controller instrumentation, memory
24
- usage
25
- * add logger method to public_api
32
+ * preliminary support for rails3
26
33
 
27
34
  v2.10.6
28
35
  * fix missing URL and referer on some traced errors and transactions
@@ -337,7 +337,7 @@ module NewRelic
337
337
  begin
338
338
  sleep connect_retry_period.to_i
339
339
  # Running in the Passenger or Unicorn spawners?
340
- if $0 =~ /ApplicationSpawner|master/
340
+ if $0 =~ /ApplicationSpawner|unicorn.* master/
341
341
  log.debug "Process is master spawner (#$0) -- don't connect to RPM service"
342
342
  @connected = nil
343
343
  return
@@ -26,7 +26,7 @@ module NewRelic
26
26
  @capture_source = config.fetch('capture_source', true)
27
27
 
28
28
  ignore_errors = config.fetch('ignore_errors', "")
29
- ignore_errors = ignore_errors.split(",")
29
+ ignore_errors = ignore_errors.split(",") if ignore_errors.is_a? String
30
30
  ignore_errors.each { |error| error.strip! }
31
31
  ignore(ignore_errors)
32
32
  @lock = Mutex.new
@@ -3,8 +3,8 @@ module NewRelic
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 2
5
5
  MINOR = 11
6
- TINY = 0
7
- BUILD = 'beta2' # Set to nil for a release, 'beta1', 'alpha', etc for prerelease builds
6
+ TINY = 1
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
 
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{newrelic_rpm}
8
- s.version = "2.11.0.beta2"
8
+ s.version = "2.11.1"
9
9
 
10
- s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bill Kayser"]
12
- s.date = %q{2010-03-29}
12
+ s.date = %q{2010-04-02}
13
13
  s.description = %q{New Relic RPM is a Ruby performance management system, developed by
14
14
  New Relic, Inc (http://www.newrelic.com). RPM provides you with deep
15
15
  information about the performance of your Ruby on Rails or Merb
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newrelic_rpm
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: true
4
+ prerelease: false
5
5
  segments:
6
6
  - 2
7
7
  - 11
8
- - 0
9
- - beta2
10
- version: 2.11.0.beta2
8
+ - 1
9
+ version: 2.11.1
11
10
  platform: ruby
12
11
  authors:
13
12
  - Bill Kayser
@@ -15,7 +14,7 @@ autorequire:
15
14
  bindir: bin
16
15
  cert_chain: []
17
16
 
18
- date: 2010-03-29 00:00:00 -07:00
17
+ date: 2010-04-02 00:00:00 -07:00
19
18
  default_executable:
20
19
  dependencies: []
21
20
 
@@ -228,13 +227,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
228
227
  version: "0"
229
228
  required_rubygems_version: !ruby/object:Gem::Requirement
230
229
  requirements:
231
- - - ">"
230
+ - - ">="
232
231
  - !ruby/object:Gem::Version
233
232
  segments:
234
- - 1
235
- - 3
236
- - 1
237
- version: 1.3.1
233
+ - 0
234
+ version: "0"
238
235
  requirements: []
239
236
 
240
237
  rubyforge_project: