"Phasing" isn't a time-based release — it's a rollout by percentage
Ubuntu doesn't wait to "release" the package at a certain clock time. The package is already fully published in the repository and downloadable right now. What phasing controls is whether apt offers it to your machine yet.
Here's how it works:
So when I said "they'll land on schedule," I mean: in a day or two (usually within ~7 days total) the rollout percentage will reach your machine's hash value, and then a normal apt upgrade will just pick them up. Nothing is scheduled at a wall-clock time — it's a gradual, fleet-wide canary roll.
The point of phasing is that if a package breaks a small subset of test machines, Ubuntu catches it and either fixes it or pauses the rollout before the rest of the fleet installs it. Mesa GPU drivers and nautilus have both caused regressions before, so letting them phase is the safer default.
You can force them now with:
bash
sudo apt -o APT::Get::Always-Include-Phased-Updates=true upgrade
That overrides the phase gate for this run and installs the latest regardless of the percentage. Totally safe in most cases, it just means you're skipping the canary protection.