Skip to main content
Coming Soon — Version history and rollback commands are planned for a future release.
Version management will let you track deployments, roll back to previous versions, and implement gradual rollout strategies.

Current Deployment Model

Today, telnyx-edge ship deploys your function as an atomic update. Each deployment fully replaces the previous version.

Current Rollback Strategy

Until rollback commands are available, use Git:
# Revert to previous commit
git revert HEAD
telnyx-edge ship
Or checkout a specific version:
git log --oneline
git checkout abc123 .
telnyx-edge ship