Heroku-22 is now the default stack for new apps

Change effective on 24 August 2022

Heroku-22, our stack based on Ubuntu 22.04 Long Term Support, is now the default stack when creating new applications.

See the Heroku-22 stack article for a list of changes over the previous default stack, Heroku-20.

To continue creating new apps using Heroku-20, specify the stack explicitly when creating the app:

$ heroku create --stack heroku-20

If you use Review Apps or Heroku CI, the default stack can be overridden by defining a stack in app.json:

{
   "stack": "heroku-20"
}

Existing apps are unaffected by this change in default stack. To upgrade them to Heroku-22, see upgrading to the latest stack.