Update some details about uv - #28
Open
alakae wants to merge 1 commit into
Open
Conversation
Updated documentation for `exclude-newer-package` settings and usage, including timestamp format and CLI options.
mprpic
reviewed
Aug 17, 2026
| **This cutoff is an absolute timestamp, not a rolling window — it does not advance with time.** Left in place, it | ||
| doesn't expire; it permanently pins the package to whatever was newest as of that date and blocks every later | ||
| release forever. So it still needs to be removed once the general cooldown has caught up to it — it just fails | ||
| differently than `false` if forgotten: it freezes updates instead of permanently exempting them. |
Owner
There was a problem hiding this comment.
I'm not sure that this is better than a temporary disable using a CLI option (using false) and an exact version specifier (e.g. ==1.2.3). If someone forgets the timestamp in their uv.toml file, they will end up with an outdated version very soon. The use case for marking packages as false in the config file is purely for things that can be trusted (for example my own packages that I publish and install right away).
Maybe we just want to make it more explicit in the docs that using pkg=false in the config file carries dangers (though it feels obvious to state that)?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated documentation for
exclude-newer-packagesettings and usage, including timestamp format and CLI options.