exception_handling 3.0.0 → 3.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9cd3c67b205a5e3899457a65c2a048be75ac9d4dcd4518bda6cdba4937a7d1a6
4
- data.tar.gz: dc4f282f106933bd23c38a31b461af27a0aa693a89bc63575a1efd6d0cfcb447
3
+ metadata.gz: a29a9092ff7f9301ec3b6bbf825a7d25bc5279fbec1a984c13e90afa95b9200b
4
+ data.tar.gz: 69b933ecd257feddbfe6f4a74deb8548d263eab94f9e768aa0a93a939d493dee
5
5
  SHA512:
6
- metadata.gz: 249f1f5465383162973c0f2eea532e6ba1735b5be87de4abca7f9f29a2155aacb887c9d83f9aa340ad9b4b99fb8f1ab83888efb20906caeaba1ff30ed9559998
7
- data.tar.gz: ee2b289edc88dad251fd9cfb4c9ec8f513818011089704aa4bb4dafc475930b0a56b7b56675b7df7d0a81ff7803f53e155ffc17db9ec732ad6e8c82feeb19b60
6
+ metadata.gz: c966ab01531b3a51698a0247b8f80e703d7b77416b818b112f47024645b61f140f2c0abad685bb5188811f6a8f1862b3db8c8d1cf2bf5d568ee698b7c171b117
7
+ data.tar.gz: 042cc68f1c5ee3bba682cc9362f096f7979520e2ba60763a7628de2d9ff9fcbbc38bde0b73b6450bd949bb945b57844e352e306ffc7d425cee45e10282b85f20
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
+ ## [3.0.1] - 2024-03-07
8
+ ### Changed
9
+ - Allow newer versions of the `psych` gem to be used to avoid conflicts with the default version pulled in by ruby 3.2+
10
+
7
11
  ## [3.0.0] - 2024-03-01
8
12
  ### Added
9
13
  - Added explicit testing and support for Ruby 3.2 and 3.3
data/Gemfile.lock CHANGED
@@ -1,12 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- exception_handling (3.0.0)
4
+ exception_handling (3.0.1)
5
5
  activesupport (>= 5.2)
6
6
  contextual_logger (~> 1.0)
7
7
  escalate (~> 0.3)
8
8
  invoca-utils (~> 0.3)
9
- psych (~> 3.0)
9
+ psych (>= 3.2)
10
10
 
11
11
  GEM
12
12
  remote: https://rubygems.org/
@@ -49,7 +49,8 @@ GEM
49
49
  pry-byebug (3.8.0)
50
50
  byebug (~> 11.0)
51
51
  pry (~> 0.10)
52
- psych (3.3.4)
52
+ psych (5.1.2)
53
+ stringio
53
54
  rainbow (3.0.0)
54
55
  rake (13.0.1)
55
56
  rspec (3.9.0)
@@ -75,6 +76,7 @@ GEM
75
76
  ruby-progressbar (~> 1.7)
76
77
  unicode-display_width (>= 1.4.0, < 1.7)
77
78
  ruby-progressbar (1.10.1)
79
+ stringio (3.1.0)
78
80
  test-unit (3.3.6)
79
81
  power_assert
80
82
  thor (1.0.1)
@@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
24
24
  spec.add_dependency 'contextual_logger', '~> 1.0'
25
25
  spec.add_dependency 'escalate', '~> 0.3'
26
26
  spec.add_dependency 'invoca-utils', '~> 0.3'
27
- spec.add_dependency 'psych', '~> 3.0'
27
+ spec.add_dependency 'psych', '>= 3.2'
28
28
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ExceptionHandling
4
- VERSION = '3.0.0'
4
+ VERSION = '3.0.1'
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: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Invoca
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-01 00:00:00.000000000 Z
11
+ date: 2024-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -70,16 +70,16 @@ dependencies:
70
70
  name: psych
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: '3.0'
75
+ version: '3.2'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: '3.0'
82
+ version: '3.2'
83
83
  description: Exception handling logger
84
84
  email:
85
85
  - development@invoca.com