Skip to content

Commit 2c9d31e

Browse files
authored
[Core][OTel] Increment version for core plugin (#40173)
Signed-off-by: Paul Van Eck <[email protected]>
1 parent cb9ed3f commit 2c9d31e

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

sdk/core/azure-core-tracing-opentelemetry/CHANGELOG.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
# Release History
22

3-
## 1.0.0b12 (Unreleased)
3+
## 1.0.0b13 (Unreleased)
44

55
### Features Added
66

7-
- If a span exits with an exception, the exception name is now recorded in the `error.type` attribute. ([#34619](https://github.com/Azure/azure-sdk-for-python/pull/34619))
8-
- Added support for passing a schema version to fetch available attribute mappings and set the schema URL on the tracer's instrumentation scope. ([#40161](https://github.com/Azure/azure-sdk-for-python/pull/40161))
9-
107
### Breaking Changes
118

129
- Remapped certain attributes to converge with OpenTelemetry semantic conventions version `1.23.1` ([#34089](https://github.com/Azure/azure-sdk-for-python/pull/34089)):
@@ -20,6 +17,20 @@
2017

2118
### Other Changes
2219

20+
## 1.0.0b12 (2025-03-20)
21+
22+
### Features Added
23+
24+
- If a span exits with an exception, the exception name is now recorded in the `error.type` attribute. ([#34619](https://github.com/Azure/azure-sdk-for-python/pull/34619))
25+
- Added support for passing a schema version to fetch available attribute mappings and set the schema URL on the tracer's instrumentation scope. ([#40161](https://github.com/Azure/azure-sdk-for-python/pull/40161))
26+
- Added additional span suppression logic to prevent unnecessary spans from being created. ([#39994](https://github.com/Azure/azure-sdk-for-python/pull/39994))
27+
- `SpanKind.INTERNAL` spans are suppressed if their parent span is of type `SpanKind.INTERNAL`, `SpanKind.CLIENT`, or `SpanKind.PRODUCER`.
28+
- Update `OpenTelemetrySpan.change_context` to also accept spans of type `OpenTelemetrySpan`. ([#39994](https://github.com/Azure/azure-sdk-for-python/pull/39994))
29+
30+
### Bugs Fixed
31+
32+
- Fixed an issue where the original context was not properly restored after exiting an `OpenTelemetrySpan` context in certain scenarios. ([#39994](https://github.com/Azure/azure-sdk-for-python/pull/39994))
33+
2334
## 1.0.0b11 (2023-09-07)
2435

2536
### Bugs Fixed

sdk/core/azure-core-tracing-opentelemetry/azure/core/tracing/ext/opentelemetry_span/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# Licensed under the MIT License.
44
# ------------------------------------
55

6-
VERSION = "1.0.0b12"
6+
VERSION = "1.0.0b13"

sdk/core/azure-core-tracing-opentelemetry/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"Programming Language :: Python :: 3.10",
5151
"Programming Language :: Python :: 3.11",
5252
"Programming Language :: Python :: 3.12",
53+
"Programming Language :: Python :: 3.13",
5354
"License :: OSI Approved :: MIT License",
5455
],
5556
zip_safe=False,

0 commit comments

Comments
 (0)