Would it be possible to provide a way to download Julia nightlies pinned by date, analogous to Rust's cargo nightly-YYYY-MM-DD toolchain selector?
The pr{number} channels are super useful. It would be nice if there was tagged nightlies as well. Right now, if I want "the nightly from a particular date" to reproduce a regression, I have to manually track down the right commit/build artefact. Otherwise the nightly channel is a moving target.
To motivate this, in one of my rust projects that requires features in an unreleased version, I have my toolchain file set up as follows:
[toolchain]
channel = "nightly-2025-12-19"
I think it would be nice if such a thing was possible via juliaup as well. I have found it is particularly useful for working on multiple machines.