Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/microsoft/opentelemetry/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "1.3.2"
VERSION = "1.3.3"
Loading