fastlane/lib/fastlane/actions/artifactory.rb in fastlane-2.185.0 vs fastlane/lib/fastlane/actions/artifactory.rb in fastlane-2.185.1
- old
+ new
@@ -124,39 +124,41 @@
end),
FastlaneCore::ConfigItem.new(key: :password,
env_name: "FL_ARTIFACTORY_PASSWORD",
description: "Artifactory password",
sensitive: true,
+ code_gen_sensitive: true,
optional: true,
conflicting_options: [:api_key],
conflict_block: proc do |value|
UI.user_error!("You can't use option '#{value.key}' along with 'password'")
end),
FastlaneCore::ConfigItem.new(key: :api_key,
env_name: "FL_ARTIFACTORY_API_KEY",
description: "Artifactory API key",
sensitive: true,
+ code_gen_sensitive: true,
optional: true,
conflicting_options: [:username, :password],
conflict_block: proc do |value|
UI.user_error!("You can't use option '#{value.key}' along with 'api_key'")
end),
FastlaneCore::ConfigItem.new(key: :properties,
env_name: "FL_ARTIFACTORY_PROPERTIES",
description: "Artifact properties hash",
- is_string: false,
+ type: Hash,
default_value: {},
optional: true),
FastlaneCore::ConfigItem.new(key: :ssl_pem_file,
env_name: "FL_ARTIFACTORY_SSL_PEM_FILE",
description: "Location of pem file to use for ssl verification",
default_value: nil,
optional: true),
FastlaneCore::ConfigItem.new(key: :ssl_verify,
env_name: "FL_ARTIFACTORY_SSL_VERIFY",
description: "Verify SSL",
- is_string: false,
+ type: Boolean,
default_value: true,
optional: true),
FastlaneCore::ConfigItem.new(key: :proxy_username,
env_name: "FL_ARTIFACTORY_PROXY_USERNAME",
description: "Proxy username",
@@ -164,25 +166,22 @@
optional: true),
FastlaneCore::ConfigItem.new(key: :proxy_password,
env_name: "FL_ARTIFACTORY_PROXY_PASSWORD",
description: "Proxy password",
sensitive: true,
- default_value: nil,
+ code_gen_sensitive: true,
optional: true),
FastlaneCore::ConfigItem.new(key: :proxy_address,
env_name: "FL_ARTIFACTORY_PROXY_ADDRESS",
description: "Proxy address",
- default_value: nil,
optional: true),
FastlaneCore::ConfigItem.new(key: :proxy_port,
env_name: "FL_ARTIFACTORY_PROXY_PORT",
description: "Proxy port",
- default_value: nil,
optional: true),
FastlaneCore::ConfigItem.new(key: :read_timeout,
env_name: "FL_ARTIFACTORY_READ_TIMEOUT",
description: "Read timeout",
- default_value: nil,
optional: true)
]
end
end
end