Revert to using fancier reporter except in slow terminals - #1212
Merged
Elizabeth Craig (ecraig12345) merged 3 commits intoAug 17, 2026
Conversation
Copilot started reviewing on behalf of
Elizabeth Craig (ecraig12345)
August 17, 2026 22:28
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Restores ProgressReporter as the default for interactive local runs while retaining BasicReporter for slower terminals.
Changes:
- Adds reporter selection based on terminal environment.
- Exposes
basicas a reporter option and updates tests/docs. - Removes the unused trace-reporter concurrency option.
Reviewed changes
Copilot reviewed 15 out of 17 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
yarn.lock |
Updates transitive dependencies. |
packages/reporters/src/ProgressReporter.ts |
Updates reporter documentation. |
packages/reporters/src/ChromeTraceEventsReporter.ts |
Removes unused concurrency option. |
packages/reporters/src/__tests__/ChromeTraceEventsReporter.test.ts |
Updates constructor usage. |
packages/reporters/etc/reporters.api.md |
Updates the public API report. |
packages/config/src/types/ConfigOptions.ts |
Clarifies reporter precedence. |
packages/cli/src/types/ReporterInitOptions.ts |
Adds the basic reporter name. |
packages/cli/src/commands/initializeReporters.ts |
Simplifies reporter-option normalization. |
packages/cli/src/commands/createReporter.ts |
Implements environment-based defaults. |
packages/cli/src/__tests__/initializeReporters.test.ts |
Updates the default-reporter test. |
packages/cli/src/__tests__/customReporter.test.ts |
Updates supported-reporter output. |
packages/cli/etc/cli.api.md |
Records the new reporter name. |
package.json |
Removes verbose output from root tests. |
lage.config.js |
Removes the local reporter override. |
docs/yarn.lock |
Updates documentation dependencies. |
docs/docs/reference/cli.md |
Documents reporter behavior. |
change/change-ad6a24c6-619b-43b1-9369-b9cca461cac8.json |
Adds release metadata. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Elizabeth Craig (ecraig12345)
merged commit Aug 17, 2026
e69b146
into
microsoft:main
15 checks passed
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.
#967 added a basic progress reporter which is very fast but doesn't show the running task names, which can be a source of confusion if a task is slow or entirely hangs (there's no way to see what is hanging).
This PR reverts to using the fancier progress reporter by default, except in known slow terminals (codespaces, SSH). This should be okay in most cases after #1097 which updated
@ms-cloudpack/task-reporterto pick up significant perf improvements.