chore: pin all dependency versions #1
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?
Problem
Unpinned dependencies can silently introduce breaking changes when applications are rebuilt. This caused a production outage in the Major Domo project when an unpinned FastAPI upgrade changed redirect behavior.
Task
Why This Matters
Every build should produce an identical artifact. Unpinned deps mean a
git revertdoesn't actually roll back to the previous working state — you get the old code with new libraries.