diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d96844c..ebf192ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Release History +# 1.3.3 (2026-06-08) + +### 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)) +- 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` + ([#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) ### Bugs Fixed 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"