Originally deliver
was designed to be "The Continuous Delivery tool for iOS". With the introduction of fastlane many things have changed. It was time for a big rewrite for deliver
, which is one of the most popular tools of the fastlane toolchain.
In general, check out the latest documentation for the Deliverfile.
With 1.0 the app will not be submitted to Review by default. You can use the deliver --submit_for_review
to submit after the upload.
The easiest way is to remove the existing Deliverfile
(which is probably almost empty anyway) and clear the metadata
folder and run deliver init
, so that deliver
creates everything in the new format for you.
To manually migrate setups (especially if you make heavy use of the Deliverfile
):
Make sure to adapt the paths to include the fastlane
directory (if necessary).
The following options have been removed from the Deliverfile
:
Removed | Use instead | Note |
---|---|---|
beta_ipa |
||
success |
fastlane | |
error |
fastlane | |
email |
username |
|
apple_id |
app |
use app_identifier to specify the bundle identifier instead |
version |
app_version |
is usually automatically detected |
default_language |
||
config_json_folder |
No more support for JSON based configuration | |
hide_transporter |
This might be implemented at a later point | |
primary_subcategories |
primary_first_sub_category and primary_second_sub_category |
|
secondary_subcategories |
secondary_first_sub_category and secondary_second_sub_category |
The following options have been changed:
From | To | Note |
---|---|---|
title |
name |
requires name({ "en-US" => "App name" }) |
changelog |
release_notes |
|
keywords |
requires a simple string instead of arrays | |
ratings_config_path |
app_rating_config_path |
New Format |
submit_further_information |
submission_information |
New Format |
The following commands have been removed:
Removed | Use instead |
---|---|
deliver testflight |
pilot |
testflight |
pilot |
The following codes/values have been changed:
Changed | |
---|---|
Language Codes | Reference.md |
Age Rating | Reference.md |
App Categories | Reference.md |
deliver
now uses spaceship to communicate with . This has huge advantages over the old way, which meansdeliver
is now much faster and more stable 🚀- Removed a lot of legacy code. Did you know
deliver
is now one year old? A lot of things have changed since then - Improved the selection of the newly uploaded build and waiting for processing to be finished, which is possible thanks to
spaceship
- Updating the app metadata and uploading of the screenshots now happen using
spaceship
instead of the iTunes Transporter, which means changes will immediately visible after runningdeliver
✨ - Removed the
deliver beta
andtestflight
commands, as there is now a dedicated tool called pilot - All parameters are now in the config system, which means you can pass values using the
Deliverfile
, from within yourFastfile
or as command line parameter
If you run into any issues with the new version of deliver
please submit an issue on GitHub.