Important Dates
- January 2nd, 2025: Deployment freeze on legacy platform
- January 14th, 2025: Legacy platform shutdown begins (gradual shutdown and removal of all projects)
- January 31st, 2025: Complete decommissioning of legacy platform infrastructure
Domain and CLI changes
Access the NEW platform
- New Console: console.shuttle.dev
- New Docs: docs.shuttle.dev
- Command Line: new
shuttlecommand (installed alongsidecargo shuttle)
Access the OLD platform (no longer available)
Old Console: console.shuttle.rsOld Docs: docs.shuttle.rsCommand Line:cargo shuttle
Changelog
Changed
- ⚠️ The Shuttle Console is located at console.shuttle.dev instead of console.shuttle.rs.
- ⚠️ Project subdomains are under
*.shuttle.appinstead of*.shuttleapp.rs - ⚠️ A new binary
shuttleis now provided for using the new platform (read more). - Project names are no longer globally unique, only unique per account. Project URLs now have some random characters at the end of its default subdomain, e.g.
myproject-3h5n.shuttle.app. - Builds and deployments are now fully separated. This allows for more specialised build workflows, and more efficient deployment hosting.
- Builds run on AWS CodeBuild, and now produce a Docker image instead of just a binary. This implies we can support more languages than Rust in the future. ✨
- Deployments run on AWS ECS with Fargate.
- CLI commands:
deploy: no longer runs tests, so--no-testhas no effect.deploy: no longer denies dirty deployments by default (read more).status: usedeployment statusinstead.stop: usedeployment stopinstead.project status: projects no longer have a state, so--followhas no effect.login: automatically gets the API key from the API after an approval in Shuttle Console. No more copy + pasting!
- Max archive size for deployments is now 100 MB (up from 50MB).
- Secrets.toml must now be in the root of the cargo workspace (
--secrets <file>can still be used for a custom location). - Shuttle.toml:
- Shared Postgres resource:
- Postgres 16
- Now based on AWS RDS
- Now has common Postgres Extensions
Added
- The Shuttle proxy, that proxies HTTP requests to user projects, now sets the X-Forwarded-For header on all requests, with the IP of the original caller.
- CLI commands:
- Commands that target a project: You will now be prompted to link your project directory to a Shuttle project.
- In addition to
--name <name>, you can also use--id <id>to target specific projects. This overrides project linking. project link: explicitly re-link the project directory to a Shuttle project.certificatecommand for adding and managing SSL certificates for custom domains.deploy --no-followto not poll the deployment status until it reaches a running or failed state.accountto show information about your account.project update nameto rename a project.
- You can now create accounts with Google sign-in and email + password. Accounts on new providers with matching emails are not linked and are treated as separate accounts.
- The ability to increase the allocated CPU and RAM limits (contact us).
Removed
- Shuttle Persist resource and the persistent file volume. (We plan to implement an S3-based replacement.)
- MongoDB Shared Database resource. (Removed due to having very few users.)
- AWS RDS Database resource. (We plan to bring it back.)
- CLI commands:
project stopproject restartclean
- The Teams feature has been temporarily disabled. We plan to enable it after improvements have been made.

