the Chromium logo

The Chromium Projects

ChromeOS Releases

This document covers a variety of topics related to CrOS releases. The primary audience is other CrOS developers, but it can be interesting to users as well.

Cycle / Schedule

ChromeOS operates on a 4 week cycle. We largely follow the Chrome Release Cycle, so check out that document for a lot more information.

NB: Before M96 (Dec 2021), CrOS followed a 6 week cycle. See the announcement for more details.

Channels

CrOS, like Chrome, operates 5 channels:

Dev Channel

Unfortunately "dev" (and "developer") is a heavily overloaded term, and can be used colloquially for very different things.

The dev channel only refers to the channel and its corresponding release track (which tends to be newer than the beta channel, but older than the canary channel). It does not change any other aspect of the system, or enable features that otherwise are unavailable (*).

Notably, this should not be confused with things like CrOS dev-mode, or Chrome extensions developer mode, or Chrome DevTools. These are all completely independent settings unrelated to the dev channel.

(*): Some Chrome APIs are rolled out according to the channel, but this isn't specific to the dev channel per se.

Version Numbers

ChromeOS uses a [Milestone.]<TIP_BUILD>.<BRANCH_BUILD>.<BRANCH_BRANCH_BUILD> style. The meaning of these are documented in the Version Numbers page.

Stepping Stones

*** note Googlers can view the currently defined stepping stone versions via GoldenEye.


Stepping stone versions refer to the auto-update process, and what new version a device may upgrade to based on the version it is currently running.

Normally, every device can upgrade from any version to any other version. Sometimes though, we need to restrict or force a device to upgrade to a specific version before it can upgrade beyond that. For example, if a device is running R40, and it were to upgrade to R90, things wouldn't work correctly, so we force it to upgrade to an intermediate version (a.k.a. a stepping stone version) like R50.

Since the bug exists in released versions of the OS as it exists on a device, it's not possible to backport a fix to that version -- even if we did, the device will still try and update to the latest OS version completely skipping the new fixed version from the release branch.

Since this can be a really bad UX (e.g. user buys a device, uses it for the first time, gets an update, reboots, gets an update, reboots, gets an update, etc...), we strongly try to minimize how often we use this functionality. Hence this is usually in response to a known bug that has been discovered. We try to narrow down the version range (e.g. if R40->R90 is broken, what is the oldest version we can force that doesn't have the bug, so we minimize the number of users who go through this flow), and we try to narrow the devices (e.g. if only device X is affected due to some device-specific firmware, we can apply the stepping stone to that device).

Unfortunately, the biggest reason for such bugs is the lack of comprehensive automated testing for this situation. Part of the problem is that the amount of testing increases exponentially with every release and every device we make. While we verify that every OS release can update once to the "next" version, the scenarios described here requires verifying every version that has been released is able to update to the latest version, and do it for every device. We also have to factor in that some bugs manifest themselves only when certain features are used (e.g. enrolled devices with specific policies), and sometimes only after having updated multiple times (e.g. R40->R90 works, but R40->R41->R42 ->R90 fails due to incremental state changes).

Considering how often such major upgrade bugs occur (less than once a year, and usually most tend to be device/firmware specific), we're OK with this risk.

Ideally stepping stones should be aligned with LTS milestones. These are currently planned as M96+6*X (See Chromium Dash for current data). Having stepping stones on LTS and LTC milestones allows devices on the respective channels to move from one release to the next one without having to go through a non-LTS milestone.

Code Cleanups

A side benefit for developers is that stepping stones sometimes allow us to clean up migration code we have in the system. For example, if R60 made a major filesystem change, we have to check at every boot to see if the previous boot was from an older version (pre-R60). If it was, we migrate the data; if not, we don't. We have to maintain this code until we're confident that every device that shipped with <R60 has gone EOL, or until we have a stepping stone version. So if a stepping stone version is applied to R65 for all devices, we can safely assume that any device on R66 already upgraded to R65, and thus had the migration code run. That means the migration code can be removed from ToT to keep things tidy.

Keep in mind that if the stepping stone was applied for specific devices, we still have to keep the migration code around for everyone.

End of Life (EOL) / Auto Update Expiration Devices

This is covered in detail in a dedicated document.