Skip to content

Commit fa326cd

Browse files
authored
Ga release 1.3.0 (#170)
* GA release 1.3.0 * Update distro version
1 parent 5748e90 commit fa326cd

3 files changed

Lines changed: 36 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Release History
22

3+
## 1.3.0 (2026-05-27)
4+
5+
### Features Added
6+
- Add circuit breaker to A365 exporter to prevent silent telemetry loss
7+
([#153](https://github.com/microsoft/opentelemetry-distro-python/pull/153))
8+
- Add token usage extraction for LangChain tracer
9+
([#161](https://github.com/microsoft/opentelemetry-distro-python/pull/161))
10+
- Add more GenAI attributes to LangChain tracer
11+
([#156](https://github.com/microsoft/opentelemetry-distro-python/pull/156))
12+
- Align message format to OTel spec: remove version envelope
13+
([#162](https://github.com/microsoft/opentelemetry-distro-python/pull/162))
14+
15+
### Bugs Fixed
16+
- Use `get_span_context()` instead of `.context` to support `NonRecordingSpan`
17+
([#168](https://github.com/microsoft/opentelemetry-distro-python/pull/168))
18+
- Use standard `gen_ai.conversation.id` instead of `microsoft.sessionid` in LangChain tracer
19+
([#152](https://github.com/microsoft/opentelemetry-distro-python/pull/152))
20+
- Emit OTel-spec structured messages on `invoke_agent` spans
21+
([#164](https://github.com/microsoft/opentelemetry-distro-python/pull/164))
22+
- Prevent OOM from unbounded dicts in LangChain tracer
23+
([#154](https://github.com/microsoft/opentelemetry-distro-python/pull/154))
24+
- Bump `agent-framework>=1.4.0` to resolve dependency conflict
25+
([#155](https://github.com/microsoft/opentelemetry-distro-python/pull/155))
26+
- Add 30s timeout to FIC token resolver MSAL calls
27+
([#150](https://github.com/microsoft/opentelemetry-distro-python/pull/150))
28+
29+
### Other Changes
30+
- Add project URLs to PyPI and fix broken relative links
31+
([#169](https://github.com/microsoft/opentelemetry-distro-python/pull/169))
32+
- Add pytest-benchmark suite and PR regression gate
33+
([#165](https://github.com/microsoft/opentelemetry-distro-python/pull/165))
34+
- Bump `mem0ai` from 1.0.11 to 2.0.0b2
35+
([#163](https://github.com/microsoft/opentelemetry-distro-python/pull/163))
36+
337
## 1.2.0 (2026-05-18)
438

539
### Features Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "microsoft-opentelemetry"
7-
version = "1.2.0"
7+
version = "1.3.0"
88
description = "Minimal template for the Microsoft OpenTelemetry distro for Python"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/microsoft/opentelemetry/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
VERSION = "1.2.0"
7+
VERSION = "1.3.0"

0 commit comments

Comments
 (0)