opentelemetry-propagator-b3 0.20.0 → 0.22.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 +4 -4
- data/CHANGELOG.md +27 -17
- data/README.md +1 -1
- data/lib/opentelemetry/propagator/b3/text_map_extractor.rb +3 -3
- data/lib/opentelemetry/propagator/b3/version.rb +1 -1
- metadata +13 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81bed616c579c64903222d07f687753a84965f3e8e420fd9f1008da2f5a29a5c
|
4
|
+
data.tar.gz: 4e28dae63b26cda1c2fb8e24c6fb7fc124f4125f0786f7b202df8eb2e43c9120
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f436fc58f3ddb3a949f6d2d97e7844293a14cab280902dd54a6bc630c67e7a1c944101a95e9690fcb81d7051f8f1ee9e2909efb602437d310216e2d7bcb59c95
|
7
|
+
data.tar.gz: 1b86b5ce5f4d1588c1d1f752cc1c75e50018876cfdb1987b4223b3044ec75ab063822acc7f866c38f69813966f641329b10950e6ae87136a2469537193f37123
|
data/CHANGELOG.md
CHANGED
@@ -1,67 +1,77 @@
|
|
1
1
|
# Release History: opentelemetry-propagator-b3
|
2
2
|
|
3
|
+
### v0.22.0 / 2025-02-25
|
4
|
+
|
5
|
+
- ADDED: Support 3.1 Min Version
|
6
|
+
|
7
|
+
### v0.21.0 / 2023-06-08
|
8
|
+
|
9
|
+
- BREAKING CHANGE: Remove support for EoL Ruby 2.7
|
10
|
+
|
11
|
+
- ADDED: Remove support for EoL Ruby 2.7
|
12
|
+
|
3
13
|
### v0.20.0 / 2022-06-09
|
4
14
|
|
5
|
-
|
15
|
+
- (No significant changes)
|
6
16
|
|
7
17
|
### v0.19.2 / 2021-09-29
|
8
18
|
|
9
|
-
|
19
|
+
- (No significant changes)
|
10
20
|
|
11
21
|
### v0.19.1 / 2021-08-12
|
12
22
|
|
13
|
-
|
23
|
+
- (No significant changes)
|
14
24
|
|
15
25
|
### v0.19.0 / 2021-06-23
|
16
26
|
|
17
|
-
|
27
|
+
- ADDED: Add Tracer.non_recording_span to API
|
18
28
|
|
19
29
|
### v0.18.0 / 2021-05-21
|
20
30
|
|
21
|
-
|
31
|
+
- ADDED: Updated API dependency for 1.0.0.rc1
|
22
32
|
|
23
33
|
### v0.17.0 / 2021-04-22
|
24
34
|
|
25
|
-
|
35
|
+
- BREAKING CHANGE: Replace TextMapInjector/TextMapExtractor pairs with a TextMapPropagator.
|
26
36
|
|
27
37
|
[Check the propagator documentation](https://open-telemetry.github.io/opentelemetry-ruby/) for the new usage.
|
28
38
|
|
29
|
-
|
39
|
+
- FIXED: Refactor propagators to add #fields
|
30
40
|
|
31
41
|
### v0.16.0 / 2021-03-17
|
32
42
|
|
33
|
-
|
43
|
+
- DOCS: Replace Gitter with GitHub Discussions
|
34
44
|
|
35
45
|
### v0.15.0 / 2021-02-18
|
36
46
|
|
37
|
-
|
47
|
+
- (No significant changes)
|
38
48
|
|
39
49
|
### v0.14.0 / 2021-02-03
|
40
50
|
|
41
|
-
|
51
|
+
- BREAKING CHANGE: Replace getter and setter callables and remove rack specific propagators
|
42
52
|
|
43
|
-
|
53
|
+
- ADDED: Replace getter and setter callables and remove rack specific propagators
|
44
54
|
|
45
55
|
### v0.13.0 / 2021-01-29
|
46
56
|
|
47
|
-
|
57
|
+
- (No significant changes)
|
48
58
|
|
49
59
|
### v0.12.0 / 2020-12-24
|
50
60
|
|
51
|
-
|
61
|
+
- (No significant changes)
|
52
62
|
|
53
63
|
### v0.11.0 / 2020-12-11
|
54
64
|
|
55
|
-
|
65
|
+
- FIXED: Copyright comments to not reference year
|
56
66
|
|
57
67
|
### v0.10.0 / 2020-12-03
|
58
68
|
|
59
|
-
|
69
|
+
- (No significant changes)
|
60
70
|
|
61
71
|
### v0.9.0 / 2020-11-27
|
62
72
|
|
63
|
-
|
73
|
+
- (No significant changes)
|
64
74
|
|
65
75
|
### v0.8.0 / 2020-10-27
|
66
76
|
|
67
|
-
|
77
|
+
- Initial release.
|
data/README.md
CHANGED
@@ -17,9 +17,9 @@ module OpenTelemetry
|
|
17
17
|
module B3
|
18
18
|
# Extracts trace context using the b3 single or multi header formats, favouring b3 single header.
|
19
19
|
module TextMapExtractor
|
20
|
-
B3_CONTEXT_REGEX = /\A(?<trace_id>(?:[0-9a-f]{16}){1,2})-(?<span_id>[0-9a-f]{16})(?:-(?<sampling_state>[01d](?![0-9a-f])))?(?:-(?<parent_span_id>[0-9a-f]{16}))?\z
|
21
|
-
B3_TRACE_ID_REGEX = /\A(?:[0-9a-f]{16}){1,2}\z
|
22
|
-
B3_SPAN_ID_REGEX = /\A[0-9a-f]{16}\z
|
20
|
+
B3_CONTEXT_REGEX = /\A(?<trace_id>(?:[0-9a-f]{16}){1,2})-(?<span_id>[0-9a-f]{16})(?:-(?<sampling_state>[01d](?![0-9a-f])))?(?:-(?<parent_span_id>[0-9a-f]{16}))?\z/
|
21
|
+
B3_TRACE_ID_REGEX = /\A(?:[0-9a-f]{16}){1,2}\z/
|
22
|
+
B3_SPAN_ID_REGEX = /\A[0-9a-f]{16}\z/
|
23
23
|
SAMPLED_VALUES = %w[1 true].freeze
|
24
24
|
|
25
25
|
B3_CONTEXT_KEY = 'b3'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opentelemetry-propagator-b3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenTelemetry Authors
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opentelemetry-api
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
75
|
+
version: '1.65'
|
76
76
|
type: :development
|
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:
|
82
|
+
version: '1.65'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: simplecov
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -145,11 +145,11 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby
|
|
145
145
|
licenses:
|
146
146
|
- Apache-2.0
|
147
147
|
metadata:
|
148
|
-
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-propagator-b3/v0.
|
148
|
+
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-propagator-b3/v0.22.0/file.CHANGELOG.html
|
149
149
|
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/propagator/b3
|
150
150
|
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
|
151
|
-
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-propagator-b3/v0.
|
152
|
-
post_install_message:
|
151
|
+
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-propagator-b3/v0.22.0
|
152
|
+
post_install_message:
|
153
153
|
rdoc_options: []
|
154
154
|
require_paths:
|
155
155
|
- lib
|
@@ -157,15 +157,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
157
157
|
requirements:
|
158
158
|
- - ">="
|
159
159
|
- !ruby/object:Gem::Version
|
160
|
-
version:
|
160
|
+
version: '3.1'
|
161
161
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
162
162
|
requirements:
|
163
163
|
- - ">="
|
164
164
|
- !ruby/object:Gem::Version
|
165
165
|
version: '0'
|
166
166
|
requirements: []
|
167
|
-
rubygems_version: 3.
|
168
|
-
signing_key:
|
167
|
+
rubygems_version: 3.3.27
|
168
|
+
signing_key:
|
169
169
|
specification_version: 4
|
170
170
|
summary: B3 Context Propagation Extension for the OpenTelemetry framework
|
171
171
|
test_files: []
|