exception_handling 2.14.0 → 2.15.0

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: '0376880c57db8a6bc22e3f3c12aa587baacdbc89aa0a21d1d7ed325d785fa56d'
4
- data.tar.gz: 7eacb94e4c3cf1e08b7836bbe26595bcb61031f6ccf592bba55621fb82bdce7e
3
+ metadata.gz: 14ca7f66e702ec2ae46aa9f7b7669cd8f8136b9305c0683b76339faafc87558a
4
+ data.tar.gz: db7863d32347f5f859971222f2b215b0f84a8c7604eb0326cfd9b656910cd9ff
5
5
  SHA512:
6
- metadata.gz: b409daeb7a13834e93badcfedb27dea72306f3ff25a97638b58724cf29f43c0010ad4ab1afef020603ce58ee965fe9c51aa44fcf21b9c22fd950799ce3c7b912
7
- data.tar.gz: 99a954e50c9e0902235e27437badec5b83c62f3161dd73b375b7b50259894c512b6e649fd200b3d2c69c0b91fd8cedac1891d4b09ecf82054e95c539a7010cbc
6
+ metadata.gz: 3274bf4d7f67fb83aa2d71633572d19c14c99e3c40746de20e20efea1ff570a0d49f5163efd74c60ce0167af3495ad259d2950bc198c28a219ff6b30dadf551b
7
+ data.tar.gz: 858ce36039ecfbd5a79a22c0a56f9accff534e7b7e27e288509ffd9d34feca3ccd0983a092f6d536e554dce8d4312cb877df5f3a6729305aed8828ed0fe36d8a
@@ -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
@@ -11,3 +11,9 @@ appraise "rails-6" do
11
11
  gem 'actionpack', '~> 6.0'
12
12
  gem 'activesupport', '~> 6.0'
13
13
  end
14
+
15
+ appraise "rails-7" do
16
+ gem 'actionmailer', '~> 7.0'
17
+ gem 'actionpack', '~> 7.0'
18
+ gem 'activesupport', '~> 7.0'
19
+ end
data/CHANGELOG.md CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
  Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
4
4
 
5
- Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
+ **Note:** this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
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
6
12
 
7
13
  ## [2.14.0] - 2023-02-22
8
14
  ### Added
@@ -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.14.0)
5
- actionmailer (>= 5.2, < 7.0)
6
- actionpack (>= 5.2, < 7.0)
7
- activesupport (>= 5.2, < 7.0)
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)
@@ -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)
@@ -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', '< 7.0'
24
- spec.add_dependency 'actionpack', '>= 5.2', '< 7.0'
25
- spec.add_dependency 'activesupport', '>= 5.2', '< 7.0'
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'
@@ -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: "../"
@@ -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: "../"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ExceptionHandling
4
- VERSION = '2.14.0'
4
+ VERSION = '2.15.0'
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.14.0
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-02-22 00:00:00.000000000 Z
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
@@ -167,6 +149,7 @@ files:
167
149
  - ".rspec"
168
150
  - ".rubocop.yml"
169
151
  - ".ruby-version"
152
+ - ".tool-versions"
170
153
  - Appraisals
171
154
  - CHANGELOG.md
172
155
  - Gemfile
@@ -178,6 +161,7 @@ files:
178
161
  - exception_handling.gemspec
179
162
  - gemfiles/rails_5.gemfile
180
163
  - gemfiles/rails_6.gemfile
164
+ - gemfiles/rails_7.gemfile
181
165
  - lib/exception_handling.rb
182
166
  - lib/exception_handling/escalate_callback.rb
183
167
  - lib/exception_handling/exception_catalog.rb
@@ -227,7 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
227
211
  - !ruby/object:Gem::Version
228
212
  version: '0'
229
213
  requirements: []
230
- rubygems_version: 3.1.6
214
+ rubygems_version: 3.4.7
231
215
  signing_key:
232
216
  specification_version: 4
233
217
  summary: Invoca's exception handling logger/emailer layer, based on exception_notifier.