deliver/lib/deliver/options.rb in fastlane_hotfix-2.165.1 vs deliver/lib/deliver/options.rb in fastlane_hotfix-2.187.0
- old
+ new
@@ -11,29 +11,30 @@
user ||= CredentialsManager::AppfileConfig.try_fetch_value(:apple_id)
user ||= ENV["DELIVER_USER"]
[
FastlaneCore::ConfigItem.new(key: :api_key_path,
- env_name: "DELIVER_API_KEY_PATH",
+ env_names: ["DELIVER_API_KEY_PATH", "APP_STORE_CONNECT_API_KEY_PATH"],
description: "Path to your App Store Connect API Key JSON file (https://docs.fastlane.tools/app-store-connect-api/#using-fastlane-api-key-json-file)",
optional: true,
conflicting_options: [:api_key],
verify_block: proc do |value|
UI.user_error!("Couldn't find API key JSON file at path '#{value}'") unless File.exist?(value)
end),
FastlaneCore::ConfigItem.new(key: :api_key,
- env_name: "DELIVER_API_KEY",
+ env_names: ["DELIVER_API_KEY", "APP_STORE_CONNECT_API_KEY"],
description: "Your App Store Connect API Key information (https://docs.fastlane.tools/app-store-connect-api/#use-return-value-and-pass-in-as-an-option)",
type: Hash,
optional: true,
sensitive: true,
conflicting_options: [:api_key_path]),
FastlaneCore::ConfigItem.new(key: :username,
short_option: "-u",
env_name: "DELIVER_USERNAME",
description: "Your Apple ID Username",
+ optional: true,
default_value: user,
default_value_dynamic: true),
FastlaneCore::ConfigItem.new(key: :app_identifier,
short_option: "-a",
env_name: "DELIVER_APP_IDENTIFIER",
@@ -106,15 +107,15 @@
short_option: "-o",
optional: true,
default_value: false,
env_name: "DELIVER_EDIT_LIVE",
description: "Modify live metadata, this option disables ipa upload and screenshot upload",
- is_string: false),
+ type: Boolean),
FastlaneCore::ConfigItem.new(key: :use_live_version,
env_name: "DELIVER_USE_LIVE_VERSION",
description: "Force usage of live version rather than edit version",
- is_string: false,
+ type: Boolean,
default_value: false),
# paths
FastlaneCore::ConfigItem.new(key: :metadata_path,
short_option: '-m',
@@ -129,49 +130,49 @@
# skip
FastlaneCore::ConfigItem.new(key: :skip_binary_upload,
env_name: "DELIVER_SKIP_BINARY_UPLOAD",
description: "Skip uploading an ipa or pkg to App Store Connect",
- is_string: false,
+ type: Boolean,
default_value: false),
FastlaneCore::ConfigItem.new(key: :skip_screenshots,
env_name: "DELIVER_SKIP_SCREENSHOTS",
description: "Don't upload the screenshots",
- is_string: false,
+ type: Boolean,
default_value: false),
FastlaneCore::ConfigItem.new(key: :skip_metadata,
env_name: "DELIVER_SKIP_METADATA",
description: "Don't upload the metadata (e.g. title, description). This will still upload screenshots",
- is_string: false,
+ type: Boolean,
default_value: false),
FastlaneCore::ConfigItem.new(key: :skip_app_version_update,
env_name: "DELIVER_SKIP_APP_VERSION_UPDATE",
description: "Don’t create or update the app version that is being prepared for submission",
- is_string: false,
+ type: Boolean,
default_value: false),
# how to operate
FastlaneCore::ConfigItem.new(key: :force,
short_option: "-f",
env_name: "DELIVER_FORCE",
description: "Skip verification of HTML preview file",
- is_string: false,
+ type: Boolean,
default_value: false),
FastlaneCore::ConfigItem.new(key: :overwrite_screenshots,
env_name: "DELIVER_OVERWRITE_SCREENSHOTS",
description: "Clear all previously uploaded screenshots before uploading the new ones",
- is_string: false,
+ type: Boolean,
default_value: false),
FastlaneCore::ConfigItem.new(key: :submit_for_review,
env_name: "DELIVER_SUBMIT_FOR_REVIEW",
description: "Submit the new version for Review after uploading everything",
- is_string: false,
+ type: Boolean,
default_value: false),
FastlaneCore::ConfigItem.new(key: :reject_if_possible,
env_name: "DELIVER_REJECT_IF_POSSIBLE",
description: "Rejects the previously submitted build if it's in a state where it's possible",
- is_string: false,
+ type: Boolean,
default_value: false),
# release
FastlaneCore::ConfigItem.new(key: :automatic_release,
env_name: "DELIVER_AUTOMATIC_RELEASE",
@@ -195,50 +196,48 @@
end),
FastlaneCore::ConfigItem.new(key: :phased_release,
env_name: "DELIVER_PHASED_RELEASE",
description: "Enable the phased release feature of iTC",
optional: true,
- is_string: false,
+ type: Boolean,
default_value: false),
FastlaneCore::ConfigItem.new(key: :reset_ratings,
env_name: "DELIVER_RESET_RATINGS",
description: "Reset the summary rating when you release a new version of the application",
optional: true,
- is_string: false,
+ type: Boolean,
default_value: false),
# other app configuration
FastlaneCore::ConfigItem.new(key: :price_tier,
short_option: "-r",
env_name: "DELIVER_PRICE_TIER",
description: "The price tier of this application",
- is_string: false,
+ type: Integer,
optional: true),
FastlaneCore::ConfigItem.new(key: :app_rating_config_path,
short_option: "-g",
env_name: "DELIVER_APP_RATING_CONFIG_PATH",
description: "Path to the app rating's config",
- is_string: true,
optional: true,
verify_block: proc do |value|
UI.user_error!("Could not find config file at path '#{File.expand_path(value)}'") unless File.exist?(value)
UI.user_error!("'#{value}' doesn't seem to be a JSON file") unless FastlaneCore::Helper.json_file?(File.expand_path(value))
end),
FastlaneCore::ConfigItem.new(key: :submission_information,
short_option: "-b",
description: "Extra information for the submission (e.g. compliance specifications, IDFA settings)",
- is_string: false,
type: Hash,
optional: true),
# affiliation
FastlaneCore::ConfigItem.new(key: :team_id,
short_option: "-k",
env_name: "DELIVER_TEAM_ID",
description: "The ID of your App Store Connect team if you're in multiple teams",
optional: true,
- is_string: false, # as we also allow integers, which we convert to strings anyway
+ skip_type_validation: true, # as we also allow integers, which we convert to strings anyway
code_gen_sensitive: true,
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_id),
default_value_dynamic: true,
verify_block: proc do |value|
ENV["FASTLANE_ITC_TEAM_ID"] = value.to_s
@@ -257,11 +256,10 @@
FastlaneCore::ConfigItem.new(key: :dev_portal_team_id,
short_option: "-s",
env_name: "DELIVER_DEV_PORTAL_TEAM_ID",
description: "The short ID of your Developer Portal team, if you're in multiple teams. Different from your iTC team ID!",
optional: true,
- is_string: true,
code_gen_sensitive: true,
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
default_value_dynamic: true,
verify_block: proc do |value|
ENV["FASTLANE_TEAM_ID"] = value.to_s
@@ -275,40 +273,39 @@
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name),
default_value_dynamic: true,
verify_block: proc do |value|
ENV["FASTLANE_TEAM_NAME"] = value.to_s
end),
- # rubocop:disable Metrics/LineLength
+ # rubocop:disable Layout/LineLength
FastlaneCore::ConfigItem.new(key: :itc_provider,
env_name: "DELIVER_ITC_PROVIDER",
description: "The provider short name to be used with the iTMSTransporter to identify your team. This value will override the automatically detected provider short name. To get provider short name run `pathToXcode.app/Contents/Applications/Application\\ Loader.app/Contents/itms/bin/iTMSTransporter -m provider -u 'USERNAME' -p 'PASSWORD' -account_type itunes_connect -v off`. The short names of providers should be listed in the second column",
optional: true,
code_gen_sensitive: true,
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_provider),
default_value_dynamic: true),
- # rubocop:enable Metrics/LineLength
+ # rubocop:enable Layout/LineLength
# precheck
FastlaneCore::ConfigItem.new(key: :run_precheck_before_submit,
short_option: "-x",
env_name: "DELIVER_RUN_PRECHECK_BEFORE_SUBMIT",
description: "Run precheck before submitting to app review",
- is_string: false,
+ type: Boolean,
default_value: true),
FastlaneCore::ConfigItem.new(key: :precheck_default_rule_level,
short_option: "-d",
env_name: "DELIVER_PRECHECK_DEFAULT_RULE_LEVEL",
description: "The default precheck rule level unless otherwise configured",
- is_string: false,
+ type: Symbol,
default_value: :warn),
# App Metadata
FastlaneCore::ConfigItem.new(key: :individual_metadata_items,
env_name: "DELIVER_INDIVUDAL_METADATA_ITEMS",
description: "An array of localized metadata items to upload individually by language so that errors can be identified. E.g. ['name', 'keywords', 'description']. Note: slow",
deprecated: "Removed after the migration to the new App Store Connect API in June 2020",
- is_string: false,
type: Array,
optional: true),
# Non Localised
FastlaneCore::ConfigItem.new(key: :app_icon,
@@ -324,78 +321,67 @@
optional: true,
short_option: "-q"),
FastlaneCore::ConfigItem.new(key: :copyright,
env_name: "DELIVER_COPYRIGHT",
description: "Metadata: The copyright notice",
- optional: true,
- is_string: true),
+ optional: true),
FastlaneCore::ConfigItem.new(key: :primary_category,
env_name: "DELIVER_PRIMARY_CATEGORY",
description: "Metadata: The english name of the primary category (e.g. `Business`, `Books`)",
- optional: true,
- is_string: true),
+ optional: true),
FastlaneCore::ConfigItem.new(key: :secondary_category,
env_name: "DELIVER_SECONDARY_CATEGORY",
description: "Metadata: The english name of the secondary category (e.g. `Business`, `Books`)",
- optional: true,
- is_string: true),
+ optional: true),
FastlaneCore::ConfigItem.new(key: :primary_first_sub_category,
env_name: "DELIVER_PRIMARY_FIRST_SUB_CATEGORY",
description: "Metadata: The english name of the primary first sub category (e.g. `Educational`, `Puzzle`)",
- optional: true,
- is_string: true),
+ optional: true),
FastlaneCore::ConfigItem.new(key: :primary_second_sub_category,
env_name: "DELIVER_PRIMARY_SECOND_SUB_CATEGORY",
description: "Metadata: The english name of the primary second sub category (e.g. `Educational`, `Puzzle`)",
- optional: true,
- is_string: true),
+ optional: true),
FastlaneCore::ConfigItem.new(key: :secondary_first_sub_category,
env_name: "DELIVER_SECONDARY_FIRST_SUB_CATEGORY",
description: "Metadata: The english name of the secondary first sub category (e.g. `Educational`, `Puzzle`)",
- optional: true,
- is_string: true),
+ optional: true),
FastlaneCore::ConfigItem.new(key: :secondary_second_sub_category,
env_name: "DELIVER_SECONDARY_SECOND_SUB_CATEGORY",
description: "Metadata: The english name of the secondary second sub category (e.g. `Educational`, `Puzzle`)",
- optional: true,
- is_string: true),
+ optional: true),
FastlaneCore::ConfigItem.new(key: :trade_representative_contact_information,
description: "Metadata: A hash containing the trade representative contact information",
optional: true,
- is_string: false,
+ deprecated: "This is no longer used by App Store Connect",
type: Hash),
FastlaneCore::ConfigItem.new(key: :app_review_information,
description: "Metadata: A hash containing the review information",
optional: true,
- is_string: false,
type: Hash),
FastlaneCore::ConfigItem.new(key: :app_review_attachment_file,
env_name: "DELIVER_APP_REVIEW_ATTACHMENT_FILE",
description: "Metadata: Path to the app review attachment file",
- optional: true,
- is_string: true),
+ optional: true),
# Localised
FastlaneCore::ConfigItem.new(key: :description,
description: "Metadata: The localised app description",
optional: true,
- is_string: false),
+ type: Hash),
FastlaneCore::ConfigItem.new(key: :name,
description: "Metadata: The localised app name",
optional: true,
- is_string: false),
+ type: Hash),
FastlaneCore::ConfigItem.new(key: :subtitle,
description: "Metadata: The localised app subtitle",
optional: true,
- is_string: false,
type: Hash,
verify_block: proc do |value|
UI.user_error!(":subtitle must be a hash, with the language being the key") unless value.kind_of?(Hash)
end),
FastlaneCore::ConfigItem.new(key: :keywords,
description: "Metadata: An array of localised keywords",
optional: true,
- is_string: false,
type: Hash,
verify_block: proc do |value|
UI.user_error!(":keywords must be a hash, with the language being the key") unless value.kind_of?(Hash)
value.each do |language, keywords|
# Auto-convert array to string
@@ -406,35 +392,34 @@
end
end),
FastlaneCore::ConfigItem.new(key: :promotional_text,
description: "Metadata: An array of localised promotional texts",
optional: true,
- is_string: false,
type: Hash,
verify_block: proc do |value|
UI.user_error!(":keywords must be a hash, with the language being the key") unless value.kind_of?(Hash)
end),
FastlaneCore::ConfigItem.new(key: :release_notes,
description: "Metadata: Localised release notes for this version",
optional: true,
- is_string: false),
+ type: Hash),
FastlaneCore::ConfigItem.new(key: :privacy_url,
description: "Metadata: Localised privacy url",
optional: true,
- is_string: false),
+ type: Hash),
FastlaneCore::ConfigItem.new(key: :apple_tv_privacy_policy,
description: "Metadata: Localised Apple TV privacy policy text",
optional: true,
- is_string: false),
+ type: Hash),
FastlaneCore::ConfigItem.new(key: :support_url,
description: "Metadata: Localised support url",
optional: true,
- is_string: false),
+ type: Hash),
FastlaneCore::ConfigItem.new(key: :marketing_url,
description: "Metadata: Localised marketing url",
optional: true,
- is_string: false),
+ type: Hash),
# The verify_block has been removed from here and verification now happens in Deliver::DetectValues
# Verification needed Spaceship::Tunes.client which required the Deliver::Runner to already by started
FastlaneCore::ConfigItem.new(key: :languages,
env_name: "DELIVER_LANGUAGES",
description: "Metadata: List of languages to activate",
@@ -442,23 +427,24 @@
optional: true),
FastlaneCore::ConfigItem.new(key: :ignore_language_directory_validation,
env_name: "DELIVER_IGNORE_LANGUAGE_DIRECTORY_VALIDATION",
description: "Ignore errors when invalid languages are found in metadata and screenshot directories",
default_value: false,
- is_string: false),
+ type: Boolean),
FastlaneCore::ConfigItem.new(key: :precheck_include_in_app_purchases,
env_name: "PRECHECK_INCLUDE_IN_APP_PURCHASES",
description: "Should precheck check in-app purchases?",
- is_string: false,
+ type: Boolean,
optional: true,
default_value: true),
# internal
FastlaneCore::ConfigItem.new(key: :app,
short_option: "-p",
env_name: "DELIVER_APP_ID",
description: "The (spaceship) app ID of the app you want to use/modify",
- is_string: false) # don't add any verification here, as it's used to store a spaceship ref
+ optional: true,
+ type: Integer)
]
end
end
# rubocop:enable Metrics/ClassLength
end