pulumi/pkg/backend/display/testdata/not-truncated
Aaron Friel c9c679f0d4
Add API support for rendering a rich diff for Copilot (#17084)
Reviewers should note this PR is in two commits.

Updates the progress display to support deterministic output without
rendering each in-progress frame, called "plain" output in the tests
below.

The CLI should now render tree views more consistently: implementing
this test required fixing a non-deterministic ordering bug that affected
all tree renders. This bug was caused by iterating over a map to
determine the row order, however Go does not guarantee a consistent
order when iterating over a map. Now insertions into the tree are
ordered by URN, which should be deterministic.

Benchmarks are added to measure timing and memory usage of progress
displays, as we intend to use this rendering mode with Pulumi Copilot.

On this laptop the slowest test, `template-body.json`, has its results
reported below.

The new "plain" output is the fastest by an order of magnitude - and
this scaling factor improves as the size of the test grows. While
"plain" here is 15 to 20x faster than the other modes, in shorter tests
it is only 2 to 4x faster. Peak heap usage and allocations are also
reduced by rendering only the last frame, though not as dramatically.

```
goos: linux
goarch: amd64
pkg: github.com/pulumi/pulumi/pkg/v3/backend/display
cpu: 11th Gen Intel(R) Core(TM) i7-11370H @ 3.30GHz
BenchmarkProgressEvents
BenchmarkProgressEvents/template-body.jsoninteractive/80x24/raw-8         12	  91473186 ns/op	11745682 B/op	  223168 allocs/op
BenchmarkProgressEvents/template-body.jsoninteractive/80x24/cooked-8       8	 134639710 ns/op	16078474 B/op	  269443 allocs/op
BenchmarkProgressEvents/template-body.jsoninteractive/80x24/plain-8      152	   7999863 ns/op	 2952236 B/op	   52725 allocs/op
BenchmarkProgressEvents/template-body.jsoninteractive/100x80/raw-8         8	 142099499 ns/op	14636003 B/op	  239221 allocs/op
BenchmarkProgressEvents/template-body.jsoninteractive/100x80/cooked-8      7	 147865799 ns/op	17260515 B/op	  275864 allocs/op
BenchmarkProgressEvents/template-body.jsoninteractive/100x80/plain-8     147	   7874586 ns/op	 2960121 B/op	   52782 allocs/op
BenchmarkProgressEvents/template-body.jsoninteractive/200x80/raw-8         8	 128632367 ns/op	14650076 B/op	  239220 allocs/op
BenchmarkProgressEvents/template-body.jsoninteractive/200x80/cooked-8      7	 149342244 ns/op	18052901 B/op	  284310 allocs/op
BenchmarkProgressEvents/template-body.jsoninteractive/200x80/plain-8     144	   7999831 ns/op	 2962243 B/op	   52784 allocs/op
BenchmarkProgressEvents/template-body.jsonnon-interactive-8              178	   6662351 ns/op	 2877507 B/op	   51378 allocs/op
```

Also adds a "ShowResourceChanges" option to the progress display, which
when set adds a section showing resource diffs. The updated test data
shows examples. This combines the tree view with more detailed
information about the changes made, albeit more compactly. This change
is intended to be consumed by Pulumi Copilot, and so is not enabled for
the CLI at this time.

Each commit of this PR implements these features separately.
2024-08-29 01:20:21 +00:00
..
failed-stacks-dont-rewrite-operations.json Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
failed-stacks-dont-rewrite-operations.json.create-diff.txt Fix rendering of output events in rendering update diffs (#17029) 2024-08-27 18:37:03 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-80x24-cooked.stderr.txt Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-80x24-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-80x24-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-80x24-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-80x24.stderr.txt Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-80x24.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-100x80-cooked.stderr.txt Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-100x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-100x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-100x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-100x80.stderr.txt Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-100x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-200x80-cooked.stderr.txt Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-200x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-200x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-200x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-200x80.stderr.txt Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
failed-stacks-dont-rewrite-operations.json.interactive-200x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
failed-stacks-dont-rewrite-operations.json.non-interactive.stderr.txt Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
failed-stacks-dont-rewrite-operations.json.non-interactive.stdout.txt Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
failed-stacks-dont-rewrite-operations.json.stderr.txt Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
failed-stacks-dont-rewrite-operations.json.stdout.txt Don't rewrite step operations following failure (#16292) 2024-05-31 10:48:07 +00:00
stack-output-resource-diff.json add a test 2023-06-01 13:55:36 +02:00
stack-output-resource-diff.json.create-diff.txt Fix rendering of output events in rendering update diffs (#17029) 2024-08-27 18:37:03 +00:00
stack-output-resource-diff.json.interactive-80x24-cooked.stderr.txt add a test 2023-06-01 13:55:36 +02:00
stack-output-resource-diff.json.interactive-80x24-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
stack-output-resource-diff.json.interactive-80x24-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
stack-output-resource-diff.json.interactive-80x24-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
stack-output-resource-diff.json.interactive-80x24.stderr.txt add a test 2023-06-01 13:55:36 +02:00
stack-output-resource-diff.json.interactive-80x24.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
stack-output-resource-diff.json.interactive-100x80-cooked.stderr.txt add a test 2023-06-01 13:55:36 +02:00
stack-output-resource-diff.json.interactive-100x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
stack-output-resource-diff.json.interactive-100x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
stack-output-resource-diff.json.interactive-100x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
stack-output-resource-diff.json.interactive-100x80.stderr.txt add a test 2023-06-01 13:55:36 +02:00
stack-output-resource-diff.json.interactive-100x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
stack-output-resource-diff.json.interactive-200x80-cooked.stderr.txt add a test 2023-06-01 13:55:36 +02:00
stack-output-resource-diff.json.interactive-200x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
stack-output-resource-diff.json.interactive-200x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
stack-output-resource-diff.json.interactive-200x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
stack-output-resource-diff.json.interactive-200x80.stderr.txt add a test 2023-06-01 13:55:36 +02:00
stack-output-resource-diff.json.interactive-200x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
stack-output-resource-diff.json.non-interactive.stderr.txt add a test 2023-06-01 13:55:36 +02:00
stack-output-resource-diff.json.non-interactive.stdout.txt Policy remediations feature (#14080) 2023-10-09 18:31:17 +00:00
stack-output-resource-diff.json.stderr.txt add a test 2023-06-01 13:55:36 +02:00
stack-output-resource-diff.json.stdout.txt Don't use printf without a fixed format string 2023-06-21 11:44:06 +01:00
template-body.json Display text-based diff if yaml/json diff is semantically equal 2023-01-17 17:04:41 -08:00
template-body.json.create-diff.txt Fix rendering of output events in rendering update diffs (#17029) 2024-08-27 18:37:03 +00:00
template-body.json.interactive-80x24-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
template-body.json.interactive-80x24-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
template-body.json.interactive-80x24-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
template-body.json.interactive-80x24-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
template-body.json.interactive-80x24.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
template-body.json.interactive-80x24.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
template-body.json.interactive-100x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
template-body.json.interactive-100x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
template-body.json.interactive-100x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
template-body.json.interactive-100x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
template-body.json.interactive-100x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
template-body.json.interactive-100x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
template-body.json.interactive-200x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
template-body.json.interactive-200x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
template-body.json.interactive-200x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
template-body.json.interactive-200x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
template-body.json.interactive-200x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
template-body.json.interactive-200x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
template-body.json.non-interactive.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
template-body.json.non-interactive.stdout.txt Policy remediations feature (#14080) 2023-10-09 18:31:17 +00:00
template-body.json.stderr.txt Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
template-body.json.stdout.txt Never show property diffs for OpSame (#16024) 2024-05-02 12:28:43 +00:00
up-2.json Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
up-2.json.create-diff.txt Fix rendering of output events in rendering update diffs (#17029) 2024-08-27 18:37:03 +00:00
up-2.json.interactive-80x24-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-2.json.interactive-80x24-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-2.json.interactive-80x24-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-2.json.interactive-80x24-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-2.json.interactive-80x24.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-2.json.interactive-80x24.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-2.json.interactive-100x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-2.json.interactive-100x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-2.json.interactive-100x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-2.json.interactive-100x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-2.json.interactive-100x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-2.json.interactive-100x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-2.json.interactive-200x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-2.json.interactive-200x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-2.json.interactive-200x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-2.json.interactive-200x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-2.json.interactive-200x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-2.json.interactive-200x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-2.json.non-interactive.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-2.json.non-interactive.stdout.txt Policy remediations feature (#14080) 2023-10-09 18:31:17 +00:00
up-2.json.stderr.txt Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
up-2.json.stdout.txt Never show property diffs for OpSame (#16024) 2024-05-02 12:28:43 +00:00
up-3.json Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
up-3.json.create-diff.txt Fix rendering of output events in rendering update diffs (#17029) 2024-08-27 18:37:03 +00:00
up-3.json.interactive-80x24-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-3.json.interactive-80x24-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-3.json.interactive-80x24-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-3.json.interactive-80x24-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-3.json.interactive-80x24.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-3.json.interactive-80x24.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-3.json.interactive-100x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-3.json.interactive-100x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-3.json.interactive-100x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-3.json.interactive-100x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-3.json.interactive-100x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-3.json.interactive-100x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-3.json.interactive-200x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-3.json.interactive-200x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-3.json.interactive-200x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-3.json.interactive-200x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-3.json.interactive-200x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-3.json.interactive-200x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-3.json.non-interactive.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-3.json.non-interactive.stdout.txt Policy remediations feature (#14080) 2023-10-09 18:31:17 +00:00
up-3.json.stderr.txt Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
up-3.json.stdout.txt Don't use printf without a fixed format string 2023-06-21 11:44:06 +01:00
up-4.json Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
up-4.json.create-diff.txt Fix rendering of output events in rendering update diffs (#17029) 2024-08-27 18:37:03 +00:00
up-4.json.interactive-80x24-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-4.json.interactive-80x24-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-4.json.interactive-80x24-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-4.json.interactive-80x24-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-4.json.interactive-80x24.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-4.json.interactive-80x24.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-4.json.interactive-100x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-4.json.interactive-100x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-4.json.interactive-100x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-4.json.interactive-100x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-4.json.interactive-100x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-4.json.interactive-100x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-4.json.interactive-200x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-4.json.interactive-200x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-4.json.interactive-200x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-4.json.interactive-200x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-4.json.interactive-200x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-4.json.interactive-200x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-4.json.non-interactive.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-4.json.non-interactive.stdout.txt Policy remediations feature (#14080) 2023-10-09 18:31:17 +00:00
up-4.json.stderr.txt Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
up-4.json.stdout.txt Never show property diffs for OpSame (#16024) 2024-05-02 12:28:43 +00:00
up-5.json Display outputs last in diff view (#10535) 2022-09-01 12:09:54 -07:00
up-5.json.create-diff.txt Fix rendering of output events in rendering update diffs (#17029) 2024-08-27 18:37:03 +00:00
up-5.json.interactive-80x24-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-5.json.interactive-80x24-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-5.json.interactive-80x24-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-5.json.interactive-80x24-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-5.json.interactive-80x24.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-5.json.interactive-80x24.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-5.json.interactive-100x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-5.json.interactive-100x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-5.json.interactive-100x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-5.json.interactive-100x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-5.json.interactive-100x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-5.json.interactive-100x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-5.json.interactive-200x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-5.json.interactive-200x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up-5.json.interactive-200x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-5.json.interactive-200x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up-5.json.interactive-200x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-5.json.interactive-200x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up-5.json.non-interactive.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up-5.json.non-interactive.stdout.txt Never show property diffs for OpSame (#16024) 2024-05-02 12:28:43 +00:00
up-5.json.stderr.txt Display outputs last in diff view (#10535) 2022-09-01 12:09:54 -07:00
up-5.json.stdout.txt Never show property diffs for OpSame (#16024) 2024-05-02 12:28:43 +00:00
up.json Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
up.json.create-diff.txt Fix rendering of output events in rendering update diffs (#17029) 2024-08-27 18:37:03 +00:00
up.json.interactive-80x24-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up.json.interactive-80x24-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up.json.interactive-80x24-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up.json.interactive-80x24-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up.json.interactive-80x24.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up.json.interactive-80x24.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up.json.interactive-100x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up.json.interactive-100x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up.json.interactive-100x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up.json.interactive-100x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up.json.interactive-100x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up.json.interactive-100x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up.json.interactive-200x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up.json.interactive-200x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
up.json.interactive-200x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up.json.interactive-200x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
up.json.interactive-200x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up.json.interactive-200x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
up.json.non-interactive.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
up.json.non-interactive.stdout.txt Never show property diffs for OpSame (#16024) 2024-05-02 12:28:43 +00:00
up.json.stderr.txt Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
up.json.stdout.txt Never show property diffs for OpSame (#16024) 2024-05-02 12:28:43 +00:00
url-encoded-stack-output-diff.json Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
url-encoded-stack-output-diff.json.create-diff.txt Fix rendering of output events in rendering update diffs (#17029) 2024-08-27 18:37:03 +00:00
url-encoded-stack-output-diff.json.interactive-80x24-cooked.stderr.txt Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
url-encoded-stack-output-diff.json.interactive-80x24-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
url-encoded-stack-output-diff.json.interactive-80x24-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
url-encoded-stack-output-diff.json.interactive-80x24-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
url-encoded-stack-output-diff.json.interactive-80x24.stderr.txt Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
url-encoded-stack-output-diff.json.interactive-80x24.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
url-encoded-stack-output-diff.json.interactive-100x80-cooked.stderr.txt Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
url-encoded-stack-output-diff.json.interactive-100x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
url-encoded-stack-output-diff.json.interactive-100x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
url-encoded-stack-output-diff.json.interactive-100x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
url-encoded-stack-output-diff.json.interactive-100x80.stderr.txt Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
url-encoded-stack-output-diff.json.interactive-100x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
url-encoded-stack-output-diff.json.interactive-200x80-cooked.stderr.txt Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
url-encoded-stack-output-diff.json.interactive-200x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
url-encoded-stack-output-diff.json.interactive-200x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
url-encoded-stack-output-diff.json.interactive-200x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
url-encoded-stack-output-diff.json.interactive-200x80.stderr.txt Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
url-encoded-stack-output-diff.json.interactive-200x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
url-encoded-stack-output-diff.json.non-interactive.stderr.txt Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
url-encoded-stack-output-diff.json.non-interactive.stdout.txt Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
url-encoded-stack-output-diff.json.stderr.txt Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
url-encoded-stack-output-diff.json.stdout.txt Fix mangled diffs of strings containing url-encoded chars (#16147) 2024-05-08 08:23:40 +00:00
webserver-userdata.json Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
webserver-userdata.json.create-diff.txt Fix rendering of output events in rendering update diffs (#17029) 2024-08-27 18:37:03 +00:00
webserver-userdata.json.interactive-80x24-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
webserver-userdata.json.interactive-80x24-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
webserver-userdata.json.interactive-80x24-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
webserver-userdata.json.interactive-80x24-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
webserver-userdata.json.interactive-80x24.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
webserver-userdata.json.interactive-80x24.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
webserver-userdata.json.interactive-100x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
webserver-userdata.json.interactive-100x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
webserver-userdata.json.interactive-100x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
webserver-userdata.json.interactive-100x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
webserver-userdata.json.interactive-100x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
webserver-userdata.json.interactive-100x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
webserver-userdata.json.interactive-200x80-cooked.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
webserver-userdata.json.interactive-200x80-cooked.stdout.txt Refactor and fix bug in progress_test (#17079) 2024-08-28 23:18:24 +00:00
webserver-userdata.json.interactive-200x80-plain.stderr.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
webserver-userdata.json.interactive-200x80-plain.stdout.txt Add API support for rendering a rich diff for Copilot (#17084) 2024-08-29 01:20:21 +00:00
webserver-userdata.json.interactive-200x80.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
webserver-userdata.json.interactive-200x80.stdout.txt Clean up display rewinding and wrapping (#17007) 2024-08-19 15:30:48 +00:00
webserver-userdata.json.non-interactive.stderr.txt [cli] Abstract out terminal interactions 2022-11-08 17:13:56 -08:00
webserver-userdata.json.non-interactive.stdout.txt Policy remediations feature (#14080) 2023-10-09 18:31:17 +00:00
webserver-userdata.json.stderr Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
webserver-userdata.json.stderr.txt Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
webserver-userdata.json.stdout Truncate long stack outputs (#10021) 2022-07-12 11:24:21 -07:00
webserver-userdata.json.stdout.txt Never show property diffs for OpSame (#16024) 2024-05-02 12:28:43 +00:00