Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
cefba18
fix(node): gate agent-task reads behind the same visibility rules as …
euxaristia Aug 12, 2026
1260d89
fix(node): query the task limit-clamp test as the delegator
euxaristia Aug 12, 2026
29004a2
fix(node): scope task visibility lookups to the page's repos
euxaristia Aug 12, 2026
4057531
Preserve authorized task reads across shipped clients.
euxaristia Aug 13, 2026
dd994c7
Bound denied task history scans.
euxaristia Aug 13, 2026
11f85f8
Signal incomplete task scans with recoverable cursors and map read er…
euxaristia Aug 14, 2026
daa9afa
Stop disclosing denied task rows in the scan-wall cursor and add Grap…
euxaristia Aug 15, 2026
0d57562
Normalize task cursors and gate mutation endpoints behind visibility.
euxaristia Aug 15, 2026
12eef70
Update complete_task test in test_support to exercise both 404 on unr…
euxaristia Aug 15, 2026
1bc8d2c
Bind task to repo id in complete_task test in test_support.
euxaristia Aug 15, 2026
8904e8e
Preserve timestamp fractional width and anchor continuation tests on …
euxaristia Aug 15, 2026
2850e8e
Match on Value::Object to extract task ID in GraphQL continuation test.
euxaristia Aug 15, 2026
539a22b
Remove unused mut binding on visible_newer in GraphQL query test.
euxaristia Aug 15, 2026
90f1849
Hide unauthorized claim and keep assigned tasks from being stolen
euxaristia Aug 16, 2026
4407e2a
Keep task-list incomplete for the scan ceiling only.
euxaristia Aug 16, 2026
08c51ed
fix(node): pin claim guards and map mutation errors through AppError
euxaristia Aug 18, 2026
bb0d5de
fix(node): match bare and did:key assignee forms in claim and list
euxaristia Aug 18, 2026
9c2bd4b
fix(node): check task creation status and add assignee expression index
euxaristia Aug 19, 2026
7b7645b
fix(node)!: Replace task cursors with opaque continuation tokens
euxaristia Aug 21, 2026
b451b25
fix(node): End the candidate stream only after the batch is examined
euxaristia Aug 21, 2026
4097c8b
fix(gl): Reject a non-positive task-list limit and fault the write un…
euxaristia Aug 21, 2026
c87669c
fix(node): Bind task cursors to the caller and brake the task read ro…
euxaristia Aug 21, 2026
bc8c81e
fix(node): Brake anonymous GraphQL task reads on the same per-IP bucket
euxaristia Aug 22, 2026
12f1e0c
fix(gl,node): parse typed task pages, track cursor cycles, and normal…
euxaristia Aug 22, 2026
d6b68bc
fix(node): Cap aliased GraphQL task reads per request and derive has_…
euxaristia Aug 23, 2026
6569739
fix(node): Check database continuation when scan budget ends on exact…
euxaristia Aug 23, 2026
a61092f
fix(node): Document and pin the bound on the task scan-ceiling probe
euxaristia Aug 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/gitlawb-node/src/api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pub mod replicas;
pub mod repos;
pub mod resolve;
pub mod stars;
pub mod task_cursor;
pub mod tasks;
pub mod visibility;
pub mod webhooks;
Expand Down
Loading
Loading