mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 00:02:31 +00:00
fix(mobile): two known main bugs the RPC migration preserved (#20563)
* fix(mobile): two known main bugs the RPC migration preserved
A malformed host `error` and a null settings result both reach a property read that throws.
Both are deliberate behaviour changes; the goldens move in the follow-up commit.
`hostReplyErrorTextOrFallback` passed a truthy non-string through under a `string` annotation.
Its one caller is the in-band `git.commit` failure, and every consumer of that text is display or
prompt copy: `use-mobile-create-pr-runner` and `PrSidebarCreateEmptyState` record it as a commit
failure, `use-mobile-commit-failure-recovery` hands it to `summarizeCommitFailure`, which starts
with `raw.slice(...).replace(...)`. So no consumer needs the value, and the decision is the
fallback rather than `String(value)` — the relay handler declares
`commit(): Promise<{ success: boolean; error?: string }>`, so a non-string is a malformed reply,
and `generatedCommitMessageReader` in the same domain already reads a non-string host error as
absent. The parameter stays `unknown`, which it honestly is, and the `SAFETY` cast is gone.
`useNewWorkspaceRuntimeContext` read settings through `settingsRead`, whose reader preserves
main's `boxed!.settings` throw, so a `null` or absent result threw a TypeError out of the effect —
losing the trusted-hooks publish and the available-provider computation that follow it, not just
the settings. It now uses `optionalSettingsRead`, the operation that already reads a null or
absent result as absent settings, so the reply degrades exactly the way a reply with no `settings`
member does. Reply-side only: same method, same params, same barrier, no wire change.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
* test(mobile): re-record the goldens the two bug fixes move
Baseline bumped to 3f71999237. Two goldens move an observation; the other 151 move only
`baseline` and `recorderSha256`, which `pilot-scenarios.json` is still digested into.
Observation moves, one claim each:
- `matrix-hostedreview.create-intent-git.commit-1`, partition `inner-false-object-error`:
`settlements.run.value.error` and `state.outcome.error` go from `{"message":"inner refused"}` to
`"Commit failed"`. A non-string in-band `git.commit` error is a malformed reply and now reads as
the screen's copy, converging with `result-absent`, `result-null` and `outer-refused-no-message`,
which already reported the fallback. The other ten partitions at this site are unchanged.
- `matrix-settings.workspace-context-settings.get-1`, partitions `result-null` and `result-absent`:
the `unhandled-rejection` TypeError effect (`reading 'settings'`) is gone and `state.providers`
goes from `[]` to `["github"]`. The effect no longer aborts the rest of the hook, so the
provider computation runs; `state.settings` stays null because nothing was published, which is
how a reply with no `settings` member already degraded. The other nine partitions are unchanged.
Header-only moves:
- 9 goldens of the `settings.workspace-context` family rename `namedDeltas` from
`new-workspace-runtime-context-null-settings-typeerror` — the name now lies, the TypeError is
fixed — to `new-workspace-runtime-context-null-settings-degrades-to-absent`.
- All 153 move `baseline` and `recorderSha256`. The digest covers `pilot-scenarios.json`, so the
baseline bump and the rename re-digest every file.
No sender recording moved: both fixes are reply-side, and no golden's `sender` or `payloads` field
differs. The README paragraph that claimed the settings TypeError was preserved is updated, and
now records that the `ui.get` leg of the same hook still is.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
* fix(mobile): degrade a null ui.get result the way the settings leg now does
One host answers both legs of useNewWorkspaceRuntimeContext, so fixing only
settings.get left the likelier failure in place: a null or absent ui.get result
still threw `reading 'ui'` out of the effect, skipping the provider commit.
Review follow-ups on the same files: reply() returns the literal uncast and the
stub client is FakeSession, dropping two assertions and their SAFETY disables;
the degradation cases now assert absolute state instead of comparing mounts.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
* test(mobile): re-record the goldens the ui.get leg fix moves
Observational move, 1 golden:
- matrix-settings.workspace-context-ui.get-1: the `result-absent` and
`result-null` partitions drop their `reading 'ui'` unhandled-rejection effect
and their state commits `providers: ["github"]` instead of `[]`, because the
effect no longer throws before the provider commit.
Header-only moves, 153 goldens: `baseline` to the fix commit and `recorderSha256`,
which covers `pilot-scenarios.json` and so re-digests on the delta rename.
The delta is renamed `new-workspace-runtime-context-null-settings-degrades-to-absent`
-> `new-workspace-runtime-context-null-results-degrade-to-absent` (9 goldens): it
now covers both reads, not just settings. README updated to match.
No sender recording moved: resolving the value pool across all 153 goldens shows
`sender` and `payloads` byte-identical everywhere.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
* refactor(mobile): name the ui.get result shape so the changed cast carries a rationale
The inline union wrapped over four lines and tripped the changed-code casting gate
as a new assertion; a named alias keeps the cast on one line under a SAFETY note.
No behaviour change.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
* test(mobile): repin the golden baseline to the cast-rationale commit
Header-only: `baseline` on all 153 goldens. The re-record is inert — no golden
moves observationally and no field other than `baseline` changes.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
* test(mobile): pin the ui.get trust blank, and correct two stale acceptance comments
The goldens cannot catch a regression to `if (uiResult?.result)`: the scenario's
success reply is `{"ui":{}}`, so every partition of
matrix-settings.workspace-context-ui.get-1 records the same `trust:{}` state. The
new case answers once with real trust and again with a null result on a fresh
client, which is the only shape where skipping the blank is observable —
trustedOrcaHooks gates the setup-hook approval prompt in
use-new-workspace-create-submit.ts, so a stale value would skip it.
settingsRead's comment still claimed workspace context, which this branch moved to
optionalSettingsRead; both comments now name their real callers.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
* test(mobile): repin the golden baseline to the trust-blank commit
The record fence rejected the previous pin ("Product sources or lockfile differ
from the pinned main baseline"), so the branch was no longer re-recordable.
Header-only: `baseline` and `recorderSha256` on all 153 goldens — the digest
covers pilot-scenarios.json, whose only edit is that baseline. The re-record is
inert: 0 goldens move observationally and no other field changes.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
* docs(mobile): name the right operation per refuse-after-data probe
Three of the five probes read through optionalSettingsRead, not settingsRead:
repo metadata and resume metadata already did, and workspace context does as of
this branch. The sentence now splits them and states why the split does not move
what the probes record.
Markdown is excluded from recorderSha256, so no re-record.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
* test(mobile): pin the recorder's unhandled-rejection capture
This branch removed the last two goldens that recorded an unhandled-rejection
effect, so nothing exercised unhandled-recording.ts any more: gutting the emit to
`void captureError(error)` leaves all 153 goldens comparing clean. The unit test
drives a detached rejection through the window and asserts both the effect and
the listener restore. README says so where it describes the capture.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
* test(mobile): re-digest the goldens for the new recorder test
Header-only: `recorderSha256` on all 153 goldens, which covers every non-markdown
file under rpc-recording/ and so moves for the added test file. The re-record is
inert: 0 goldens move observationally and no other field changes.
Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
This commit is contained in:
@@ -3,9 +3,9 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "project-explicit-false",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "linear-detail-barrier",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.bot-overrides",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "linear-detail-barrier",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.bot-overrides",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.task-hydration",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"operation": "settings.workspace-context",
|
||||
"family": "settings.workspace-context",
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-settings-typeerror"],
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.base-ref-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.base-ref-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.base-ref-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "git.commit-message-ai",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.history-read",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.remote-prerequisite",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.review-preparation",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+10
-121
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
@@ -536,60 +536,6 @@
|
||||
"name": "git.bulkStage#1",
|
||||
"json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}"
|
||||
},
|
||||
"33282210f096": {
|
||||
"outcome": {
|
||||
"commitMessage": "feat: recorded",
|
||||
"committed": false,
|
||||
"error": {
|
||||
"message": "inner refused"
|
||||
},
|
||||
"ok": false,
|
||||
"status": {
|
||||
"branch": "feature",
|
||||
"conflictOperation": "unknown",
|
||||
"entries": [
|
||||
{
|
||||
"added": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"area": "staged",
|
||||
"conflictKind": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"conflictStatus": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"conflictStatusSource": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"oldPath": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"path": "src/app.ts",
|
||||
"removed": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"status": "modified"
|
||||
}
|
||||
],
|
||||
"head": "abc1234",
|
||||
"upstreamStatus": {
|
||||
"ahead": 1,
|
||||
"behind": 0,
|
||||
"behindCommitsArePatchEquivalent": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"hasConfiguredPushTarget": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"hasUpstream": true,
|
||||
"upstreamName": {
|
||||
"$rpc": "undefined"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"368b0b9ce80a": {
|
||||
"name": "progress",
|
||||
"value": "staging"
|
||||
@@ -1322,63 +1268,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"85e126c40505": {
|
||||
"status": "fulfilled",
|
||||
"startedAt": 0,
|
||||
"settledAt": 0,
|
||||
"value": {
|
||||
"commitMessage": "feat: recorded",
|
||||
"committed": false,
|
||||
"error": {
|
||||
"message": "inner refused"
|
||||
},
|
||||
"ok": false,
|
||||
"status": {
|
||||
"branch": "feature",
|
||||
"conflictOperation": "unknown",
|
||||
"entries": [
|
||||
{
|
||||
"added": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"area": "staged",
|
||||
"conflictKind": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"conflictStatus": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"conflictStatusSource": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"oldPath": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"path": "src/app.ts",
|
||||
"removed": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"status": "modified"
|
||||
}
|
||||
],
|
||||
"head": "abc1234",
|
||||
"upstreamStatus": {
|
||||
"ahead": 1,
|
||||
"behind": 0,
|
||||
"behindCommitsArePatchEquivalent": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"hasConfiguredPushTarget": {
|
||||
"$rpc": "undefined"
|
||||
},
|
||||
"hasUpstream": true,
|
||||
"upstreamName": {
|
||||
"$rpc": "undefined"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"8b784bb9dff5": {
|
||||
"status": "fulfilled",
|
||||
"startedAt": 0,
|
||||
@@ -2691,9 +2580,9 @@
|
||||
"2af3debae21a"
|
||||
],
|
||||
"settlements": {
|
||||
"run": "85e126c40505"
|
||||
"run": "2e35579e2fc7"
|
||||
},
|
||||
"state": "33282210f096",
|
||||
"state": "2c921c059023",
|
||||
"effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"]
|
||||
}
|
||||
},
|
||||
@@ -2715,9 +2604,9 @@
|
||||
"2af3debae21a"
|
||||
],
|
||||
"settlements": {
|
||||
"run": "85e126c40505"
|
||||
"run": "2e35579e2fc7"
|
||||
},
|
||||
"state": "33282210f096",
|
||||
"state": "2c921c059023",
|
||||
"effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"]
|
||||
}
|
||||
},
|
||||
@@ -2739,9 +2628,9 @@
|
||||
"2af3debae21a"
|
||||
],
|
||||
"settlements": {
|
||||
"run": "85e126c40505"
|
||||
"run": "2e35579e2fc7"
|
||||
},
|
||||
"state": "33282210f096",
|
||||
"state": "2c921c059023",
|
||||
"effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"]
|
||||
}
|
||||
},
|
||||
@@ -2763,9 +2652,9 @@
|
||||
"2af3debae21a"
|
||||
],
|
||||
"settlements": {
|
||||
"run": "85e126c40505"
|
||||
"run": "2e35579e2fc7"
|
||||
},
|
||||
"state": "33282210f096",
|
||||
"state": "2c921c059023",
|
||||
"effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"]
|
||||
}
|
||||
},
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.eligibility",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "linear-detail-barrier",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "linear-detail-barrier",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "project-explicit-false",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "session.tab-reveal",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "session.tab-reveal",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "settings-agent-read",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings-agent-read",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings-agent-read",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings-best-effort",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.bot-overrides",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.home-providers",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.home-providers",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.home-providers",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.repo-metadata",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.repo-metadata",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.repo-metadata",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "settings.repo-metadata",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "settings.resume-metadata",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
"family": "settings.resume-metadata",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.resume-metadata",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.resume-metadata",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.resume-metadata",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.task-hydration",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.task-hydration",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.task-hydration",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.task-hydration",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.task-hydration",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.task-workspace",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"operation": "settings.workspace-context",
|
||||
"family": "settings.workspace-context",
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-settings-typeerror"],
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"operation": "settings.workspace-context",
|
||||
"family": "settings.workspace-context",
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-settings-typeerror"],
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
+7
-23
@@ -1,24 +1,16 @@
|
||||
{
|
||||
"operation": "settings.workspace-context",
|
||||
"family": "settings.workspace-context",
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-settings-typeerror"],
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
"goldenFormatVersion": 3,
|
||||
"values": {
|
||||
"045f11564884": {
|
||||
"name": "unhandled-rejection",
|
||||
"value": {
|
||||
"category": "TypeError",
|
||||
"isRpcDeliveryUnknown": false,
|
||||
"message": "Cannot read properties of null (reading 'settings')"
|
||||
}
|
||||
},
|
||||
"090c88478661": {
|
||||
"name": "settings.get#1",
|
||||
"args": [
|
||||
@@ -293,14 +285,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"4fdb20ad5654": {
|
||||
"name": "unhandled-rejection",
|
||||
"value": {
|
||||
"category": "TypeError",
|
||||
"isRpcDeliveryUnknown": false,
|
||||
"message": "Cannot read properties of undefined (reading 'settings')"
|
||||
}
|
||||
},
|
||||
"563e4c82b345": {
|
||||
"name": "preflight.check#1",
|
||||
"args": [
|
||||
@@ -682,8 +666,8 @@
|
||||
"settlements": {
|
||||
"mount": "eb79a9b3682a"
|
||||
},
|
||||
"state": "f6a09f8c5b85",
|
||||
"effects": ["4fdb20ad5654"]
|
||||
"state": "3a834cb85dd8",
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -694,8 +678,8 @@
|
||||
"settlements": {
|
||||
"mount": "eb79a9b3682a"
|
||||
},
|
||||
"state": "f6a09f8c5b85",
|
||||
"effects": ["045f11564884"]
|
||||
"state": "3a834cb85dd8",
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
{
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"operation": "settings.workspace-context",
|
||||
"family": "settings.workspace-context",
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-settings-typeerror"],
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
@@ -97,14 +97,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"0d56880d8286": {
|
||||
"name": "unhandled-rejection",
|
||||
"value": {
|
||||
"category": "TypeError",
|
||||
"isRpcDeliveryUnknown": false,
|
||||
"message": "Cannot read properties of undefined (reading 'ui')"
|
||||
}
|
||||
},
|
||||
"0fb6ff3590e2": {
|
||||
"name": "preflight.check#1",
|
||||
"json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}"
|
||||
@@ -377,14 +369,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"78b8435a485f": {
|
||||
"name": "unhandled-rejection",
|
||||
"value": {
|
||||
"category": "TypeError",
|
||||
"isRpcDeliveryUnknown": false,
|
||||
"message": "Cannot read properties of null (reading 'ui')"
|
||||
}
|
||||
},
|
||||
"822040616fbb": {
|
||||
"name": "settings.get#1",
|
||||
"args": [
|
||||
@@ -461,17 +445,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"8a63b85fee0c": {
|
||||
"providers": [],
|
||||
"settings": {
|
||||
"defaultTuiAgent": "codex",
|
||||
"disabledTuiAgents": ["claude"],
|
||||
"hostSettingOverrides": {},
|
||||
"prBotAuthorOverrides": ["bot-user"],
|
||||
"visibleTaskProviders": ["github", "linear"]
|
||||
},
|
||||
"trust": {}
|
||||
},
|
||||
"8be416d0b1ef": {
|
||||
"name": "ui.get#1",
|
||||
"args": [
|
||||
@@ -686,8 +659,8 @@
|
||||
"settlements": {
|
||||
"mount": "eb79a9b3682a"
|
||||
},
|
||||
"state": "8a63b85fee0c",
|
||||
"effects": ["0d56880d8286"]
|
||||
"state": "2a7485a88169",
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -698,8 +671,8 @@
|
||||
"settlements": {
|
||||
"mount": "eb79a9b3682a"
|
||||
},
|
||||
"state": "8a63b85fee0c",
|
||||
"effects": ["78b8435a485f"]
|
||||
"state": "2a7485a88169",
|
||||
"effects": []
|
||||
}
|
||||
},
|
||||
{
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings.workspace-submit",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "worktree.review-link",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings-agent-read",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings-agent-read",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings-agent-read",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "settings-agent-read",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.base-ref-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.base-ref-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.base-ref-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.base-ref-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.commit-message-ai",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.commit-message-ai",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.commit-message-ai",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-intent",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.create-chain",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.eligibility",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.history-read",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "worktree.review-link",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "worktree.review-link",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "worktree.review-link",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.eligibility",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "hostedReview.eligibility",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.remote-prerequisite",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.remote-prerequisite",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"family": "git.remote-prerequisite",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "16d1ab81d3fd08e342b2f0ac0cc6f9e4aea4aaee",
|
||||
"baseline": "5ec0b2698fbb74574650d21f96ccef8d4cb33d4f",
|
||||
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
|
||||
"recorderSha256": "6a12160a87ceab04e74198f6dd35b8cf9125794222ee95cf6ca1872f29849960",
|
||||
"recorderSha256": "70aa6f59e01f8195ab8512a6fb4834315f54b64fa8009d377a45d271422bcf6b",
|
||||
"platform": "darwin",
|
||||
"scenarioVersion": 1,
|
||||
"projectionVersion": 2,
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user