File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
opentelemetry-api/src/opentelemetry/util Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
### Changed
10
10
- Updated get_tracer to return an empty string when passed an invalid name
11
11
([ #1854 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/1854 ) )
12
+ - Changed AttributeValue sequences to warn mypy users on adding None values to array
13
+ ([ #1855 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/1855 ) )
12
14
13
15
## [ 1.2.0, 0.21b0] ( https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.2.0-0.21b0 ) - 2021-05-11
14
16
Original file line number Diff line number Diff line change 20
20
bool ,
21
21
int ,
22
22
float ,
23
- Sequence [Optional [ str ] ],
24
- Sequence [Optional [ bool ] ],
25
- Sequence [Optional [ int ] ],
26
- Sequence [Optional [ float ] ],
23
+ Sequence [str ],
24
+ Sequence [bool ],
25
+ Sequence [int ],
26
+ Sequence [float ],
27
27
]
28
28
Attributes = Optional [Mapping [str , AttributeValue ]]
29
29
AttributesAsKey = Tuple [
You can’t perform that action at this time.
0 commit comments