You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -268,11 +268,15 @@ Shows dependencies sorted by how long since they were last changed in your repo.
268
268
git pkgs outdated # show packages with newer versions available
269
269
git pkgs outdated --major # only major version updates
270
270
git pkgs outdated --minor # minor and major updates (skip patch)
271
+
git pkgs outdated --at v2.0 # what was outdated when we released v2.0?
272
+
git pkgs outdated --at 2024-03-01 # what was outdated on this date?
271
273
git pkgs outdated --stateless # no database needed
272
274
```
273
275
274
276
Checks package registries (via [ecosyste.ms](https://packages.ecosyste.ms/)) to find dependencies with newer versions available. Major updates are shown in red, minor in yellow, patch in cyan.
275
277
278
+
The `--at` flag enables time travel: pass a date (YYYY-MM-DD) or any git ref (tag, branch, commit SHA) to see what was outdated at that point in time. When given a git ref, it uses the commit's date.
0 commit comments