🎉 New features
- Make "production" the default profile for building and submitting. (#677) by @jonsamp
- Previously, the default profile when running
eas build
oreas submit
was "release". We're changing it to a more recognizable name that is consistent with our docs, which is now "production". You can always specify a profile manually with the--profile
flag. For this major version, if you do not have a profile named "production", and still have a profile named "release", we will fall back to the "release" profile as the default, however you'll see a warning as we're going to remove that behavior in the next major release of EAS CLI. - To upgrade, update eas.json to have a "production" profile in both the
build
andsubmit
objects. If you already have a project set up, this will replace the existing "release" profile. After the change, eas.json should have the following profiles:{ "build": { "production": { ... } }, "submit": { "production": { ... } } }
- Previously, the default profile when running