bc-lightstep-ruby 2.7.0 → 2.8.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ae785879286d5339230b0c6a962fd57773e64e41c3179e500cf9cf49cfe7b8a
|
4
|
+
data.tar.gz: b5957851b73cd234e67d134b8832820f7a0dcf98324316cb1d8a6add1b5a7cc5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 292553974f45371191ace865060851c516a822077338223e9e58008194d484edeeab1056df50167e295b388f7c7d1e41949499283c063d3556106f443a45d80a
|
7
|
+
data.tar.gz: 2a5b15268034566f8b519efc8e73d16323764fa2d1fdbe0336ee73fe6e124ea7980eafa6248b90bf971aa2c7672d2f17775bb0818fc11f28de023cd47e08092f
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@ Changelog for the bc-lightstep-ruby gem.
|
|
2
2
|
|
3
3
|
### Pending Release
|
4
4
|
|
5
|
+
## 2.8.0
|
6
|
+
|
7
|
+
* Add support for Ruby 3.4
|
8
|
+
* Drop support for Ruby 3.0, 3.1
|
9
|
+
|
5
10
|
### 2.7.0
|
6
11
|
|
7
12
|
* Do not instrument redis 5.x in this library for compatibility reasons; instead encourage moving away from
|
data/bc-lightstep-ruby.gemspec
CHANGED
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
|
|
31
31
|
|
32
32
|
spec.files = Dir['README.md', 'CHANGELOG.md', 'CODE_OF_CONDUCT.md', 'lib/**/*', 'bc-lightstep-ruby.gemspec']
|
33
33
|
spec.require_paths = ['lib']
|
34
|
-
spec.required_ruby_version = '>= 3.
|
34
|
+
spec.required_ruby_version = '>= 3.2'
|
35
35
|
spec.metadata['rubygems_mfa_required'] = 'true'
|
36
36
|
|
37
37
|
spec.add_runtime_dependency 'activesupport', '>= 4'
|
@@ -105,12 +105,12 @@ module Bigcommerce
|
|
105
105
|
##
|
106
106
|
# Handle access to values in a thread-safe manner
|
107
107
|
#
|
108
|
-
def value_mutex(&
|
108
|
+
def value_mutex(&)
|
109
109
|
@value_mutex ||= begin
|
110
110
|
require 'monitor'
|
111
111
|
Monitor.new
|
112
112
|
end
|
113
|
-
@value_mutex.synchronize(&
|
113
|
+
@value_mutex.synchronize(&)
|
114
114
|
end
|
115
115
|
end
|
116
116
|
end
|
@@ -91,12 +91,12 @@ module Bigcommerce
|
|
91
91
|
##
|
92
92
|
# Handle mutations to the registry in a thread-safe manner
|
93
93
|
#
|
94
|
-
def registry_mutex(&
|
94
|
+
def registry_mutex(&)
|
95
95
|
@registry_mutex ||= begin
|
96
96
|
require 'monitor'
|
97
97
|
Monitor.new
|
98
98
|
end
|
99
|
-
@registry_mutex.synchronize(&
|
99
|
+
@registry_mutex.synchronize(&)
|
100
100
|
end
|
101
101
|
end
|
102
102
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bc-lightstep-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shaun McCormick
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-06-23 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: activesupport
|
@@ -107,7 +106,6 @@ licenses:
|
|
107
106
|
- MIT
|
108
107
|
metadata:
|
109
108
|
rubygems_mfa_required: 'true'
|
110
|
-
post_install_message:
|
111
109
|
rdoc_options: []
|
112
110
|
require_paths:
|
113
111
|
- lib
|
@@ -115,15 +113,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
115
113
|
requirements:
|
116
114
|
- - ">="
|
117
115
|
- !ruby/object:Gem::Version
|
118
|
-
version: '3.
|
116
|
+
version: '3.2'
|
119
117
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
120
118
|
requirements:
|
121
119
|
- - ">="
|
122
120
|
- !ruby/object:Gem::Version
|
123
121
|
version: '0'
|
124
122
|
requirements: []
|
125
|
-
rubygems_version: 3.
|
126
|
-
signing_key:
|
123
|
+
rubygems_version: 3.6.2
|
127
124
|
specification_version: 4
|
128
125
|
summary: Gem for lightstep distributed tracing
|
129
126
|
test_files: []
|