Version Check
Configure automatic version checking and update notifications for Atmos CLI. Control how frequently Atmos checks for new releases and whether update notifications are displayed.
Configuration
Version checking is configured in the version section:
atmos.yaml
Configuration Options
version.check.enabledEnable or disable automatic version checking. When disabled, Atmos will not check for updates unless explicitly requested with
atmos version --check.Default:
trueCan also be set via
ATMOS_VERSION_CHECK_ENABLEDenvironment variable.version.check.frequencyHow often Atmos checks for new versions. Supports three formats:
Predefined Keywords:
minute— Check every minutehourly— Check every hourdaily— Check once per day (default)weekly— Check once per weekmonthly— Check once per monthyearly— Check once per year
Duration with Suffix:
1m— 1 minute5h— 5 hours2d— 2 days
Integer (seconds):
3600— Check every 3600 seconds (1 hour)
Default:
dailyIf an invalid value is provided, defaults to
daily.
Examples
Disable Version Checks
To disable automatic version checking entirely:
atmos.yaml
Or via environment variable:
export ATMOS_VERSION_CHECK_ENABLED=false
Check Weekly
For less frequent checks, such as weekly:
atmos.yaml
Custom Frequency
Set a custom check interval of 12 hours:
atmos.yaml
Or using seconds:
atmos.yaml
Force Version Check
To check for updates immediately, regardless of configuration:
atmos version --check
This bypasses the frequency setting and checks the Atmos releases page on GitHub for the latest version.
Environment Variables
ATMOS_VERSION_CHECK_ENABLED- Override the
version.check.enabledsetting. Set tofalseto disable version checking.
Related Commands
atmos version— Display Atmos version and check for updates