Download Latest Version v1.1.0 source code.tar.gz (787.4 kB)
Email in envelope

Get an email when there's a new version of Atlas

Home / v1.1.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2026-01-27 3.4 kB
v1.1.0 source code.tar.gz 2026-01-27 787.4 kB
v1.1.0 source code.zip 2026-01-27 1.0 MB
Totals: 3 Items   1.8 MB 0

We're excited to announce Atlas v1.1.

This release delivers on a promise we made in v1.0: Database Security as Code is now available for Atlas Pro users.

We're also shipping declarative data management for lookup tables and seed data, expanding database coverage with Aurora DSQL, Azure Fabric, and CockroachDB Cloud, and further improving our drivers and Atlas Cloud.

Here is what you can find in this release:

Read the full announcement in our blogpost.

:::hcl
role "app_readonly" {
  comment = "Read-only access for application"
}

permission {
  for_each   = [table.users, table.orders, table.products]
  for        = each.value
  to         = role.app_readonly
  privileges = [SELECT]
}

role "app_admin" {
  superuser   = false
  create_db   = false
  create_role = false
  login       = true
  member_of   = [role.app_readonly]
}

permission {
  for        = schema.public
  to         = role.app_admin
  privileges = [ALL]
  grantable  = true
}

Quick installation

macOS + Linux:

:::bash
curl -sSf https://atlasgo.sh | sh

Homebrew:

:::bash
brew install ariga/tap/atlas

Docker:

:::bash
docker pull arigaio/atlas

Windows

Download

The default binaries in this release are distributed released under Atlas EULA, and the community binaries are released under the Apache 2.0 license.

Source: README.md, updated 2026-01-27