exception_handling 3.1.0.pre.tstarck.2 → 3.1.1.pre.tstarck.1

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: 2b3c85b3faec57b40c8bfc019759a154c1c5fecf6f98366fb3afdb362b0494d6
4
- data.tar.gz: a560619e54e1556483609a9771f8ea0f81ce1fb074802b6e9db51d3f14edba43
3
+ metadata.gz: 6ef99a4395f687cd563f95138bd9a50469182b6bec987eaf04ad0b3d413fa153
4
+ data.tar.gz: 544a1423c6feb0bb2a26cff7289fb6f32ec87bd75573e477f712ccf8b4853a80
5
5
  SHA512:
6
- metadata.gz: 9a5925753dd29aa55e4d2c8275fcd5b457f7530309ba95d4f657e6afa7447b5e24d448ca2fd3383fb9599b7aa3b536c21004a87a8fc7b6ea28f9d9b2e63a3349
7
- data.tar.gz: 81bf2bb4fced6b18987ddd9254918bbf22e8586ffa626d9608107275ef7766474906b5a45f9760f3f88cf7a1808e10f413d8021c48108800b8f045dc2578258d
6
+ metadata.gz: 7db8911f2fdfc04f16f669209cd49bf65b0a405cb505618bb3c895cbad220c77fa83223478bfefb149921892136544a444f0d0bde200e8557488f7993b9395f4
7
+ data.tar.gz: 3763f43d71a78e772b599d943cb16754bc74febbbebc26b65a07413ea340149ad71b7cdc6023d4536c9148fedb4dd71b457cbb9ee8d3cbad7bd1883e4f25e1fc
data/CHANGELOG.md CHANGED
@@ -4,7 +4,12 @@ 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.1.0] - Unreleased
7
+ ## [3.1.1] - Unreleased
8
+ ### Changed
9
+ - Changed how the `honeybadger_tag_from_log_context` to now combine the tag name with the value using a colon `:` instead of two hyphens `--`.
10
+ - There was a bug in Honeybadger that was preventing colons from being used in tags. However that bug is now fixed so we can use colons (which look better).
11
+
12
+ ## [3.1.0] - 2024-03-12
8
13
  ### Added
9
14
  - Add interface for tagging exceptions sent to honeybadger with values from the log context.
10
15
  - `ExceptionHandling.add_honeybadger_tag_from_log_context`
@@ -12,6 +17,10 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
12
17
  ### Changed
13
18
  - Require ruby version 2.7 or greater
14
19
 
20
+ ## [3.0.1] - 2024-03-07
21
+ ### Changed
22
+ - Allow newer versions of the `psych` gem to be used to avoid conflicts with the default version pulled in by ruby 3.2+
23
+
15
24
  ## [3.0.0] - 2024-03-01
16
25
  ### Added
17
26
  - Added explicit testing and support for Ruby 3.2 and 3.3
data/Gemfile CHANGED
@@ -6,6 +6,7 @@ gemspec
6
6
 
7
7
  gem 'activesupport'
8
8
  gem 'appraisal', '~> 2.2'
9
+ gem 'gem-release'
9
10
  gem 'honeybadger', '~> 4.11'
10
11
  gem 'pry'
11
12
  gem 'pry-byebug'
data/Gemfile.lock CHANGED
@@ -1,12 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- exception_handling (3.1.0.pre.tstarck.2)
4
+ exception_handling (3.1.1.pre.tstarck.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/
@@ -30,6 +30,7 @@ GEM
30
30
  json
31
31
  diff-lcs (1.5.0)
32
32
  escalate (0.3.0)
33
+ gem-release (2.2.2)
33
34
  honeybadger (4.11.0)
34
35
  i18n (1.10.0)
35
36
  concurrent-ruby (~> 1.0)
@@ -41,14 +42,15 @@ GEM
41
42
  parallel (1.17.0)
42
43
  parser (2.7.1.3)
43
44
  ast (~> 2.4.0)
44
- power_assert (1.2.0)
45
+ power_assert (2.0.3)
45
46
  pry (0.14.2)
46
47
  coderay (~> 1.1)
47
48
  method_source (~> 1.0)
48
49
  pry-byebug (3.8.0)
49
50
  byebug (~> 11.0)
50
51
  pry (~> 0.10)
51
- psych (3.3.4)
52
+ psych (5.1.2)
53
+ stringio
52
54
  rainbow (3.0.0)
53
55
  rake (13.0.1)
54
56
  regexp_parser (2.9.0)
@@ -80,6 +82,7 @@ GEM
80
82
  rubocop-ast (0.2.0)
81
83
  parser (>= 2.7.0.1)
82
84
  ruby-progressbar (1.13.0)
85
+ stringio (3.1.0)
83
86
  test-unit (3.6.1)
84
87
  power_assert
85
88
  thor (1.0.1)
@@ -96,6 +99,7 @@ DEPENDENCIES
96
99
  activesupport
97
100
  appraisal (~> 2.2)
98
101
  exception_handling!
102
+ gem-release
99
103
  honeybadger (~> 4.11)
100
104
  pry
101
105
  pry-byebug
@@ -1,4 +1,4 @@
1
- --- !map:HashWithIndifferentAccess
1
+ ---
2
2
  Test Exception:
3
3
  error: "Some Exception"
4
4
  notes: "this is used by a test"
@@ -25,5 +25,5 @@ Gem::Specification.new do |spec|
25
25
  spec.add_dependency 'contextual_logger', '~> 1.0'
26
26
  spec.add_dependency 'escalate', '~> 0.3'
27
27
  spec.add_dependency 'invoca-utils', '~> 0.3'
28
- spec.add_dependency 'psych', '~> 3.0'
28
+ spec.add_dependency 'psych', '>= 3.2'
29
29
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ExceptionHandling
4
- VERSION = '3.1.0.pre.tstarck.2'
4
+ VERSION = '3.1.1.pre.tstarck.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.1.0.pre.tstarck.2
4
+ version: 3.1.1.pre.tstarck.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-05 00:00:00.000000000 Z
11
+ date: 2024-03-19 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