Installation
Download the binary for your platform below, extract it, and add it to your PATH.
macOS (Apple Silicon)
curl -L https://github.com/atomicdotdev/atomic/releases/download/v0.18.1/atomic-aarch64-apple-darwin.tar.gz | tar xz
sudo mv atomic /usr/local/bin/macOS (Intel)
curl -L https://github.com/atomicdotdev/atomic/releases/download/v0.18.1/atomic-x86_64-apple-darwin.tar.gz | tar xz
sudo mv atomic /usr/local/bin/Linux (x86_64, statically linked — works on any Linux including Ubuntu 20.04+)
curl -L https://github.com/atomicdotdev/atomic/releases/download/v0.18.1/atomic-x86_64-unknown-linux-musl.tar.gz | tar xz
sudo mv atomic /usr/local/bin/Linux (x86_64, glibc — requires glibc 2.28+)
curl -L https://github.com/atomicdotdev/atomic/releases/download/v0.18.1/atomic-x86_64-unknown-linux-gnu.tar.gz | tar xz
sudo mv atomic /usr/local/bin/Linux (aarch64, statically linked — works on any Linux)
curl -L https://github.com/atomicdotdev/atomic/releases/download/v0.18.1/atomic-aarch64-unknown-linux-musl.tar.gz | tar xz
sudo mv atomic /usr/local/bin/Linux (aarch64, glibc — requires glibc 2.28+)
curl -L https://github.com/atomicdotdev/atomic/releases/download/v0.18.1/atomic-aarch64-unknown-linux-gnu.tar.gz | tar xz
sudo mv atomic /usr/local/bin/Windows (x86_64)
Download atomic-x86_64-pc-windows-msvc.zip, extract, and add to your PATH.
Verify
atomic --versionSee checksums-sha256.txt for SHA-256 checksums of all artifacts.
What's Changed
- fix(remote): surface version mismatch on sync-pack decode failure by @javrish in #180
- fix(log): add --short flag as shorthand for --format short by @javrish in #179
- fix(ci): add statically linked musl builds for Linux by @javrish in #183
- agent enable: a failed package install is no longer a success by @graywolf336 in #187
- agent status --json by @graywolf336 in #184
- feat(canonical): add needs-review to the intent-status vocabulary by @geekgonecrazy in #192
- feat(identity): resolve signer keys from storage —
identity lookup-key+intent verifyserver fallback by @graywolf336 in #191 - fix(agent): harden redb 4.2 provenance for concurrent hooks by @vinceblock99 in #190
- feat(cli): show view hierarchy and hide empty views in view list by @geekgonecrazy in #194
- feat(identity): agent identities with signed delegation certificates by @geekgonecrazy in #189
- feat(cli): add versioned IDE JSON output by @vinceblock99 in #188
- fix(ci): enforce glibc 2.28 floor for Linux releases by @vinceblock99 in #185
New Contributors
Full Changelog: v0.17.1...v0.18.1