mirror of
https://github.com/stablyai/orca.git
synced 2026-09-23 16:02:24 +00:00
fix(mobile): catch the diff-comments loader rejection at the effect (OTA phase C follow-up) (#22111)
* fix(mobile): catch the diff-comments loader rejection at the effect `use-mobile-session-diff-comments.ts` ran `void loadDiffComments()` with no catch, so a *rejected* `worktree.show` raised an unhandled rejection on every session mount: a document-level error, not a page fault, and a red herring in crash reports and device proofs. The catch goes at the effect rather than inside the loader, whose promise the recording adapter awaits. `config/scripts/mobile-web-app-session-render.test.mjs` pinned the page's error list to exactly that one rejection; it is now the empty list, which is what makes the browser proof notice the fix. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-record goldens without the diff-comments rejection The corpus certified the unhandled rejection the commit before removes, so the golden had to move with it. Scoped re-record: `baseline` bumped by editing that one line, then `--record`. Every diff line classified: - `baseline`, 788 lines (787 goldens + `pilot-scenarios.json`), and nothing else in 786 of them. - `matrix-session.diff-notes-worktree.show-1.json`, the only golden with a substantive change: three `unhandled-rejection` effects leave the pool (`da8252771fbd` incompatible_reply, `d638e32b9559` transport failure, `cf4fa55e3a8d` empty) and the four checkpoints that carried them now read `"effects": []`. No renumbering; no other effect key moved. - `HEAD_EFFECT_SHA256` to the measured `cc25f370…ebe522`. The 24-effect count is unchanged. `recorderSha256`, `lockfileSha256` and `adapterSha256` all hold. `baseline` is a branch commit, so a repin to main follows the squash. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb
This commit is contained in:
@@ -24,23 +24,21 @@ import {
|
||||
* cannot say any of it, because they mock react-native away — it is Flow source vitest will not
|
||||
* parse.
|
||||
*
|
||||
* Two defects this file found, both invisible natively and both a console line rather than a crash.
|
||||
* One is fixed in the commit beside it and one is reported rather than fixed:
|
||||
* Two defects this file found, both invisible natively and both a console line rather than a crash,
|
||||
* and both now fixed:
|
||||
*
|
||||
* - **Fixed.** `use-mobile-session-markdown-actions.ts` registered `BackHandler` with no platform
|
||||
* guard, and the effect re-registers whenever the dirty-draft list changes. React Native Web
|
||||
* answers with "BackHandler is not supported on web and should not be used." and an inert
|
||||
* subscription: two lines on the console at mount, and a hardware-back guard never armed anyway.
|
||||
* - **Reported.** `use-mobile-session-diff-comments.ts` runs `void loadDiffComments()` in an effect
|
||||
* with no catch. The loader returns on a *refused* `worktree.show` and nothing catches a
|
||||
* *rejected* one, so a host that will not answer raises an unhandled rejection on every session
|
||||
* mount. `.catch` is the fix and it is one line, but the corpus certifies the rejection —
|
||||
* `matrix-session.diff-notes-worktree.show-1` lists it as an effect of the loaded checkpoint — so
|
||||
* fixing it is a golden re-record and a review event rather than something this lane lands.
|
||||
* - `use-mobile-session-markdown-actions.ts` registered `BackHandler` with no platform guard, and
|
||||
* the effect re-registers whenever the dirty-draft list changes. React Native Web answers with
|
||||
* "BackHandler is not supported on web and should not be used." and an inert subscription: two
|
||||
* lines on the console at mount, and a hardware-back guard never armed anyway.
|
||||
* - `use-mobile-session-diff-comments.ts` ran `void loadDiffComments()` in an effect with no catch.
|
||||
* The loader returns on a *refused* `worktree.show` and nothing caught a *rejected* one, so a
|
||||
* host that will not answer raised an unhandled rejection on every session mount. `.catch` at the
|
||||
* effect is the fix, and it moved a golden: the corpus certified the rejection as an effect of the
|
||||
* loaded checkpoint, so `matrix-session.diff-notes-worktree.show-1` was re-recorded without it.
|
||||
*
|
||||
* So the error assertion below is an exact list rather than `toEqual([])` or a filter: that one
|
||||
* rejection and nothing else. A second error reds it, and so does the rejection going away, which
|
||||
* is what makes this file the place the fix is noticed when it lands.
|
||||
* So the error assertion below is an exact empty list rather than a filter: nothing from this
|
||||
* closure reaches the document, and any error at all reds it.
|
||||
*
|
||||
* **The terminal is not painted here, and this file must not look as though it is.** Putting a
|
||||
* terminal on screen needs the host protocol handshake, a tab snapshot, a terminal inventory and a
|
||||
@@ -198,15 +196,6 @@ async function openRoute(route, awaitText) {
|
||||
/** The session header renders it, so the chrome is on screen before this reads the tree. */
|
||||
const BACK_LABEL = 'Back to worktrees'
|
||||
|
||||
/**
|
||||
* The one error this page is expected to produce, named in full.
|
||||
*
|
||||
* `use-mobile-session-diff-comments.ts`'s uncaught `loadDiffComments()` against a double that
|
||||
* answers no RPC. The category is the double's own, so this string is stable for this file and
|
||||
* says which refusal reached the document rather than only that something did.
|
||||
*/
|
||||
const KNOWN_UNCAUGHT = 'RenderCheckShellDouble: the render check answers no RPC'
|
||||
|
||||
describeRender(
|
||||
'the session route in a real browser',
|
||||
() => {
|
||||
@@ -219,10 +208,9 @@ describeRender(
|
||||
expect(text).toContain(key)
|
||||
}
|
||||
expect(text).not.toContain(UNMATCHED)
|
||||
// Exact, because this closure's defects are exactly console lines. The unguarded
|
||||
// `BackHandler` put two here and is fixed; the uncaught diff-notes rejection is the one
|
||||
// entry left and is a golden re-record away from going too.
|
||||
expect(opened.errors).toEqual([KNOWN_UNCAUGHT])
|
||||
// Exact, because this closure's defects are exactly console lines: the unguarded
|
||||
// `BackHandler` put two here and the uncaught diff-notes rejection one, and both are fixed.
|
||||
expect(opened.errors).toEqual([])
|
||||
await opened.page.close()
|
||||
}, 120_000)
|
||||
|
||||
@@ -268,8 +256,8 @@ describeRender(
|
||||
// Chromium reports a refused subresource as a console error naming the directive, so
|
||||
// anything this closure loaded that the policy blocked lands here.
|
||||
expect(opened.errors.filter((entry) => entry.includes('Content Security Policy'))).toEqual([])
|
||||
// And nothing else beyond the one rejection above, so this case reads the whole account.
|
||||
expect(opened.errors).toEqual([KNOWN_UNCAUGHT])
|
||||
// And nothing else at all, so this case reads the whole account and not only the policy.
|
||||
expect(opened.errors).toEqual([])
|
||||
// Stronger than the line above and independent of it: not one request left the origin, so
|
||||
// there is nothing for the policy to have refused. A font, a beacon or a provider image
|
||||
// added anywhere in this closure reds this.
|
||||
@@ -318,9 +306,4 @@ describeRender(
|
||||
* **The storage refusals.** A page write needs a control to make it. The refusal's own chain is
|
||||
* `mobile/src/session/mobile-structured-send-page-storage-refusal.test.ts` end to end over the
|
||||
* real `page-async-storage`.
|
||||
*
|
||||
* **That the one uncaught rejection is harmless.** It is not reported as a page fault — the shell's
|
||||
* `fault` notify is raised by the React boundary, and `__orcaRenderCheckFaults` is empty here — so
|
||||
* the generation is not dropped and the screen keeps working. What it costs is a document-level
|
||||
* error on every mount, which is a line in a crash report and a red herring in the device proof.
|
||||
*/
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.history",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "ec16931c5431d3dbb05729d4670c381a434bff71648d334b7b5224db188fdccb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.history",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "ec16931c5431d3dbb05729d4670c381a434bff71648d334b7b5224db188fdccb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.history",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "ec16931c5431d3dbb05729d4670c381a434bff71648d334b7b5224db188fdccb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.history-screen",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.history-screen",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-launch",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-launch",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-launch",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-launch",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-preparation",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-preparation",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-preparation",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-preparation",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "project-explicit-false",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "linear-detail-barrier",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.dialog",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.dialog",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.keyboard",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.pointer-click",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.pointer-click",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.wheel",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "clipboard.image-attachment",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "clipboard.image-attachment",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "clipboard.image-attachment",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "clipboard.image-attachment",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "clipboard.image-attachment",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "clipboard.image-upload",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "clipboard.image-upload",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "clipboard.image-upload",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "clipboard.image-upload",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "components.codex-reset-credit",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "components.codex-reset-credit",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "components.codex-reset-capability",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "components.setup-script",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "components.execution-target-local",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "components.execution-target",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "session.diff-review",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "session.diff-review",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "session.diff-review",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "session.diff-review",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "session.diff-review",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "session.diff-review",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "session.diff-review",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.terminal-path-tap",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.terminal-path-tap",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.terminal-path-tap",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.terminal-path-tap",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.terminal-path-tap",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.explorer-screen",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "7a42a348f4407b94cf75ac77a4b6b783b7d28103b1ae1d111d2708dab0dd4a0c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.explorer-screen",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "7a42a348f4407b94cf75ac77a4b6b783b7d28103b1ae1d111d2708dab0dd4a0c",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.mutation-ownership",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.mutation-ownership",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.preview-load",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.preview-artifact-image",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.preview-load",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.preview-load",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.preview-worktree-image",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.preview-load",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.preview-worktree-text",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.preview-load",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.preview-save",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.preview-save",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "files.tab-doc",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "home.host-accounts",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "c632fdbc4b730777ecb09f08bec14cca0586042b01ed99d40d0228806c7def4a",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "home.host-stats",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "host.view-settings",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "host.worktree-actions",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "host.worktree-actions",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "host-worktree-refresh",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "settings.bot-overrides",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "linear-detail-barrier",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "legacy-inventory",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "settings.bot-overrides",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "settings.task-hydration",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "settings.workspace-context",
|
||||
"namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "linear.select-workspace-picker",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "b65996c152b632d553a31e07e31ea5c76f998eada42cf0966923d730da21908f",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "live-worktree-name",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
"family": "agentSession.structured-create",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
"family": "agentSession.structured-create",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
"family": "agentSession.structured-launch",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.history",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "ec16931c5431d3dbb05729d4670c381a434bff71648d334b7b5224db188fdccb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.history-screen",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.history-screen",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.history-screen",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.history",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "ec16931c5431d3dbb05729d4670c381a434bff71648d334b7b5224db188fdccb",
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-launch",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-launch",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
"family": "aiVault.resume-preparation",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.dialog",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
"family": "browser.keyboard",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.keyboard",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
"family": "browser.pointer-click",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.pointer-click",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.pointer-click",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"family": "browser.pointer-click",
|
||||
"namedDeltas": [],
|
||||
"runnerVersion": 1,
|
||||
"baseline": "86b93e02a79fcd083de013e6df98516bedcace22",
|
||||
"baseline": "f9d4822204ce2d9236ae50bf82877a7d0cc3ac8e",
|
||||
"lockfileSha256": "2bc53d3e8628a9bb8cbc51288065161216ea577912ab91961d8b026982774a0f",
|
||||
"recorderSha256": "f67c2f5b753d2a4f572599f6861fae8e6e917fe89ac75b58288f8e84be609d86",
|
||||
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user