Update observability package dependencies and remove Azure Monitor exporter#219
Open
Update observability package dependencies and remove Azure Monitor exporter#219
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the monorepo dependency catalog/lockfile to newer OpenTelemetry, LangChain, and OpenAI package versions, and removes the unused Azure Monitor OpenTelemetry exporter from the workspace.
Changes:
- Removed
@azure/monitor-opentelemetry-exporterfrom relevant package manifests and the workspace catalog/lockfile. - Updated dependency catalog versions for OpenTelemetry, LangChain, and OpenAI packages and refreshed
pnpm-lock.yamlaccordingly.
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| tests/package.json | Drops the Azure Monitor exporter dependency from the tests workspace. |
| packages/agents-a365-observability/package.json | Drops the Azure Monitor exporter dependency from the observability package. |
| pnpm-workspace.yaml | Updates the shared catalog versions; removes Azure Monitor exporter from catalog; adds nested tests-agent workspace glob. |
| pnpm-lock.yaml | Re-locks the workspace after dependency updates/removal; adds importers for nested tests-agent sample projects. |
You can also share your feedback on Copilot code review. Take the survey.
904f2cd to
507527d
Compare
- Remove @azure/monitor-opentelemetry-exporter (unused package) - Update OpenTelemetry packages to latest versions (0.204.x -> 0.213.x, 2.1.x -> 2.6.x) - Update LangChain packages (1.2.3 -> 1.2.31, 1.1.8 -> 1.1.32, etc.) - Update OpenAI packages (4.8.0 -> 6.27.0, 0.4.0 -> 0.7.0) All packages build successfully, all 1,067 unit tests pass. Workspace configuration excludes nested test-agent samples (gitignored). Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
507527d to
d9b2b38
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 3 out of 4 changed files in this pull request and generated 1 comment.
You can also share your feedback on Copilot code review. Take the survey.
MattB-msft
approved these changes
Mar 12, 2026
sellakumaran
approved these changes
Mar 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates observability package dependencies and removes the unused Azure Monitor exporter package.
Changes
Removed:
@azure/monitor-opentelemetry-exporter(v1.0.0-beta.32) - not imported anywhere in the codebaseUpdated OpenTelemetry packages (8 packages):
@opentelemetry/core: 2.2.0 → 2.6.0@opentelemetry/exporter-trace-otlp-http: 0.205.0 → 0.213.0@opentelemetry/instrumentation: 0.204.0 → 0.213.0@opentelemetry/resources: 2.1.0 → 2.6.0@opentelemetry/sdk-node: 0.204.0 → 0.213.0@opentelemetry/sdk-trace-base: 2.1.0 → 2.6.0@opentelemetry/semantic-conventions: 1.37.0 → 1.40.0@opentelemetry/api: 1.9.0 (already latest)Updated LangChain packages (4 packages):
langchain: 1.2.3 → 1.2.31@langchain/core: 1.1.8 → 1.1.32@langchain/langgraph: 1.0.0 → 1.2.2@langchain/mcp-adapters: 1.1.1 → 1.1.3Updated OpenAI packages (4 packages):
openai: 4.8.0 → 6.27.0 (major version update)@openai/agents: 0.4.0 → 0.7.0@openai/agents-core: 0.4.0 → 0.7.0@openai/agents-openai: 0.4.0 → 0.7.0Workspace configuration:
tests-agent/tests-agent/*)Test Results
✅ All 9 SDK packages build successfully (both CJS and ESM)
✅ All 1,067 unit tests pass
✅ All lint checks pass
✅ OpenAI and Langchain sample builds and lints successfully and samples working locally
✅ No TypeScript compilation errors
Breaking Changes
None identified. All APIs remain compatible despite the OpenAI SDK major version jump from v4 to v6.
🤖 Generated with Claude Code