Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Azure Monitor Exporter] Updating OpenTelemetry API to 1.0.0 #15934

Merged
merged 6 commits into from
Jun 24, 2021
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
45 changes: 33 additions & 12 deletions common/config/rush/common-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,12 @@
// when there is a new beta version which is being maintained in the repo.
// Remove "^12.4.1" when the storage-blob releases a stable version.
// Add a new entry in case a new version is being tested through the perf tests (Example: "12.2.0").
"@azure/storage-blob": ["^12.4.1"],
"@azure/ms-rest-js": ["^2.0.0"],
"@azure/storage-blob": [
"^12.4.1"
],
"@azure/ms-rest-js": [
"^2.0.0"
],
/**
* For example, allow some projects to use an older TypeScript compiler
* (in addition to whatever "usual" version is being used by other projects in the repo):
Expand All @@ -55,24 +59,41 @@
// "~2.4.0"
// ]
// Following is required to allow for backward compatibility with Event Processor Host Track 1
"@azure/event-hubs": ["^2.1.4"],
// Monitor-opentelemetry-exporter and monitor-query both depend on different versions of @opentelemetry and need to be updated
"@opentelemetry/api": ["^0.18.1", "0.21.0"],
"@azure/event-hubs": [
"^2.1.4"
],
// Monitor: Allow node 10 types until Timeout / Timer conflict is resolved in OpenTelemetry repo
// TODO: remove when released https://github.com/open-telemetry/opentelemetry-js/pull/1352
// eslint v7.15 needs node v10.12
"@types/node": ["^10.0.0", "^10.12.0"],
"@types/node": [
"^10.0.0",
"^10.12.0"
],
// @azure/test-utils-perfstress should depend on lowest version of @azure/core-http for maximum compatibility, allowing test
// projects to choose a higher version if desired.
"@azure/core-http": ["^1.0.0"],
"@azure/core-http": [
"^1.0.0"
],
// @azure/event-processor-host is on a much lower major version
"@azure/ms-rest-nodeauth": ["^0.9.2"],
"@azure/ms-rest-nodeauth": [
"^0.9.2"
],
// Idenity is moving from v1 to v2. Moving all packages to v2 is going to take a bit of time, in the mean time we could use v2 on the perf-identity tests.
"@azure/identity": ["^2.0.0-beta.4", "2.0.0-beta.3", "^1.1.0"],
"@azure/identity": [
"^2.0.0-beta.4",
"2.0.0-beta.3",
"^1.1.0"
],
// Issue #14771 tracks updating to these versions
"@microsoft/api-extractor": ["7.13.2"],
"prettier": ["2.2.1"],
"@microsoft/api-extractor": [
"7.13.2"
],
"prettier": [
"2.2.1"
],
// @azure/cosmos was unable to upgrade due to test failures, Issue #15928 tracks making this upgrade
"@azure/core-rest-pipeline": ["^1.0.3"]
"@azure/core-rest-pipeline": [
"^1.0.3"
]
}
}
Loading