Bump @opentelemetry/core and @vscode/extension-telemetry and fix TelemetryReporter import#26007
Open
dependabot[bot] wants to merge 3 commits into
Open
Bump @opentelemetry/core and @vscode/extension-telemetry and fix TelemetryReporter import#26007dependabot[bot] wants to merge 3 commits into
dependabot[bot] wants to merge 3 commits into
Conversation
Yoyokrazy
previously approved these changes
Jun 16, 2026
TylerLeonhardt
previously approved these changes
Jun 16, 2026
Removes [@opentelemetry/core](https://github.com/open-telemetry/opentelemetry-js). It's no longer used after updating ancestor dependency [@vscode/extension-telemetry](https://github.com/Microsoft/vscode-extension-telemetry). These dependencies need to be updated together. Removes `@opentelemetry/core` Updates `@vscode/extension-telemetry` from 0.8.4 to 1.5.2 - [Release notes](https://github.com/Microsoft/vscode-extension-telemetry/releases) - [Commits](microsoft/vscode-extension-telemetry@v0.8.4...v1.5.2) --- updated-dependencies: - dependency-name: "@opentelemetry/core" dependency-version: dependency-type: indirect - dependency-name: "@vscode/extension-telemetry" dependency-version: 1.5.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
78c6617
aff3ba4 to
78c6617
Compare
…nd ANSI error detection in gulp
Copilot
AI
changed the title
Bump @opentelemetry/core and @vscode/extension-telemetry
Bump @opentelemetry/core and @vscode/extension-telemetry and fix TelemetryReporter import
Jun 19, 2026
rzhao271
approved these changes
Jun 19, 2026
alexdima
approved these changes
Jun 19, 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.
Removes @opentelemetry/core. It's no longer used after updating ancestor dependency @vscode/extension-telemetry. These dependencies need to be updated together.
Removes
@opentelemetry/coreUpdates
@vscode/extension-telemetryfrom 0.8.4 to 1.5.2@vscode/extension-telemetryv1.5.2 changedTelemetryReporterfrom a default export to a named export. This PR also updates the import and runtime access in the extension source to match:src/client/telemetry/index.tsandsrc/client/browser/extension.ts: changedimport TelemetryReporter from '@vscode/extension-telemetry'toimport { TelemetryReporter } from '@vscode/extension-telemetry'and updatedrequire('@vscode/extension-telemetry').defaulttorequire('@vscode/extension-telemetry').TelemetryReporter.gulpfile.js: strip ANSI color escape codes from webpack stdout before checking forERROR in/WARNING inpatterns, so webpack build errors are correctly detected instead of being silently swallowed.