summaryrefslogtreecommitdiff
path: root/src/updater.rs
AgeCommit message (Collapse)Author
2026-02-09Remove chrono dependencyJesper Jensen
Removing that dependency didn't take a lot of code, and fewer dependencies are better
2026-02-09Take entire row to deleteJesper Jensen
This will be useful if we need to do some locking at some point. It's just nice that the same thing is passed back every time
2026-02-09Add print for debuggingJesper Jensen
2026-02-09Same database pattern for imagesJesper Jensen
2026-02-09Nicer database interfaceJesper Jensen
Right now I'm just doing loops, we we can add some batch stuff here later
2026-02-09Remove timestamp from tagsJesper Jensen
These were never needed
2026-02-08Use the strings from the image structJesper Jensen
2026-02-08Remove useless variableJesper Jensen
2026-02-08Separate the cache refresh from applyJesper Jensen
Woops, I didn't want to let that stay
2026-02-08Take the registry tags at construction timeJesper Jensen
2026-02-08Always refresh all expiredJesper Jensen
2026-02-08Add struct to represent image rowJesper Jensen
2026-02-08Replace fetch time with expiry timeJesper Jensen
This should make it easier (possible) to query for expired images
2026-02-08Avoid fetching tags multiple timesJesper Jensen
What a dumb bug
2026-02-08Linearize images with update_imagesJesper Jensen
2026-02-08Separate out update_image to add some testsJesper Jensen