fix: /teams/{id}/evolutions response missing player_name #115
Labels
No Label
ai-changes-requested
ai-failed
ai-merged
ai-pr-opened
ai-reviewed
ai-reviewing
ai-reviewing
ai-working
bug
enhancement
evolution
performance
phase-0
phase-1a
phase-1b
phase-1c
phase-1d
security
tech-debt
todo
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cal/paper-dynasty-database#115
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
GET /api/v2/teams/{team_id}/evolutionsreturns evolution card states withoutplayer_name. The Discord bot's/evo statuscommand falls back to displaying "Player #795" instead of "Tyler Wells".Current Response
Expected
Fix
JOIN the
playertable in the evolutions query and includep_namein the serialized response.Found during
Phase 1 smoke testing (2026-03-19)
PR opened: #119
Fix: joined the
Playertable inlist_team_evolutions(.switch(EvolutionCardState).join(Player)) and addedplayer_nameto each serialized item. Single query, no N+1.