activerecord-instrumentation 0.6.0 → 0.6.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: 6ce6d77768f0c5c8ee3b9bc7459c840900d022ef672fb78f9342163bcfdee7ae
4
- data.tar.gz: 5e73e0e111b40319e11326fe2247980daac4db510424b2d6c39452cba0f6fc06
3
+ metadata.gz: f4946d5d97ab8aab8e8bbc51756e729aeb83ef93e7631d177071d109a60cd1a3
4
+ data.tar.gz: 46e7086f48e49b5ffec1c6c7a84d6a4502eb805599b268748f7a12b2ace248b8
5
5
  SHA512:
6
- metadata.gz: a18568aadaa039d7b14dfaecd8a95a2e909399c7640127e4389f9a9fc0875e30e9349a64747f2e2005c48e9281af44f42601ea6a22ea04b77f47ec77cdc2191b
7
- data.tar.gz: 2a6e52c506b1c997e7ac881cad9117559471ed8af64c5bb7c1c503b98548b56d90610670f92f67d717c6393f9e370c360bebb15bcdd95e8d77ae08c5518ac469
6
+ metadata.gz: cc6b52f3e074b8b357c9f542d8980c09eb40346c1f61ccebb9f7d6b474f22a573fa295a7d4ea4d6e448763bb8c17272d70420da4cdf938a78eef183a6d050b11
7
+ data.tar.gz: f20c110b0971e300b1b34f8cbc9987ffa55b75defece93eeb1c0efd125f238250e0eb2153176a6fa9ce1f3bd657e2d8e24da7181d2f87ace075b30b5e48cf333
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ ## 0.6.1 09/07/2022
5
+ * Update for ruby 3.x compatibility
6
+ * Splat hash when passing method expecting keyword args
7
+
4
8
  ## 0.6.0 07/11/2022
5
9
  * Improved pper address tag to reflect the current database when using the mysql adapter
6
10
 
data/Gemfile.lock CHANGED
@@ -1,31 +1,30 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- activerecord-instrumentation (0.6.0)
4
+ activerecord-instrumentation (0.6.1)
5
5
  activerecord
6
6
  opentracing (~> 0.5)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activemodel (6.1.6.1)
12
- activesupport (= 6.1.6.1)
13
- activerecord (6.1.6.1)
14
- activemodel (= 6.1.6.1)
15
- activesupport (= 6.1.6.1)
16
- activesupport (6.1.6.1)
11
+ activemodel (7.0.4)
12
+ activesupport (= 7.0.4)
13
+ activerecord (7.0.4)
14
+ activemodel (= 7.0.4)
15
+ activesupport (= 7.0.4)
16
+ activesupport (7.0.4)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
18
  i18n (>= 1.6, < 2)
19
19
  minitest (>= 5.1)
20
20
  tzinfo (~> 2.0)
21
- zeitwerk (~> 2.3)
22
21
  ast (2.4.0)
23
22
  concurrent-ruby (1.1.10)
24
23
  diff-lcs (1.3)
25
- i18n (1.11.0)
24
+ i18n (1.12.0)
26
25
  concurrent-ruby (~> 1.0)
27
26
  jaro_winkler (1.5.4)
28
- minitest (5.16.2)
27
+ minitest (5.16.3)
29
28
  opentracing (0.5.0)
30
29
  opentracing_test_tracer (0.1.1)
31
30
  opentracing
@@ -63,10 +62,9 @@ GEM
63
62
  sdoc (1.1.0)
64
63
  rdoc (>= 5.0)
65
64
  sqlite3 (1.4.2)
66
- tzinfo (2.0.4)
65
+ tzinfo (2.0.5)
67
66
  concurrent-ruby (~> 1.0)
68
67
  unicode-display_width (1.6.1)
69
- zeitwerk (2.6.0)
70
68
 
71
69
  PLATFORMS
72
70
  ruby
@@ -54,7 +54,7 @@ module ActiveRecord
54
54
 
55
55
  if (exception = payload[:exception_object])
56
56
  span.set_tag("error", true)
57
- span.log_kv(exception_metadata(exception))
57
+ span.log_kv(**exception_metadata(exception))
58
58
  end
59
59
 
60
60
  span.finish(end_time: finish)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActiveRecord
4
4
  module OpenTracing
5
- VERSION = "0.6.0"
5
+ VERSION = "0.6.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-instrumentation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - SaleMove TechMovers
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-07-13 00:00:00.000000000 Z
12
+ date: 2022-09-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -213,7 +213,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
213
213
  - !ruby/object:Gem::Version
214
214
  version: '0'
215
215
  requirements: []
216
- rubygems_version: 3.3.11
216
+ rubygems_version: 3.1.6
217
217
  signing_key:
218
218
  specification_version: 4
219
219
  summary: ActiveRecord OpenTracing intrumenter