From 7b0dcc3e4314454a658e502d78f3d8dfdebd97c7 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Tue, 26 May 2026 15:02:51 +0200 Subject: [PATCH 1/2] fix: frontmatter for update-doc-references (#23557) Causes a warn when loaded in Codex --- .claude/skills/update-doc-references/SKILL.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.claude/skills/update-doc-references/SKILL.md b/.claude/skills/update-doc-references/SKILL.md index 3eaf63ee4b85..7c6393d31908 100644 --- a/.claude/skills/update-doc-references/SKILL.md +++ b/.claude/skills/update-doc-references/SKILL.md @@ -1,3 +1,8 @@ +--- +name: update-doc-references +description: Analyze source-file changes referenced by documentation, update affected docs when needed, and report documentation reference updates for a PR. +--- + # Update Documentation References When source files referenced by documentation change in a PR, analyze the From b2df1b3b2502e7a2b84b2ae102466db8465030d4 Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Tue, 26 May 2026 17:04:28 +0200 Subject: [PATCH 2/2] test(ws): await close promise in native world state test (#23563) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tackles flake at [this run](http://ci.aztec-labs.com/f68773618307b3a1) by awaiting the close promise on the fork. ``` 22:00:44 ● NativeWorldState › Pending and Proven chain › does not fail when a delayed-close fork is destroyed by a reorg before its close fires 22:00:44 22:00:44 expect(received).toBe(expected) // Object.is equality 22:00:44 22:00:44 Expected: false 22:00:44 Received: true 22:00:44 22:00:44 964 | 22:00:44 965 | expect(warnSpy).not.toHaveBeenCalled(); 22:00:44 > 966 | expect((ws as any).instance.queues.has(forkId)).toBe(false); 22:00:44 | ^ 22:00:44 967 | }); 22:00:44 968 | }); 22:00:44 969 | 22:00:44 22:00:44 at Object.toBe (native/native_world_state.test.ts:966:55) ``` --- yarn-project/world-state/src/native/native_world_state.test.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yarn-project/world-state/src/native/native_world_state.test.ts b/yarn-project/world-state/src/native/native_world_state.test.ts index 5acafa7d67b6..5c4437ca7386 100644 --- a/yarn-project/world-state/src/native/native_world_state.test.ts +++ b/yarn-project/world-state/src/native/native_world_state.test.ts @@ -961,6 +961,9 @@ describe('NativeWorldState', () => { await expect(delayedFork.getSiblingPath(MerkleTreeId.NULLIFIER_TREE, 0n)).rejects.toThrow('Fork not found'); await sleep(closeDelayMs * 3); + const closePromise = (delayedFork as any).closePromise; + expect(closePromise).toBeDefined(); + await closePromise; expect(warnSpy).not.toHaveBeenCalled(); expect((ws as any).instance.queues.has(forkId)).toBe(false);