exception_handling 3.2.0.pre.dc.1 → 3.2.0
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 +1 -1
- data/Gemfile.lock +7 -9
- data/lib/exception_handling/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a61361801afadb7a9a2134458aba17930ef75e8c3e8e9cd0aabe4ef6842eaee4
|
|
4
|
+
data.tar.gz: 5290ca2d7bb8d3c610add1ee2aa1a971a3d09fbe454a2e89b8ef836f7b47943b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 235c46602382d84496de838d9b55480b942ef82d3e8f6f25134c5665fa11415a80817aabfafd3d9390ef98753aec0298490c055df11dbed4a8c3e6726999b6be
|
|
7
|
+
data.tar.gz: b1761c180c9d3b25a4679e21a0a7f661c953886b011f1a5b596e8a9664b1de287822bcf300791ca7eadb7f61f6cb1ab31a8a5eac69a6c058c13b832f45e7a9fb
|
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@ 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
|
-
## [3.2.0] - 2026-08-
|
|
7
|
+
## [3.2.0] - 2026-08-06
|
|
8
8
|
### Added
|
|
9
9
|
- Optional Sentry notifications from `send_external_notifications` via explicit `ExceptionHandling.enable_sentry` (requires `Sentry` to be defined and initialized)
|
|
10
10
|
- Sentry events include ExceptionHandling context, tags, controller name, and filter-based fingerprinting (aligned with Honeybadger grouping via `filter_name`)
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
exception_handling (3.2.0
|
|
4
|
+
exception_handling (3.2.0)
|
|
5
5
|
activesupport (>= 5.2)
|
|
6
6
|
contextual_logger (~> 1.0)
|
|
7
7
|
escalate (~> 0.3)
|
|
@@ -34,10 +34,9 @@ GEM
|
|
|
34
34
|
coderay (1.1.3)
|
|
35
35
|
concurrent-ruby (1.3.4)
|
|
36
36
|
connection_pool (2.4.1)
|
|
37
|
-
contextual_logger (1.
|
|
38
|
-
activesupport
|
|
37
|
+
contextual_logger (1.2.0)
|
|
38
|
+
activesupport
|
|
39
39
|
json
|
|
40
|
-
date (3.5.1)
|
|
41
40
|
diff-lcs (1.5.1)
|
|
42
41
|
docile (1.4.1)
|
|
43
42
|
drb (2.2.1)
|
|
@@ -46,8 +45,8 @@ GEM
|
|
|
46
45
|
honeybadger (4.12.2)
|
|
47
46
|
i18n (1.14.5)
|
|
48
47
|
concurrent-ruby (~> 1.0)
|
|
49
|
-
invoca-utils (0.
|
|
50
|
-
activesupport (>=
|
|
48
|
+
invoca-utils (0.5.1)
|
|
49
|
+
activesupport (>= 5.0)
|
|
51
50
|
json (2.7.2)
|
|
52
51
|
language_server-protocol (3.17.0.3)
|
|
53
52
|
method_source (1.1.0)
|
|
@@ -64,8 +63,7 @@ GEM
|
|
|
64
63
|
pry-byebug (3.10.1)
|
|
65
64
|
byebug (~> 11.0)
|
|
66
65
|
pry (>= 0.13, < 0.15)
|
|
67
|
-
psych (5.
|
|
68
|
-
date
|
|
66
|
+
psych (5.1.2)
|
|
69
67
|
stringio
|
|
70
68
|
racc (1.7.3)
|
|
71
69
|
rainbow (3.1.1)
|
|
@@ -108,7 +106,7 @@ GEM
|
|
|
108
106
|
simplecov-html (0.13.2)
|
|
109
107
|
simplecov-lcov (0.9.0)
|
|
110
108
|
simplecov_json_formatter (0.1.4)
|
|
111
|
-
stringio (3.
|
|
109
|
+
stringio (3.1.0)
|
|
112
110
|
test-unit (3.6.2)
|
|
113
111
|
power_assert
|
|
114
112
|
thor (1.3.1)
|
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: 3.2.0
|
|
4
|
+
version: 3.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Invoca
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|