exception_handling 2.11.0 → 2.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +4 -6
- data/exception_handling.gemspec +1 -1
- data/lib/exception_handling/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 14067795e410d640a90c3fe1b9b0100eb23ccaf27b61f48a243fb0e485fac5aa
|
|
4
|
+
data.tar.gz: 48e75e5776a54debb7620a0b3d743611b3e40be68b7e0b6f6e785c751e20f03c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd0e94f719f695339c74a157b79a6f941b1826707cddafb725b550c203949fd0c7a801860cf0e8a7412735bc8f36517df99592b0d0f85b86f790fdc95f9fe952
|
|
7
|
+
data.tar.gz: b2eb7943d905f5c137370ac47dd7bd69656e082a88af7d8d5618c0ff7acefda4503b2eca6138fc4ae74b57f3fe18623cd250e2edb0a6c9c1a5e46be6e3529080
|
data/CHANGELOG.md
CHANGED
|
@@ -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.11.1] - 2022-04-04
|
|
8
|
+
### Fixed
|
|
9
|
+
- Fixed bug in ruby 3+ where `contextual_logger` was missing ruby 3+ support
|
|
10
|
+
|
|
7
11
|
## [2.11.0] - 2022-03-29
|
|
8
12
|
### Added
|
|
9
13
|
- Added support for rails 2.7 and 3+
|
|
@@ -79,6 +83,9 @@ Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0
|
|
|
79
83
|
### Changed
|
|
80
84
|
- No longer depends on hobo_support. Uses invoca-utils 0.3 instead.
|
|
81
85
|
|
|
86
|
+
[2.11.1]: https://github.com/Invoca/exception_handling/compare/v2.11.0...v2.11.1
|
|
87
|
+
[2.11.0]: https://github.com/Invoca/exception_handling/compare/v2.10.0...v2.11.0
|
|
88
|
+
[2.10.0]: https://github.com/Invoca/exception_handling/compare/v2.9.0...v2.10.0
|
|
82
89
|
[2.9.0]: https://github.com/Invoca/exception_handling/compare/v2.8.1...v2.9.0
|
|
83
90
|
[2.8.1]: https://github.com/Invoca/exception_handling/compare/v2.8.0...v2.8.1
|
|
84
91
|
[2.8.0]: https://github.com/Invoca/exception_handling/compare/v2.7.0...v2.8.0
|
data/Gemfile.lock
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
exception_handling (2.11.
|
|
4
|
+
exception_handling (2.11.1)
|
|
5
5
|
actionmailer (>= 5.2, < 7.0)
|
|
6
6
|
actionpack (>= 5.2, < 7.0)
|
|
7
7
|
activesupport (>= 5.2, < 7.0)
|
|
8
|
-
contextual_logger (~> 0
|
|
8
|
+
contextual_logger (~> 1.0)
|
|
9
9
|
escalate (~> 0.3)
|
|
10
10
|
eventmachine (~> 1.0)
|
|
11
11
|
invoca-utils (~> 0.3)
|
|
@@ -52,7 +52,7 @@ GEM
|
|
|
52
52
|
byebug (11.1.3)
|
|
53
53
|
coderay (1.1.2)
|
|
54
54
|
concurrent-ruby (1.1.10)
|
|
55
|
-
contextual_logger (0.
|
|
55
|
+
contextual_logger (1.0.0)
|
|
56
56
|
activesupport
|
|
57
57
|
json
|
|
58
58
|
crass (1.0.6)
|
|
@@ -67,7 +67,6 @@ GEM
|
|
|
67
67
|
i18n (1.10.0)
|
|
68
68
|
concurrent-ruby (~> 1.0)
|
|
69
69
|
invoca-utils (0.4.1)
|
|
70
|
-
io-wait (0.2.1)
|
|
71
70
|
jaro_winkler (1.5.3)
|
|
72
71
|
json (2.6.1)
|
|
73
72
|
loofah (2.15.0)
|
|
@@ -79,8 +78,7 @@ GEM
|
|
|
79
78
|
mini_mime (1.1.2)
|
|
80
79
|
mini_portile2 (2.8.0)
|
|
81
80
|
minitest (5.15.0)
|
|
82
|
-
net-protocol (0.1.
|
|
83
|
-
io-wait
|
|
81
|
+
net-protocol (0.1.3)
|
|
84
82
|
timeout
|
|
85
83
|
net-smtp (0.3.1)
|
|
86
84
|
digest
|
data/exception_handling.gemspec
CHANGED
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
spec.add_dependency 'actionmailer', '>= 5.2', '< 7.0'
|
|
24
24
|
spec.add_dependency 'actionpack', '>= 5.2', '< 7.0'
|
|
25
25
|
spec.add_dependency 'activesupport', '>= 5.2', '< 7.0'
|
|
26
|
-
spec.add_dependency 'contextual_logger', '~> 0
|
|
26
|
+
spec.add_dependency 'contextual_logger', '~> 1.0'
|
|
27
27
|
spec.add_dependency 'escalate', '~> 0.3'
|
|
28
28
|
spec.add_dependency 'eventmachine', '~> 1.0'
|
|
29
29
|
spec.add_dependency 'invoca-utils', '~> 0.3'
|
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.11.
|
|
4
|
+
version: 2.11.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Invoca
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-04-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionmailer
|
|
@@ -76,14 +76,14 @@ dependencies:
|
|
|
76
76
|
requirements:
|
|
77
77
|
- - "~>"
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version: '0
|
|
79
|
+
version: '1.0'
|
|
80
80
|
type: :runtime
|
|
81
81
|
prerelease: false
|
|
82
82
|
version_requirements: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
|
84
84
|
- - "~>"
|
|
85
85
|
- !ruby/object:Gem::Version
|
|
86
|
-
version: '0
|
|
86
|
+
version: '1.0'
|
|
87
87
|
- !ruby/object:Gem::Dependency
|
|
88
88
|
name: escalate
|
|
89
89
|
requirement: !ruby/object:Gem::Requirement
|