diff --git a/.secrets.baseline b/.secrets.baseline index 3123a9ec76a..dbaaddfaf7b 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -179,6 +179,29 @@ "line_number": 15 } ], + "appcast.xml": [ + { + "type": "Base64 High Entropy String", + "filename": "appcast.xml", + "hashed_secret": "abb0380989460de3f211d60628b439de7ebcd482", + "is_verified": false, + "line_number": 364 + }, + { + "type": "Base64 High Entropy String", + "filename": "appcast.xml", + "hashed_secret": "6e1ba26139ac4e73427e68a7eec2abf96bcf1fd4", + "is_verified": false, + "line_number": 583 + }, + { + "type": "Base64 High Entropy String", + "filename": "appcast.xml", + "hashed_secret": "c0baa9660a8d3b11874c63a535d8369f4a8fa8fa", + "is_verified": false, + "line_number": 722 + } + ], "apps/android/app/src/test/java/ai/openclaw/android/node/AppUpdateHandlerTest.kt": [ { "type": "Hex High Entropy String", @@ -13011,5 +13034,5 @@ } ] }, - "generated_at": "2026-03-08T03:31:44Z" + "generated_at": "2026-03-08T05:05:36Z" } diff --git a/extensions/zalouser/src/monitor.group-gating.test.ts b/extensions/zalouser/src/monitor.group-gating.test.ts index 522a2e4a7b5..b3e38efecd6 100644 --- a/extensions/zalouser/src/monitor.group-gating.test.ts +++ b/extensions/zalouser/src/monitor.group-gating.test.ts @@ -83,7 +83,9 @@ function installRuntime(params: { }; }); const readAllowFromStore = vi.fn(async () => []); - const readSessionUpdatedAt = vi.fn(() => undefined); + const readSessionUpdatedAt = vi.fn( + (_params?: { storePath: string; sessionKey: string }): number | undefined => undefined, + ); const buildAgentSessionKey = vi.fn( (input: { agentId: string; @@ -452,8 +454,8 @@ describe("zalouser monitor group mention gating", () => { const { dispatchReplyWithBufferedBlockDispatcher, readSessionUpdatedAt } = installRuntime({ commandAuthorized: false, }); - readSessionUpdatedAt.mockImplementation(({ sessionKey }: { sessionKey: string }) => - sessionKey === "agent:main:zalouser:group:321" ? 123 : undefined, + readSessionUpdatedAt.mockImplementation((input?: { storePath: string; sessionKey: string }) => + input?.sessionKey === "agent:main:zalouser:group:321" ? 123 : undefined, ); const account = createAccount(); await __testing.processMessage({