raygun-apm-rails 1.0.36 → 1.0.37

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
  SHA256:
3
- metadata.gz: 55cbb46e1a2e25354253adffcef702b795465912c99020f6a56b100a175e408a
4
- data.tar.gz: fde9349def8d26537d05db3f4ac56a12ffeeffd0480ba39765caa273a4d13a75
3
+ metadata.gz: 1e67b0bcb91d871a5391736b9ce6d957cf024b74b7e107aecdaef46656cc59a0
4
+ data.tar.gz: 72777711d1ca49c42f1fbdb578f3ba0142fba0fc423df4e2b838de360e56e060
5
5
  SHA512:
6
- metadata.gz: 529a9e6e1925c7628be8decce46943fa436c29d608902bf598e6f39b4b5674fbd4de19a308b03001c31b6d26b5d0e024a681ca32f13ed8a8686103b78999d737
7
- data.tar.gz: b1985a74584f8e21720b8ee87b4a29009737882e0d2d58c3b804fae19f2cf3d09a88e4c6ff8bcf7f088f0b0572f0abe3295f441b486aaa639fbe793bce12c817
6
+ metadata.gz: 0a8d7b51f640b98c49a7158296c164de52c91902f55ef513ef28d7f591d37f41472cd99c2a4aebe7652f13707c5a2a313c6df686e70086ed8e841f1cb7e9d327
7
+ data.tar.gz: 57f3f14013a6014dc86763cd75e8a74e6301d6cfe8bc9a3f9bd5603d511a68b6e79e420b739da68f9ec6e407f6f4a2c2c05e583320ed3ba61fa7a65eaf2b0967
@@ -1,5 +1,9 @@
1
1
  = Changelog
2
2
 
3
+ == 1.0.37 (June 28, 2020)
4
+
5
+ * Oust Raygun::Apm::Rails::Middleware#Ruby_APM_request_error as the Agent now allows empty body requests for specific error conditions
6
+
3
7
  == 1.0.36 (June 27, 2020)
4
8
 
5
9
  * Some blacklist cleanups and ambiguity removal
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- raygun-apm-rails (1.0.36)
4
+ raygun-apm-rails (1.0.37)
5
5
  raygun-apm (~> 1.0.44)
6
6
 
7
7
  GEM
@@ -9,7 +9,7 @@ GEM
9
9
  specs:
10
10
  minitest (5.13.0)
11
11
  rake (10.5.0)
12
- raygun-apm (1.0.45-x86-linux)
12
+ raygun-apm (1.0.46-x86-linux)
13
13
 
14
14
  PLATFORMS
15
15
  ruby
@@ -86,7 +86,6 @@ module Raygun
86
86
  Mustermann
87
87
  Enumeration
88
88
  +Raygun::Apm::Rails::Middleware#Ruby_APM_profiler_trace
89
- +Raygun::Apm::Rails::Middleware#Ruby_APM_request_error
90
89
  WebpackHelper
91
90
  Ripper
92
91
  Webpack
@@ -29,21 +29,17 @@ module Raygun
29
29
  begin
30
30
  res = @app.call(env)
31
31
  if res && (status = res.first) >= 400 && status < 600
32
- Ruby_APM_request_error do
33
- message = Rack::Utils::HTTP_STATUS_CODES[status]
34
- begin
35
- raise "HTTP #{status} #{message}"
36
- rescue => e
37
- crash_report_exception(e)
38
- end
39
- exceptional_http_in_handler(env, status) if @tracer
32
+ message = Rack::Utils::HTTP_STATUS_CODES[status]
33
+ begin
34
+ raise "HTTP #{status} #{message}"
35
+ rescue => e
36
+ crash_report_exception(e)
40
37
  end
38
+ exceptional_http_in_handler(env, status) if @tracer
41
39
  end
42
40
  rescue => e
43
- Ruby_APM_request_error do
44
- crash_report_exception(e)
45
- exceptional_http_in_handler(env, 500) if @tracer
46
- end
41
+ crash_report_exception(e)
42
+ exceptional_http_in_handler(env, 500) if @tracer
47
43
  exception = e
48
44
  end
49
45
  end
@@ -1,7 +1,7 @@
1
1
  module Raygun
2
2
  module Apm
3
3
  module Rails
4
- VERSION = "1.0.36"
4
+ VERSION = "1.0.37"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.36
4
+ version: 1.0.37
5
5
  platform: ruby
6
6
  authors:
7
7
  - Raygun
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2020-06-27 00:00:00.000000000 Z
12
+ date: 2020-06-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: raygun-apm