-
Notifications
You must be signed in to change notification settings - Fork 9
releases
Whenever you deploy code, change a config var, or add or remove an add-on resource, Heroku creates a new release and restarts your app. You can list the history of releases, and use rollbacks to revert to prior releases for backing out of bad deploys or config changes.
Release are named in the format vNN
, where NN
is an incrementing sequence number for each release.
Releases are created whenever you deploy code. In this example, v10 is the release created by the deploy:
:::term
$ git push heroku master
...
-----> Compiled slug size is 8.3MB
-----> Launching... done, v10
http://severe-mountain-793.herokuapp.com deployed to Heroku
Release are created whenever you change config vars. In this example, v11 is the release created by the config change:
:::term
$ heroku config:add MYVAR=42
Adding config vars:
MYVAR => 42
Updating vars and restarting app... done, v11
And releases are created whenever you add, remove, upgrade, or downgrade add-on resources. In this example, v12 is the release created by the add-on change:
:::term
$ heroku addons:add memcache
Adding memcache to myapp... done, v12 (free)
To see the history of releases for an app:
:::term
$ heroku releases
Rel Change By When
---- ---------------------- ---------- ----------
v52 Config add AWS_S3_KEY [email protected] 5 minutes ago
v51 Deploy de63889 [email protected] 7 minutes ago
v50 Deploy 7c35f77 [email protected] 3 hours ago
v49 Rollback to v46 [email protected] 2010-09-12 15:32:17 -0700
To get detailed info on a release:
:::term
$ heroku releases:info v24
=== Release v24
Change: Deploy 575bfa8
By: [email protected]
When: 6 hours ago
Addons: deployhooks:email, releases:advanced
Config: MY_CONFIG_VAR => 42
RACK_ENV => production
Use the rollback
command to roll back to the last release:
:::term
$ heroku rollback
Rolled back to v51
You may choose to specify another release to target:
:::term
$ heroku rollback v40
Rolled back to v40
Rolling back will create a new release which is a copy of the state of code and config vars contained in the targeted release. The state of the database or external state held in add-ons (for example, the contents of memcache) will not be affected and are up to you to reconcile with the rollback.
Running on rolled-back code is meant as a temporary fix to a bad deployment. If you are on rolled-back code and your slug is recompiled (for any reason other than a new deployment) your app will be moved back to running on the most recent release. Subscribing to a new add-on or adding/removing a config var will result in your slug being recompiled.