exception_handling 3.1.0 → 3.1.1.pre.tstarck.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: e619b34f5cd132a9ded02fce1be65833465be407a3238107bdd4df7a9c361ddd
4
- data.tar.gz: aceeffa2a29bfacd76f7bde369ca1983bb36a8f077d08d9c140b755d188d472a
3
+ metadata.gz: 6ef99a4395f687cd563f95138bd9a50469182b6bec987eaf04ad0b3d413fa153
4
+ data.tar.gz: 544a1423c6feb0bb2a26cff7289fb6f32ec87bd75573e477f712ccf8b4853a80
5
5
  SHA512:
6
- metadata.gz: ad914730d551f98251d760d171fbaf74ffe9aa7c52ffc8c51c9e27dba74b77496c0c545f69b642f4bfeecca3ead9b6531c49d9c7410b3d829bf6df4df54a7a65
7
- data.tar.gz: 2212b464deb413f632bc66b81273eb3016a4e9c36cf33496316fd1da27a973891000258e0ceea249d00b5b7e44495e4479bbc74eb3c8283765c881e6706db555
6
+ metadata.gz: 7db8911f2fdfc04f16f669209cd49bf65b0a405cb505618bb3c895cbad220c77fa83223478bfefb149921892136544a444f0d0bde200e8557488f7993b9395f4
7
+ data.tar.gz: 3763f43d71a78e772b599d943cb16754bc74febbbebc26b65a07413ea340149ad71b7cdc6023d4536c9148fedb4dd71b457cbb9ee8d3cbad7bd1883e4f25e1fc
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ 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.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
+
7
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.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- exception_handling (3.1.0)
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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ExceptionHandling
4
- VERSION = '3.1.0'
4
+ VERSION = '3.1.1.pre.tstarck.1'
5
5
  end
@@ -379,7 +379,7 @@ module ExceptionHandling # never included
379
379
  if @honeybadger_log_context_tags
380
380
  @honeybadger_log_context_tags.map do |tag_name, tag_path|
381
381
  if (value_from_log_context = honeybadger_context_data.dig(:log_context, *tag_path))
382
- "#{tag_name}--#{value_from_log_context}"
382
+ "#{tag_name}:#{value_from_log_context}"
383
383
  end
384
384
  end.compact
385
385
  else
@@ -1091,7 +1091,7 @@ describe ExceptionHandling do
1091
1091
  context "when error is logged within a log context that matches the path" do
1092
1092
  it "notifies honeybadger with the tags from the log context" do
1093
1093
  ExceptionHandling.logger.with_context("kubernetes" => { "context" => "local" }) do
1094
- expect(Honeybadger).to receive(:notify).with(hash_including({ tags: "kubernetes_context--local" }))
1094
+ expect(Honeybadger).to receive(:notify).with(hash_including({ tags: "kubernetes_context:local" }))
1095
1095
  ExceptionHandling.log_error(StandardError.new("Error"), nil)
1096
1096
  end
1097
1097
  end
@@ -1123,7 +1123,7 @@ describe ExceptionHandling do
1123
1123
  end
1124
1124
 
1125
1125
  it "combines all the tags from different sources" do
1126
- expect(Honeybadger).to receive(:notify).with(hash_including({ tags: "auto-tag inline-tag log-context--tag" }))
1126
+ expect(Honeybadger).to receive(:notify).with(hash_including({ tags: "auto-tag inline-tag log-context:tag" }))
1127
1127
  ExceptionHandling.logger.with_context("inside" => { "context" => "tag" }) do
1128
1128
  log_error
1129
1129
  end
@@ -1133,7 +1133,7 @@ describe ExceptionHandling do
1133
1133
  let(:inline_tags) { ["auto-tag"] }
1134
1134
 
1135
1135
  it "notifies honeybadger with the set of tags" do
1136
- expect(Honeybadger).to receive(:notify).with(hash_including({ tags: "auto-tag log-context--tag" }))
1136
+ expect(Honeybadger).to receive(:notify).with(hash_including({ tags: "auto-tag log-context:tag" }))
1137
1137
  ExceptionHandling.logger.with_context("inside" => { "context" => "tag" }) do
1138
1138
  log_error
1139
1139
  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
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-12 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
@@ -142,9 +142,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
142
142
  version: '2.7'
143
143
  required_rubygems_version: !ruby/object:Gem::Requirement
144
144
  requirements:
145
- - - ">="
145
+ - - ">"
146
146
  - !ruby/object:Gem::Version
147
- version: '0'
147
+ version: 1.3.1
148
148
  requirements: []
149
149
  rubygems_version: 3.3.7
150
150
  signing_key: