Skip to main content

Version

The version section configures how Atmos handles version management, including automatic update checking and version constraint enforcement to ensure consistent behavior across teams and environments.

Configuration

atmos.yaml

version:
# Automatic update checking
check:
enabled: true
frequency: daily

# Version constraint enforcement
constraint:
require: ">=1.100.0"
enforcement: fatal
message: "Please upgrade Atmos to use this configuration."

Version Sections

SectionDescription
CheckAutomatic version checking and update notifications
ConstraintEnforce Atmos version requirements for your configuration

Environment Variables

ATMOS_VERSION_CHECK_ENABLED
Enable or disable automatic version checking.
ATMOS_VERSION_ENFORCEMENT
Override version constraint enforcement level: fatal, warn, or silent.

See Also