@@ -129,20 +129,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
129129- Improve resource field structure for LogRecords
130130 ([ #3972 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3972 ) )
131131- Update Semantic Conventions code generation scripts:
132- - fix namespace exclusion that resulted in dropping ` os ` and ` net ` namespaces.
132+ - fix namespace exclusion that resulted in dropping ` os ` and ` net ` namespaces.
133133 - add ` Final ` decorator to constants to prevent collisions
134134 - enable mypy and fix detected issues
135135 - allow to drop specific attributes in preparation for Semantic Conventions v1.26.0
136- ([ #3973 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3966 ) )
136+ ([ #3973 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3966 ) )
137137- Update semantic conventions to version 1.26.0.
138138 ([ #3964 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3964 ) )
139139- Use semconv exception attributes for record exceptions in spans
140140 ([ #3979 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3979 ) )
141- - Fix \ _ encode_events assumes events.attributes.dropped exists
141+ - Fix _ encode_events assumes events.attributes.dropped exists
142142 ([ #3965 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3965 ) )
143143- Validate links at span creation
144144 ([ #3991 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3991 ) )
145- - Add attributes field in ` MeterProvider.get_meter ` and ` InstrumentationScope `
145+ - Add attributes field in ` MeterProvider.get_meter ` and ` InstrumentationScope `
146146 ([ #4015 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4015 ) )
147147- Fix inaccessible ` SCHEMA_URL ` constants in ` opentelemetry-semantic-conventions `
148148 ([ #4069 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4069 ) )
@@ -172,10 +172,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
172172 - ` SpanAttributes ` , ` ResourceAttributes ` , and ` MetricInstruments ` are deprecated.
173173 - Attribute and metric definitions are now grouped by the namespace.
174174 - Stable attributes and metrics are moved to ` opentelemetry.semconv.attributes `
175- and ` opentelemetry.semconv.metrics ` modules.
175+ and ` opentelemetry.semconv.metrics ` modules.
176176 - Stable and experimental attributes and metrics are defined under
177- ` opentelemetry.semconv._incubating ` import path.
178- ([ #3586 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3586 ) )
177+ ` opentelemetry.semconv._incubating ` import path.
178+ ([ #3586 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3586 ) )
179179- Rename test objects to avoid pytest warnings
180180 ([ #3823 ] (https://github.com/open-telemetry/opentelemetry-python/pull/3823 ))
181181- Add span flags to OTLP spans and links
@@ -187,11 +187,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
187187- Fix prometheus metric name and unit conversion
188188 ([ #3924 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3924 ) )
189189 - this is a breaking change to prometheus metric names so they comply with the
190- [ specification] ( https://github.com/open-telemetry/opentelemetry-specification/blob/v1.33.0/specification/compatibility/prometheus_and_openmetrics.md#otlp-metric-points-to-prometheus ) .
190+ [ specification] ( https://github.com/open-telemetry/opentelemetry-specification/blob/v1.33.0/specification/compatibility/prometheus_and_openmetrics.md#otlp-metric-points-to-prometheus ) .
191191 - you can temporarily opt-out of the unit normalization by setting the environment variable
192- ` OTEL_PYTHON_EXPERIMENTAL_DISABLE_PROMETHEUS_UNIT_NORMALIZATION=true `
192+ ` OTEL_PYTHON_EXPERIMENTAL_DISABLE_PROMETHEUS_UNIT_NORMALIZATION=true `
193193 - common unit abbreviations are converted to Prometheus conventions (` s ` -> ` seconds ` ),
194- following the [ collector's implementation] ( https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/c0b51136575aa7ba89326d18edb4549e7e1bbdb9/pkg/translator/prometheus/normalize_name.go#L108 )
194+ following the [ collector's implementation] ( https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/c0b51136575aa7ba89326d18edb4549e7e1bbdb9/pkg/translator/prometheus/normalize_name.go#L108 )
195195 - repeated ` _ ` are replaced with a single ` _ `
196196 - unit annotations (enclosed in curly braces like ` {requests} ` ) are stripped away
197197 - units with slash are converted e.g. ` m/s ` -> ` meters_per_second ` .
@@ -363,7 +363,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
363363
364364## Version 1.16.0/0.37b0 (2023-02-17)
365365
366- - Change ` __all__ ` to be statically defined.
366+ - Change `` __all__ ` ` to be statically defined.
367367 ([ #3143 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3143 ) )
368368- Remove the ability to set a global metric prefix for Prometheus exporter
369369 ([ #3137 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3137 ) )
@@ -403,7 +403,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
403403 ([ #3027 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3027 ) )
404404- Update logging to include logging api as per specification
405405 ([ #3038 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3038 ) )
406- - Fix: Avoid generator in metrics \ _ ViewInstrumentMatch.collect()
406+ - Fix: Avoid generator in metrics _ ViewInstrumentMatch.collect()
407407 ([ #3035 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3035 )
408408- [ exporter-otlp-proto-grpc] add user agent string
409409 ([ #3009 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3009 ) )
0 commit comments