sentry-raven 2.11.1 → 2.11.2

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: 1da04c09820186670cabb0803326a301f3e8f72a
4
- data.tar.gz: 48c8fe3897dfbb19baeda92b67282fb3dab880c7
3
+ metadata.gz: 42d2afd51625b412a13b5e9ce97001b0aead5d4b
4
+ data.tar.gz: 80ed626d029a1b20b83da559c4e99f75a948cb86
5
5
  SHA512:
6
- metadata.gz: 3979b6826d05f685ae1a4ac62b9273ec1dc6c71c50327c3c094cd56fe8dc5fbb0565d5e5d022fb48a0bd8d8a76f5d3824765d7c163e316f30a1d1f6e0e622021
7
- data.tar.gz: 9f7d12647aa0b088d539b1e3253cf464f32587f8f6b2eb628d41ffda8492259713d9ff20b39abaa259b5277a038d241a64731d697d20b82c0298dfff54213d77
6
+ metadata.gz: 260d59bc76e52f15a41276734033f328d487ce3a72afc0b423efd5ec9ce6ea0153d8409bbe1c3a841489824c53eeee2d3bd838f67cedb4ddbc05789ee8f05b19
7
+ data.tar.gz: 3258b6163265fa78ec8ed3f07e8e3905e3e11793354eb1b784a096878aafb4b01230d0bf44b8c07205f91cc7335594f9cda41d5728c2666bcda836ab8b7c1975
@@ -1,8 +1,13 @@
1
- 2.11.1
1
+ 2.11.2
2
+ ----
3
+
4
+ * REF: Warn on 4xx error [@iloveitaly, #862]
2
5
 
3
- * FIX: Call `to_s` on breadcrumb message [@halkeye , #914]
6
+ 2.11.1
4
7
  ----
5
8
 
9
+ * FIX: Call `to_s` on breadcrumb message [@halkeye, #914]
10
+
6
11
  2.11.0
7
12
  ----
8
13
 
@@ -102,11 +102,11 @@ module Raven
102
102
  def failed_send(e, event)
103
103
  @state.failure
104
104
  if e # exception was raised
105
- configuration.logger.error "Unable to record event with remote Sentry server (#{e.class} - #{e.message}):\n#{e.backtrace[0..10].join("\n")}"
105
+ configuration.logger.warn "Unable to record event with remote Sentry server (#{e.class} - #{e.message}):\n#{e.backtrace[0..10].join("\n")}"
106
106
  else
107
- configuration.logger.error "Not sending event due to previous failure(s)."
107
+ configuration.logger.warn "Not sending event due to previous failure(s)."
108
108
  end
109
- configuration.logger.error("Failed to submit event: #{get_log_message(event)}")
109
+ configuration.logger.warn("Failed to submit event: #{get_log_message(event)}")
110
110
  configuration.transport_failure_callback.call(event) if configuration.transport_failure_callback
111
111
  end
112
112
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module Raven
3
3
  # Freezing this constant breaks in 1.9.x
4
- VERSION = "2.11.1" # rubocop:disable Style/MutableConstant
4
+ VERSION = "2.11.2" # rubocop:disable Style/MutableConstant
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sentry-raven
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.1
4
+ version: 2.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sentry Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-09-10 00:00:00.000000000 Z
11
+ date: 2019-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday