daily sync: 3 added, 4 modified, 0 deleted (3 edges)

This commit is contained in:
Cal Corum 2026-03-03 16:17:25 -06:00
parent d3f21cdbbe
commit 6c825b69a6
7 changed files with 74 additions and 4 deletions

View File

@ -0,0 +1,13 @@
---
id: 2276edb6-002f-4656-8ff2-897a026d813c
type: RELATED_TO
from_id: bf1e80d7-cec9-4853-85a4-260f2fe3e0eb
from_title: "PR review: paper-dynasty-database#42 — remove duplicate ranking_max filter"
to_id: d36a86f0-8183-4c94-8d63-0be65d3fd63a
to_title: "PR review: paper-dynasty-database#33 (APPROVED)"
strength: 0.77
created: "2026-03-03T22:17:25.564811+00:00"
updated: "2026-03-03T22:17:25.564811+00:00"
---
Auto-edge: PR review: paper-dynasty-database#42 — remove duplicate ranking_max filter → PR review: paper-dynasty-database#33 (APPROVED)

View File

@ -0,0 +1,13 @@
---
id: 3561b670-7afa-4a12-8131-5b099f890db5
type: RELATED_TO
from_id: bf1e80d7-cec9-4853-85a4-260f2fe3e0eb
from_title: "PR review: paper-dynasty-database#42 — remove duplicate ranking_max filter"
to_id: 04e57a23-0a20-49d6-8c5a-2fa5fc4e55b5
to_title: "PR review: paper-dynasty-database#33 (APPROVED)"
strength: 0.79
created: "2026-03-03T22:17:25.527091+00:00"
updated: "2026-03-03T22:17:25.527091+00:00"
---
Auto-edge: PR review: paper-dynasty-database#42 — remove duplicate ranking_max filter → PR review: paper-dynasty-database#33 (APPROVED)

View File

@ -0,0 +1,13 @@
---
id: 4b330e3c-087d-41e8-8ffc-3b53f004f551
type: RELATED_TO
from_id: bf1e80d7-cec9-4853-85a4-260f2fe3e0eb
from_title: "PR review: paper-dynasty-database#42 — remove duplicate ranking_max filter"
to_id: 5ae1bf6e-1e1c-4486-8a4d-10afd9e42189
to_title: "PR review: paper-dynasty-database#33 (APPROVED)"
strength: 0.77
created: "2026-03-03T22:17:25.595134+00:00"
updated: "2026-03-03T22:17:25.595134+00:00"
---
Auto-edge: PR review: paper-dynasty-database#42 — remove duplicate ranking_max filter → PR review: paper-dynasty-database#33 (APPROVED)

View File

@ -6,7 +6,7 @@ tags: [pr-reviewer, paper-dynasty-database, fastapi, peewee, middleware, python]
importance: 0.5
confidence: 0.8
created: "2026-03-03T18:08:58.224854+00:00"
updated: "2026-03-03T21:32:53.925903+00:00"
updated: "2026-03-03T22:17:25.527091+00:00"
relations:
- target: d36a86f0-8183-4c94-8d63-0be65d3fd63a
type: RELATED_TO
@ -43,6 +43,11 @@ relations:
direction: incoming
strength: 0.75
edge_id: 13f7c174-b2d6-4f57-846c-a2a66a2784f0
- target: bf1e80d7-cec9-4853-85a4-260f2fe3e0eb
type: RELATED_TO
direction: incoming
strength: 0.79
edge_id: 3561b670-7afa-4a12-8131-5b099f890db5
---
Reviewed paper-dynasty-database PR #33 — fix: replace 467 manual db.close() calls with middleware (#30). Verdict: APPROVED.

View File

@ -6,7 +6,7 @@ tags: [pr-reviewer, paper-dynasty-database, automation]
importance: 0.5
confidence: 0.8
created: "2026-03-03T18:09:25.812471+00:00"
updated: "2026-03-03T21:32:53.992308+00:00"
updated: "2026-03-03T22:17:25.595134+00:00"
relations:
- target: 530bfb6f-841c-4381-b8a4-d0b6fbc02878
type: RELATED_TO
@ -23,6 +23,11 @@ relations:
direction: incoming
strength: 0.71
edge_id: 933bc0e0-297c-4d5b-9757-a46a5adee7ad
- target: bf1e80d7-cec9-4853-85a4-260f2fe3e0eb
type: RELATED_TO
direction: incoming
strength: 0.77
edge_id: 4b330e3c-087d-41e8-8ffc-3b53f004f551
---
Reviewed paper-dynasty-database PR #33 — fix: replace 467 manual db.close() calls with middleware (#30). Verdict: APPROVED. Summary: Correct implementation of the standard Peewee + FastAPI middleware pattern. 467 db.close() calls removed from 30 router files; middleware correctly uses reuse_if_open=True with try/finally and is_clos. Cost: $1.062883

View File

@ -6,7 +6,7 @@ tags: [pr-reviewer, paper-dynasty-database, automation]
importance: 0.5
confidence: 0.8
created: "2026-03-03T06:06:26.108954+00:00"
updated: "2026-03-03T21:32:53.957935+00:00"
updated: "2026-03-03T22:17:25.564811+00:00"
relations:
- target: 04e57a23-0a20-49d6-8c5a-2fa5fc4e55b5
type: RELATED_TO
@ -38,6 +38,11 @@ relations:
direction: incoming
strength: 0.71
edge_id: ec667393-cda8-4047-88d3-875188af99b2
- target: bf1e80d7-cec9-4853-85a4-260f2fe3e0eb
type: RELATED_TO
direction: incoming
strength: 0.77
edge_id: 2276edb6-002f-4656-8ff2-897a026d813c
---
Reviewed paper-dynasty-database PR #33 — fix: replace 467 manual db.close() calls with middleware (#30). Verdict: APPROVED. Summary: Correct implementation of the standard Peewee + FastAPI middleware pattern. Eliminates connection-leak bug across 467 call sites. Safe for both SQLite (dev) and PooledPostgresqlDatabase (prod). Minor:. Cost: $0.98641425

View File

@ -6,7 +6,23 @@ tags: [pr-reviewer, paper-dynasty-database, fastapi, peewee, python, duplicate-c
importance: 0.4
confidence: 0.8
created: "2026-03-03T22:17:25.193256+00:00"
updated: "2026-03-03T22:17:25.193256+00:00"
updated: "2026-03-03T22:17:25.595134+00:00"
relations:
- target: 04e57a23-0a20-49d6-8c5a-2fa5fc4e55b5
type: RELATED_TO
direction: outgoing
strength: 0.79
edge_id: 3561b670-7afa-4a12-8131-5b099f890db5
- target: d36a86f0-8183-4c94-8d63-0be65d3fd63a
type: RELATED_TO
direction: outgoing
strength: 0.77
edge_id: 2276edb6-002f-4656-8ff2-897a026d813c
- target: 5ae1bf6e-1e1c-4486-8a4d-10afd9e42189
type: RELATED_TO
direction: outgoing
strength: 0.77
edge_id: 4b330e3c-087d-41e8-8ffc-3b53f004f551
---
## PR #42: fix: remove duplicate ranking_max filter in get_teams