highlight_io 0.2.1 → 0.2.2

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: ce73dd45dc718a3763e06ad6168954ff402294f28ad7b99a3ced2234b8d878d0
4
- data.tar.gz: 9c37d1382204c7e542a525a88e6ec02953bac04e11b11771532f8e3039339a9e
3
+ metadata.gz: 3acb2eb8b48459af5702aafc914f4a75a301c9f93d1dba87ae0e94ec6659fa80
4
+ data.tar.gz: 95312deb9f9e00446cddfe5485636fb7a9791275f87ce5e5c800b4465b331815
5
5
  SHA512:
6
- metadata.gz: ffd101b0284c9854b1d54b3f95f852d440609ab709faebd650cd1cafd67031fe97f0230b939b21981fc6a6c1f58a5e830daf214aa7ff71d374566a64767dc43d
7
- data.tar.gz: c8437f01919ad43ad20f35a5c3a0f59470baf7acca5708834652dbba88d8008794e4c50768777b2f46b287e496c24c83141a1ad48f870b94e836c554b855a9be
6
+ metadata.gz: c11d2d2754b7eea0218936df2b802460048ebebdc33a8ca232a76b4c071ca2c841fb2baa250dbaa42f61576d003135ba61db0054e256da86069023923abd783b
7
+ data.tar.gz: 259adac4ee276371a82b01e7b9cfc5a11ae965c61c6e38f850858a24110b99e94033356b0231c305752d203aa882698b8b83e9eb2e4c454c01b68eb70f96e777
data/CHANGELOG.md CHANGED
@@ -15,3 +15,7 @@
15
15
  ## 0.2.1
16
16
 
17
17
  - Ensure `message` on logs is always a string.
18
+
19
+ ## 0.2.2
20
+
21
+ - Fix duplicate errors recorded on traces.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- highlight_io (0.2.1)
4
+ highlight_io (0.2.2)
5
5
  grpc (~> 1.52)
6
6
  opentelemetry-exporter-otlp (~> 0.24.0)
7
7
  opentelemetry-instrumentation-all (~> 0.32.0)
@@ -15,7 +15,7 @@ GEM
15
15
  google-protobuf (3.23.4)
16
16
  googleapis-common-protos-types (1.8.0)
17
17
  google-protobuf (~> 3.18)
18
- grpc (1.57.0)
18
+ grpc (1.58.0)
19
19
  google-protobuf (~> 3.23)
20
20
  googleapis-common-protos-types (~> 1.0)
21
21
  json (2.6.3)
@@ -213,7 +213,8 @@ GEM
213
213
  rainbow (3.1.1)
214
214
  rake (12.3.3)
215
215
  regexp_parser (2.8.1)
216
- rexml (3.2.6)
216
+ rexml (3.2.8)
217
+ strscan (>= 3.0.9)
217
218
  rubocop (1.50.2)
218
219
  json (~> 2.3)
219
220
  parallel (~> 1.10)
@@ -228,6 +229,7 @@ GEM
228
229
  parser (>= 3.2.1.0)
229
230
  ruby-progressbar (1.13.0)
230
231
  ruby2_keywords (0.0.5)
232
+ strscan (3.1.0)
231
233
  unicode-display_width (2.4.2)
232
234
 
233
235
  PLATFORMS
@@ -1,3 +1,3 @@
1
1
  module Highlight
2
- VERSION = '0.2.1'.freeze
2
+ VERSION = '0.2.2'.freeze
3
3
  end
data/lib/highlight.rb CHANGED
@@ -57,9 +57,6 @@ module Highlight
57
57
  HIGHLIGHT_TRACE_ATTRIBUTE => request_id
58
58
  }.merge(attrs).compact) do |_span|
59
59
  yield
60
- rescue StandardError => e
61
- record_exception(e)
62
- raise
63
60
  end
64
61
  end
65
62
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: highlight_io
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Highlight
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-06-19 00:00:00.000000000 Z
11
+ date: 2024-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc