File tree 4 files changed +24
-5
lines changed
4 files changed +24
-5
lines changed Original file line number Diff line number Diff line change
1
+ # 0.21.0 (August 28, 2023)
2
+
3
+ ### Added
4
+
5
+ - Ability to produce measurement with attributes (#43 )
6
+
7
+ ### Breaking Changes
8
+
9
+ - ` MetricsLayer ` is now generic over the its ` Subscriber ` impl to support
10
+ [ per-layer filtering] (#43 )
11
+
12
+ ### Fixed
13
+
14
+ - Trace IDs not matching when propagating invalid contexts (#55 )
15
+
16
+ Thanks to @ymgyt and @hdost for contributing to this release!
17
+
18
+ [ per-layer filtering ] : https://docs.rs/tracing-subscriber/0.3.17/tracing_subscriber/layer/index.html#per-layer-filtering
19
+
1
20
# 0.20.0 (August 1, 2023)
2
21
3
22
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tracing-opentelemetry"
3
- version = " 0.20 .0"
3
+ version = " 0.21 .0"
4
4
authors = [
5
5
" Julian Tescher <[email protected] >" ,
6
6
" Tokio Contributors <[email protected] >"
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ Utilities for adding [OpenTelemetry] interoperability to [`tracing`].
17
17
[ Documentation] [ docs-url ] | [ Chat] [ discord-url ]
18
18
19
19
[ crates-badge ] : https://img.shields.io/crates/v/tracing-opentelemetry.svg
20
- [ crates-url ] : https://crates.io/crates/tracing-opentelemetry/0.19 .0
20
+ [ crates-url ] : https://crates.io/crates/tracing-opentelemetry/0.21 .0
21
21
[ docs-badge ] : https://docs.rs/tracing-opentelemetry/badge.svg
22
- [ docs-url ] : https://docs.rs/tracing-opentelemetry/0.19 .0/tracing_opentelemetry
22
+ [ docs-url ] : https://docs.rs/tracing-opentelemetry/0.21 .0/tracing_opentelemetry
23
23
[ docs-master-badge ] : https://img.shields.io/badge/docs-master-blue
24
24
[ docs-master-url ] : https://tracing-rs.netlify.com/tracing_opentelemetry
25
25
[ mit-badge ] : https://img.shields.io/badge/license-MIT-blue.svg
@@ -97,7 +97,7 @@ fn main() {
97
97
opentelemetry = " 0.20"
98
98
opentelemetry-stdout = { version = " 0.1.0" , features = [" trace" ] }
99
99
tracing = " 0.1"
100
- tracing-opentelemetry = " 0.20 "
100
+ tracing-opentelemetry = " 0.21 "
101
101
tracing-subscriber = " 0.3"
102
102
```
103
103
Original file line number Diff line number Diff line change 106
106
//! [subscriber]: tracing_subscriber::subscribe
107
107
#![ deny( unreachable_pub) ]
108
108
#![ cfg_attr( test, deny( warnings) ) ]
109
- #![ doc( html_root_url = "https://docs.rs/tracing-opentelemetry/0.19 .0" ) ]
109
+ #![ doc( html_root_url = "https://docs.rs/tracing-opentelemetry/0.21 .0" ) ]
110
110
#![ doc(
111
111
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png" ,
112
112
issue_tracker_base_url = "https://github.com/tokio-rs/tracing-opentelemetry/issues/"
You can’t perform that action at this time.
0 commit comments