exception_handling 2.14.0.pre.gk.1 → 2.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +1 -0
- data/.github/workflows/pipeline.yml +7 -0
- data/.tool-versions +1 -0
- data/Appraisals +6 -0
- data/CHANGELOG.md +9 -2
- data/Gemfile +0 -7
- data/Gemfile.lock +5 -7
- data/exception_handling.gemspec +3 -3
- data/gemfiles/rails_5.gemfile +2 -2
- data/gemfiles/rails_6.gemfile +2 -2
- data/gemfiles/rails_7.gemfile +18 -0
- data/lib/exception_handling/version.rb +1 -1
- metadata +8 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14ca7f66e702ec2ae46aa9f7b7669cd8f8136b9305c0683b76339faafc87558a
|
4
|
+
data.tar.gz: db7863d32347f5f859971222f2b215b0f84a8c7604eb0326cfd9b656910cd9ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3274bf4d7f67fb83aa2d71633572d19c14c99e3c40746de20e20efea1ff570a0d49f5163efd74c60ce0167af3495ad259d2950bc198c28a219ff6b30dadf551b
|
7
|
+
data.tar.gz: 858ce36039ecfbd5a79a22c0a56f9accff534e7b7e27e288509ffd9d34feca3ccd0983a092f6d536e554dce8d4312cb877df5f3a6729305aed8828ed0fe36d8a
|
data/.github/CODEOWNERS
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
* @Invoca/octothorpe
|
@@ -13,9 +13,16 @@ jobs:
|
|
13
13
|
- Gemfile
|
14
14
|
- gemfiles/rails_5.gemfile
|
15
15
|
- gemfiles/rails_6.gemfile
|
16
|
+
- gemfiles/rails_7.gemfile
|
16
17
|
exclude:
|
17
18
|
- gemfile: Gemfile
|
18
19
|
ruby: 2.5
|
20
|
+
- gemfile: gemfiles/rails_7.gemfile
|
21
|
+
ruby: 2.5
|
22
|
+
- gemfile: Gemfile
|
23
|
+
ruby: 2.6
|
24
|
+
- gemfile: gemfiles/rails_7.gemfile
|
25
|
+
ruby: 2.6
|
19
26
|
- gemfile: gemfiles/rails_5.gemfile
|
20
27
|
ruby: '3.0'
|
21
28
|
- gemfile: gemfiles/rails_5.gemfile
|
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 2.7.5
|
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
@@ -2,9 +2,15 @@
|
|
2
2
|
|
3
3
|
Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
4
4
|
|
5
|
-
Note
|
5
|
+
**Note:** this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
-
## [2.
|
7
|
+
## [2.15.0] - 2023-03-07
|
8
|
+
### Added
|
9
|
+
- Added support for ActionMailer 7.x
|
10
|
+
- Added support for ActionPack 7.x
|
11
|
+
- Added support for ActiveSupport 7.x
|
12
|
+
|
13
|
+
## [2.14.0] - 2023-02-22
|
8
14
|
### Added
|
9
15
|
- Added support for plumbing tags through to honeybadger via the `honeybadger_tags` log context parameter
|
10
16
|
|
@@ -103,6 +109,7 @@ Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0
|
|
103
109
|
### Changed
|
104
110
|
- No longer depends on hobo_support. Uses invoca-utils 0.3 instead.
|
105
111
|
|
112
|
+
[2.15.0]: https://github.com/Invoca/exception_handling/compare/v2.14.0...v2.15.0
|
106
113
|
[2.14.0]: https://github.com/Invoca/exception_handling/compare/v2.13.0...v2.14.0
|
107
114
|
[2.13.0]: https://github.com/Invoca/exception_handling/compare/v2.12.0...v2.13.0
|
108
115
|
[2.12.0]: https://github.com/Invoca/exception_handling/compare/v2.11.3...v2.12.0
|
data/Gemfile
CHANGED
@@ -2,15 +2,8 @@
|
|
2
2
|
|
3
3
|
source 'https://rubygems.org'
|
4
4
|
|
5
|
-
git_source(:github) do |repo_name|
|
6
|
-
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
|
7
|
-
"https://github.com/#{repo_name}.git"
|
8
|
-
end
|
9
|
-
|
10
5
|
gemspec
|
11
6
|
|
12
|
-
gem 'actionmailer', '< 6.1'
|
13
|
-
gem 'activesupport', '< 6.1'
|
14
7
|
gem 'appraisal', '~> 2.2'
|
15
8
|
gem 'honeybadger', '~> 4.11'
|
16
9
|
gem 'pry'
|
data/Gemfile.lock
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
exception_handling (2.
|
5
|
-
actionmailer (>= 5.2
|
6
|
-
actionpack (>= 5.2
|
7
|
-
activesupport (>= 5.2
|
4
|
+
exception_handling (2.15.0)
|
5
|
+
actionmailer (>= 5.2)
|
6
|
+
actionpack (>= 5.2)
|
7
|
+
activesupport (>= 5.2)
|
8
8
|
contextual_logger (~> 1.0)
|
9
9
|
escalate (~> 0.3)
|
10
10
|
eventmachine (~> 1.0)
|
@@ -65,7 +65,7 @@ GEM
|
|
65
65
|
honeybadger (4.11.0)
|
66
66
|
i18n (1.10.0)
|
67
67
|
concurrent-ruby (~> 1.0)
|
68
|
-
invoca-utils (0.5.
|
68
|
+
invoca-utils (0.5.1)
|
69
69
|
activesupport (>= 5.0)
|
70
70
|
jaro_winkler (1.5.3)
|
71
71
|
json (2.6.3)
|
@@ -144,8 +144,6 @@ PLATFORMS
|
|
144
144
|
ruby
|
145
145
|
|
146
146
|
DEPENDENCIES
|
147
|
-
actionmailer (< 6.1)
|
148
|
-
activesupport (< 6.1)
|
149
147
|
appraisal (~> 2.2)
|
150
148
|
exception_handling!
|
151
149
|
honeybadger (~> 4.11)
|
data/exception_handling.gemspec
CHANGED
@@ -20,9 +20,9 @@ Gem::Specification.new do |spec|
|
|
20
20
|
"allowed_push_host" => "https://rubygems.org"
|
21
21
|
}
|
22
22
|
|
23
|
-
spec.add_dependency 'actionmailer', '>= 5.2'
|
24
|
-
spec.add_dependency 'actionpack', '>= 5.2'
|
25
|
-
spec.add_dependency 'activesupport', '>= 5.2'
|
23
|
+
spec.add_dependency 'actionmailer', '>= 5.2'
|
24
|
+
spec.add_dependency 'actionpack', '>= 5.2'
|
25
|
+
spec.add_dependency 'activesupport', '>= 5.2'
|
26
26
|
spec.add_dependency 'contextual_logger', '~> 1.0'
|
27
27
|
spec.add_dependency 'escalate', '~> 0.3'
|
28
28
|
spec.add_dependency 'eventmachine', '~> 1.0'
|
data/gemfiles/rails_5.gemfile
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
gem "actionmailer", "~> 5.2"
|
6
|
-
gem "activesupport", "~> 5.2"
|
7
5
|
gem "appraisal", "~> 2.2"
|
8
6
|
gem "honeybadger", "~> 4.11"
|
9
7
|
gem "pry"
|
@@ -13,6 +11,8 @@ gem "rspec"
|
|
13
11
|
gem "rspec_junit_formatter"
|
14
12
|
gem "rubocop"
|
15
13
|
gem "test-unit"
|
14
|
+
gem "actionmailer", "~> 5.2"
|
16
15
|
gem "actionpack", "~> 5.2"
|
16
|
+
gem "activesupport", "~> 5.2"
|
17
17
|
|
18
18
|
gemspec path: "../"
|
data/gemfiles/rails_6.gemfile
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
gem "actionmailer", "~> 6.0"
|
6
|
-
gem "activesupport", "~> 6.0"
|
7
5
|
gem "appraisal", "~> 2.2"
|
8
6
|
gem "honeybadger", "~> 4.11"
|
9
7
|
gem "pry"
|
@@ -13,6 +11,8 @@ gem "rspec"
|
|
13
11
|
gem "rspec_junit_formatter"
|
14
12
|
gem "rubocop"
|
15
13
|
gem "test-unit"
|
14
|
+
gem "actionmailer", "~> 6.0"
|
16
15
|
gem "actionpack", "~> 6.0"
|
16
|
+
gem "activesupport", "~> 6.0"
|
17
17
|
|
18
18
|
gemspec path: "../"
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "appraisal", "~> 2.2"
|
6
|
+
gem "honeybadger", "~> 4.11"
|
7
|
+
gem "pry"
|
8
|
+
gem "pry-byebug"
|
9
|
+
gem "rake"
|
10
|
+
gem "rspec"
|
11
|
+
gem "rspec_junit_formatter"
|
12
|
+
gem "rubocop"
|
13
|
+
gem "test-unit"
|
14
|
+
gem "actionmailer", "~> 7.0"
|
15
|
+
gem "actionpack", "~> 7.0"
|
16
|
+
gem "activesupport", "~> 7.0"
|
17
|
+
|
18
|
+
gemspec path: "../"
|
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
|
+
version: 2.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Invoca
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionmailer
|
@@ -17,9 +17,6 @@ dependencies:
|
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '5.2'
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: '7.0'
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -27,9 +24,6 @@ dependencies:
|
|
27
24
|
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '5.2'
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: '7.0'
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: actionpack
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -37,9 +31,6 @@ dependencies:
|
|
37
31
|
- - ">="
|
38
32
|
- !ruby/object:Gem::Version
|
39
33
|
version: '5.2'
|
40
|
-
- - "<"
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: '7.0'
|
43
34
|
type: :runtime
|
44
35
|
prerelease: false
|
45
36
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -47,9 +38,6 @@ dependencies:
|
|
47
38
|
- - ">="
|
48
39
|
- !ruby/object:Gem::Version
|
49
40
|
version: '5.2'
|
50
|
-
- - "<"
|
51
|
-
- !ruby/object:Gem::Version
|
52
|
-
version: '7.0'
|
53
41
|
- !ruby/object:Gem::Dependency
|
54
42
|
name: activesupport
|
55
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -57,9 +45,6 @@ dependencies:
|
|
57
45
|
- - ">="
|
58
46
|
- !ruby/object:Gem::Version
|
59
47
|
version: '5.2'
|
60
|
-
- - "<"
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: '7.0'
|
63
48
|
type: :runtime
|
64
49
|
prerelease: false
|
65
50
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -67,9 +52,6 @@ dependencies:
|
|
67
52
|
- - ">="
|
68
53
|
- !ruby/object:Gem::Version
|
69
54
|
version: '5.2'
|
70
|
-
- - "<"
|
71
|
-
- !ruby/object:Gem::Version
|
72
|
-
version: '7.0'
|
73
55
|
- !ruby/object:Gem::Dependency
|
74
56
|
name: contextual_logger
|
75
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -161,11 +143,13 @@ executables: []
|
|
161
143
|
extensions: []
|
162
144
|
extra_rdoc_files: []
|
163
145
|
files:
|
146
|
+
- ".github/CODEOWNERS"
|
164
147
|
- ".github/workflows/pipeline.yml"
|
165
148
|
- ".gitignore"
|
166
149
|
- ".rspec"
|
167
150
|
- ".rubocop.yml"
|
168
151
|
- ".ruby-version"
|
152
|
+
- ".tool-versions"
|
169
153
|
- Appraisals
|
170
154
|
- CHANGELOG.md
|
171
155
|
- Gemfile
|
@@ -177,6 +161,7 @@ files:
|
|
177
161
|
- exception_handling.gemspec
|
178
162
|
- gemfiles/rails_5.gemfile
|
179
163
|
- gemfiles/rails_6.gemfile
|
164
|
+
- gemfiles/rails_7.gemfile
|
180
165
|
- lib/exception_handling.rb
|
181
166
|
- lib/exception_handling/escalate_callback.rb
|
182
167
|
- lib/exception_handling/exception_catalog.rb
|
@@ -222,11 +207,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
222
207
|
version: '0'
|
223
208
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
224
209
|
requirements:
|
225
|
-
- - "
|
210
|
+
- - ">="
|
226
211
|
- !ruby/object:Gem::Version
|
227
|
-
version:
|
212
|
+
version: '0'
|
228
213
|
requirements: []
|
229
|
-
rubygems_version: 3.
|
214
|
+
rubygems_version: 3.4.7
|
230
215
|
signing_key:
|
231
216
|
specification_version: 4
|
232
217
|
summary: Invoca's exception handling logger/emailer layer, based on exception_notifier.
|