From c8396bb6fb90b0ed9e313792f8f9e3fb32def976 Mon Sep 17 00:00:00 2001 From: Radhika Gupta Date: Thu, 4 Jun 2026 14:45:29 -0700 Subject: [PATCH 1/3] ga release 1.3.3 --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d96844c..1a23ea7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Release History +# 1.3.3 (2026-06-04) + +### Features Added +- Add `ContextualTokenResolver` with agentic user ID support + ([#185](https://github.com/microsoft/opentelemetry-distro-python/pull/185)) +- Network SdkStats: add request success count metric + ([#144](https://github.com/microsoft/opentelemetry-distro-python/pull/144)) + +### Bugs Fixed +- Downgrade LangChain "not installed" log to DEBUG to silence stderr warnings for users not using LangChain + ([#184](https://github.com/microsoft/opentelemetry-distro-python/pull/184)) + +### Other Changes +- ci(perf): post sticky comment for fork PRs via `workflow_run` + ([#186](https://github.com/microsoft/opentelemetry-distro-python/pull/186)) + # 1.3.2 (2026-05-29) ### Bugs Fixed From cd210137e0db6f39b97ff259026f3b22bedf14ad Mon Sep 17 00:00:00 2001 From: Radhika Gupta Date: Mon, 8 Jun 2026 08:35:05 -0700 Subject: [PATCH 2/3] Update change logs and versions --- CHANGELOG.md | 6 +++++- pyproject.toml | 4 ++-- src/microsoft/opentelemetry/_version.py | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a23ea7c..f973aaa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -# 1.3.3 (2026-06-04) +# 1.3.3 (2026-06-08) ### Features Added - Add `ContextualTokenResolver` with agentic user ID support @@ -15,6 +15,10 @@ ### Other Changes - ci(perf): post sticky comment for fork PRs via `workflow_run` ([#186](https://github.com/microsoft/opentelemetry-distro-python/pull/186)) +- Refactor code to use upstream `SDKStatsManager` + ([#182](https://github.com/microsoft/opentelemetry-distro-python/pull/182)) +- Update docs with the contextual token resolver config + ([#190](https://github.com/microsoft/opentelemetry-distro-python/pull/190)) # 1.3.2 (2026-05-29) diff --git a/pyproject.toml b/pyproject.toml index 5c0c9064..561c54d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "microsoft-opentelemetry" -version = "1.3.2" +version = "1.3.3" description = "Minimal template for the Microsoft OpenTelemetry distro for Python" readme = "README.md" requires-python = ">=3.10" @@ -23,7 +23,7 @@ classifiers = [ dependencies = [ "azure-core<2.0.0,>=1.28.0", "azure-core-tracing-opentelemetry~=1.0.0b11", - "azure-monitor-opentelemetry-exporter~=1.0.0b52", + "azure-monitor-opentelemetry-exporter~=1.0.0b53", "opentelemetry-sdk==1.40", "opentelemetry-api==1.40", "opentelemetry-exporter-otlp-proto-http==1.40", diff --git a/src/microsoft/opentelemetry/_version.py b/src/microsoft/opentelemetry/_version.py index 855c15d3..75355669 100644 --- a/src/microsoft/opentelemetry/_version.py +++ b/src/microsoft/opentelemetry/_version.py @@ -4,4 +4,4 @@ # license information. # -------------------------------------------------------------------------- -VERSION = "1.3.2" +VERSION = "1.3.3" From f44f4db8f8f1d3ba4d915bb4bc41d57d4989bea2 Mon Sep 17 00:00:00 2001 From: Radhika Gupta Date: Mon, 8 Jun 2026 12:45:54 -0700 Subject: [PATCH 3/3] Update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f973aaa3..ebf192ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,14 @@ ([#185](https://github.com/microsoft/opentelemetry-distro-python/pull/185)) - Network SdkStats: add request success count metric ([#144](https://github.com/microsoft/opentelemetry-distro-python/pull/144)) +- Add remaining network sdkstats metrics for A365 + ([#192](https://github.com/microsoft/opentelemetry-distro-python/pull/192)) ### Bugs Fixed - Downgrade LangChain "not installed" log to DEBUG to silence stderr warnings for users not using LangChain ([#184](https://github.com/microsoft/opentelemetry-distro-python/pull/184)) +- Fix LangGraph content-block serialization in `gen_ai.output.messages` + ([#193](https://github.com/microsoft/opentelemetry-distro-python/pull/193)) ### Other Changes - ci(perf): post sticky comment for fork PRs via `workflow_run`