exception_handling 2.11.2 → 2.11.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 316ced9b4f0224f3754c6214f4007f4fdd1e21a8aaeebfc145792eb418a8b577
4
- data.tar.gz: 9d75e6bb79c29ec712832154dfbb64cd1ab786708b5e4591dbb84966c427c9f8
3
+ metadata.gz: 2ecd3cd1b1ac9c74a1b64c7ac8884122bf2625175c902fb211994c3fc2364fb6
4
+ data.tar.gz: 8549017918ed765348567a73abb52fa2b97ae85a0a910962738f7aabafccf5e7
5
5
  SHA512:
6
- metadata.gz: 0e61d34cf62836872573f456cb72438de47332c60a642f7d30635375288f388718c9bd04b717e780236d56aa0ed78e27d4429d2db3df616c982188ff8cec8b90
7
- data.tar.gz: 9b004abd4b56e48706784aeaaae6cdeef4ee654f5ea241fa2823cbc307ec717cebc8c19ce455d7fc9d710d119a7c5a6ed5810d953d78cd62a74c1dfdc1d8b5ef
6
+ metadata.gz: f88892659d8e4c87209013b95b874eeb57b29c01b7648a07096cf915e4724264a70c184c76e0b0d8f07e3520ef9f7187bf8bfd94507877b7fe19ba785bc59ad4
7
+ data.tar.gz: b5d4dc17af467b3d0994ce18e7050c7490e38318ab6abdade3a4dc050b9242e64aaba936b55b8806948051892a5c2856d7bd7308030ed899b4d978a8cfd8b472
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.3] - 2022-04-07
8
+ ### Fixed
9
+ - Fixed bug in ruby 2.7+ where `digest` was not required by default
10
+
7
11
  ## [2.11.2] - 2022-04-04
8
12
  ### Fixed
9
13
  - Fixed Ruby 3+ bug where arguments where not being passed using ** operator when writing to the logger
@@ -87,6 +91,7 @@ Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0
87
91
  ### Changed
88
92
  - No longer depends on hobo_support. Uses invoca-utils 0.3 instead.
89
93
 
94
+ [2.11.3]: https://github.com/Invoca/exception_handling/compare/v2.11.2...v2.11.3
90
95
  [2.11.2]: https://github.com/Invoca/exception_handling/compare/v2.11.1...v2.11.2
91
96
  [2.11.1]: https://github.com/Invoca/exception_handling/compare/v2.11.0...v2.11.1
92
97
  [2.11.0]: https://github.com/Invoca/exception_handling/compare/v2.10.0...v2.11.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- exception_handling (2.11.2)
4
+ exception_handling (2.11.3)
5
5
  actionmailer (>= 5.2, < 7.0)
6
6
  actionpack (>= 5.2, < 7.0)
7
7
  activesupport (>= 5.2, < 7.0)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ExceptionHandling
4
- VERSION = '2.11.2'
4
+ VERSION = '2.11.3'
5
5
  end
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'digest'
3
4
  require 'timeout'
4
5
  require 'active_support'
5
6
  require 'active_support/core_ext'
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.2
4
+ version: 2.11.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Invoca
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-04 00:00:00.000000000 Z
11
+ date: 2022-04-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionmailer