exception_handling 2.4.3 → 2.4.4.pre.1

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: '04608c37d267c8d5f06f65d22fe9354248e6701670c93e7dbb9de6df1e657dc4'
4
- data.tar.gz: 13c4012bde92f3bb67001a623759c0cb84ec145e8fdec64be37f6ed1a9b8d152
3
+ metadata.gz: 5e18b802032b87ce35aee9ab2a3eebd4177686e5ff9bca74ed0f32e5c266e517
4
+ data.tar.gz: 12a870a3f4ed762298cd13a045edba06b470c9aea9d29324b0642163779610d0
5
5
  SHA512:
6
- metadata.gz: 960d619118db1400aec6a85e292c7f41cfb61f3b6ba216f82bd020cf3248d60628afb2d343ad77bb1e574d64ec07d71437a73d46e70d78f5259f1347b6400325
7
- data.tar.gz: 7233273b00df7d67d932c649686bf0b51cc8233a820ac4107778d2ae120fca0b37bc05e4573002cc704e67260fddaa8f0e13877f948a1db4e48dc0fe487d91b1
6
+ metadata.gz: 121a94c85c7dad8f56003674dcee796e1dd80e7e96c31012e0343614ca6375f192734c4c0b2e4fd8025f4f66d8cc306ed157a28a8bf213b5ec94af6c5a7dc65d
7
+ data.tar.gz: 20d94f407272de21c341362a18be4500a984aa6f2fad05d9706ee1ed6943d2537f281aff315c48e028095dcdfbe491bb0ef3cc32c35eff6473ab176259ab30ab
@@ -4,6 +4,10 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
4
4
 
5
5
  Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.4.4] - Unreleased
8
+ ### Changed
9
+ - Calling `log_warning` will now log with Severity::WARNING rather than FATAL.
10
+
7
11
  ## [2.4.3] - 2020-05-14
8
12
  ### Deprecated
9
13
  - In `ExceptionHandling.logger=`, implicit `logger.extend ContextualLogger::LoggerMixin` is now deprecated.
@@ -24,6 +28,7 @@ Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0
24
28
  ### Changed
25
29
  - No longer depends on hobo_support. Uses invoca-utils 0.3 instead.
26
30
 
31
+ [2.4.4]: https://github.com/Invoca/exception_handling/compare/v2.4.3...v2.4.4
27
32
  [2.4.3]: https://github.com/Invoca/exception_handling/compare/v2.4.2...v2.4.3
28
33
  [2.4.2]: https://github.com/Invoca/exception_handling/compare/v2.4.1...v2.4.2
29
34
  [2.4.1]: https://github.com/Invoca/exception_handling/compare/v2.4.0...v2.4.1
@@ -8,7 +8,7 @@ GIT
8
8
  PATH
9
9
  remote: .
10
10
  specs:
11
- exception_handling (2.4.3)
11
+ exception_handling (2.4.4.pre.1)
12
12
  actionmailer (>= 4.2, < 7.0)
13
13
  actionpack (>= 4.2, < 7.0)
14
14
  activesupport (>= 4.2, < 7.0)
@@ -55,7 +55,7 @@ GEM
55
55
  builder (3.2.3)
56
56
  coderay (1.1.2)
57
57
  concurrent-ruby (1.1.5)
58
- contextual_logger (0.7.0)
58
+ contextual_logger (0.9.0)
59
59
  activesupport
60
60
  json
61
61
  crass (1.0.6)
@@ -65,10 +65,10 @@ GEM
65
65
  activesupport (>= 4.2.0)
66
66
  i18n (0.9.5)
67
67
  concurrent-ruby (~> 1.0)
68
- invoca-utils (0.3.0)
68
+ invoca-utils (0.4.1)
69
69
  jaro_winkler (1.5.3)
70
- json (2.3.0)
71
- loofah (2.5.0)
70
+ json (2.3.1)
71
+ loofah (2.6.0)
72
72
  crass (~> 1.0.2)
73
73
  nokogiri (>= 1.5.9)
74
74
  mail (2.7.1)
@@ -82,7 +82,7 @@ GEM
82
82
  builder
83
83
  minitest (>= 5.0)
84
84
  ruby-progressbar
85
- nokogiri (1.10.9)
85
+ nokogiri (1.10.10)
86
86
  mini_portile2 (~> 2.4.0)
87
87
  parallel (1.17.0)
88
88
  parser (2.6.3.0)
@@ -220,7 +220,13 @@ module ExceptionHandling # never included
220
220
  #
221
221
  def write_exception_to_log(ex, exception_context, timestamp, log_context = {})
222
222
  ActiveSupport::Deprecation.silence do
223
- ExceptionHandling.logger.fatal("\nExceptionHandlingError (Error:#{timestamp}) #{ex.class} #{exception_context} (#{encode_utf8(ex.message.to_s)}):\n " + clean_backtrace(ex).join("\n ") + "\n\n", log_context)
223
+ log_message = "\nExceptionHandlingError (Error:#{timestamp}) #{ex.class} #{exception_context} (#{encode_utf8(ex.message.to_s)}):\n " + clean_backtrace(ex).join("\n ") + "\n\n"
224
+
225
+ if ex.is_a?(Warning)
226
+ ExceptionHandling.logger.warn(log_message, log_context)
227
+ else
228
+ ExceptionHandling.logger.fatal(log_message, log_context)
229
+ end
224
230
  end
225
231
  end
226
232
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ExceptionHandling
4
- VERSION = '2.4.3'
4
+ VERSION = '2.4.4.pre.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exception_handling
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.3
4
+ version: 2.4.4.pre.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Invoca
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-14 00:00:00.000000000 Z
11
+ date: 2020-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionmailer
@@ -168,7 +168,7 @@ licenses: []
168
168
  metadata:
169
169
  source_code_uri: https://github.com/Invoca/exception_handling
170
170
  allowed_push_host: https://rubygems.org
171
- post_install_message:
171
+ post_install_message:
172
172
  rdoc_options: []
173
173
  require_paths:
174
174
  - lib
@@ -179,12 +179,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
179
179
  version: '0'
180
180
  required_rubygems_version: !ruby/object:Gem::Requirement
181
181
  requirements:
182
- - - ">="
182
+ - - ">"
183
183
  - !ruby/object:Gem::Version
184
- version: '0'
184
+ version: 1.3.1
185
185
  requirements: []
186
186
  rubygems_version: 3.0.3
187
- signing_key:
187
+ signing_key:
188
188
  specification_version: 4
189
189
  summary: Invoca's exception handling logger/emailer layer, based on exception_notifier.
190
190
  Works with Rails or EventMachine or EventMachine+Synchrony.