From 98004e87016f99ea4fc0a2f0b303b35e378da6c3 Mon Sep 17 00:00:00 2001 From: Johnathan Pagnutti Date: Thu, 25 Jun 2026 15:46:18 -0700 Subject: [PATCH 1/2] fix: bad repo for salesforce/agents --- yarn.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn.lock b/yarn.lock index 0b147bfe..fc5b8e1f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1413,7 +1413,7 @@ "@salesforce/agents@^1.9.0": version "1.9.0" - resolved "https://nexus-proxy.repo.local.sfdc.net/nexus/content/groups/npm-all/@salesforce/agents/-/agents-1.9.0.tgz#58d5a48f164942009ae57bb15a0de8c6729a72c4" + resolved "https://registry.yarnpkg.com/@salesforce/agents/-/agents-1.9.0.tgz#58d5a48f164942009ae57bb15a0de8c6729a72c4" integrity sha512-CcMVeKfzUc5I/64JSUiFwCuYjQjPbx9EUyXeUfYEpB65f8sRpSQtbO3xJe2jjrrEo0RUVzU9gJSh4kB+SnzgJg== dependencies: "@salesforce/core" "^8.31.0" From 9a41e493a82bd4834dced9b944947ec4fe143d72 Mon Sep 17 00:00:00 2001 From: Johnathan Pagnutti Date: Thu, 25 Jun 2026 15:46:27 -0700 Subject: [PATCH 2/2] fix: use RECENT_MTIME.toISOString() for time filters --- test/commands/agent/trace/list.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/commands/agent/trace/list.test.ts b/test/commands/agent/trace/list.test.ts index 7038d5b6..7de6563e 100644 --- a/test/commands/agent/trace/list.test.ts +++ b/test/commands/agent/trace/list.test.ts @@ -163,7 +163,7 @@ describe('agent trace list', () => { }); it('returns only traces at or after the given datetime', async () => { - const result = await AgentTraceList.run(['--since', '2026-04-07T17:00:00.000Z']); + const result = await AgentTraceList.run(['--since', RECENT_MTIME.toISOString()]); const planIds = result.map((r: any) => r.planId); expect(planIds).to.include('plan-1'); // exactly equal — mtime >= since expect(planIds).to.not.include('plan-2');