fastlane 2.117.0.beta.20190221200044 → 2.117.0.beta.20190222200022
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/deliver/lib/deliver/options.rb +5 -0
- data/deliver/lib/deliver/upload_metadata.rb +1 -0
- data/fastlane/lib/fastlane/actions/docs/create_app_online.md +3 -1
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +10 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44c55f41d474c807275bafa7ed8b3e6993d51546
|
4
|
+
data.tar.gz: 0b23483476b60ca8cc83c202a5b7647f11871bae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4025f7627eb92fd79807ea62f2c2091357c7d9d7aa63886d8b71037c8455e24963f4f9a0332b31ff22a088c115e6ba48e64e5a5947b00bf54b30a601a1262feb
|
7
|
+
data.tar.gz: 1b1952bb7ec90773eac1e59f365133d8c5ff3ca99877d42c9af479802c94c7daf7f7cacd1d150c4814869e87261348a8d106beca8f7e948469f365a2ec0b773f
|
@@ -166,6 +166,11 @@ module Deliver
|
|
166
166
|
optional: true,
|
167
167
|
is_string: false,
|
168
168
|
default_value: false),
|
169
|
+
FastlaneCore::ConfigItem.new(key: :reset_ratings,
|
170
|
+
description: "Reset the summary rating when you release a new version of the application",
|
171
|
+
optional: true,
|
172
|
+
is_string: false,
|
173
|
+
default_value: false),
|
169
174
|
|
170
175
|
# other app configuration
|
171
176
|
FastlaneCore::ConfigItem.new(key: :price_tier,
|
@@ -130,6 +130,7 @@ module Deliver
|
|
130
130
|
set_trade_representative_contact_information(v, options)
|
131
131
|
set_review_information(v, options)
|
132
132
|
set_app_rating(v, options)
|
133
|
+
v.ratings_reset = options[:reset_ratings]
|
133
134
|
|
134
135
|
Helper.show_loading_indicator("Uploading metadata to App Store Connect")
|
135
136
|
v.save!
|
@@ -236,9 +236,11 @@ lane :release do
|
|
236
236
|
# Optional
|
237
237
|
# App services can be enabled during app creation
|
238
238
|
enable_services: {
|
239
|
+
access_wifi: "on", # Valid values: "on", "off"
|
239
240
|
app_group: "on", # Valid values: "on", "off"
|
240
241
|
apple_pay: "on", # Valid values: "on", "off"
|
241
242
|
associated_domains: "on", # Valid values: "on", "off"
|
243
|
+
auto_fill_credential: "on", # Valid values: "on", "off"
|
242
244
|
data_protection: "complete", # Valid values: "complete", "unlessopen", "untilfirstauth",
|
243
245
|
game_center: "on", # Valid values: "on", "off"
|
244
246
|
health_kit: "on", # Valid values: "on", "off"
|
@@ -249,7 +251,7 @@ lane :release do
|
|
249
251
|
inter_app_audio: "on", # Valid values: "on", "off"
|
250
252
|
passbook: "on", # Valid values: "on", "off"
|
251
253
|
multipath: "on", # Valid values: "on", "off"
|
252
|
-
|
254
|
+
network_extension: "on", # Valid values: "on", "off"
|
253
255
|
nfc_tag_reading: "on", # Valid values: "on", "off"
|
254
256
|
personal_vpn: "on", # Valid values: "on", "off"
|
255
257
|
passbook: "on", # Valid values: "on", "off" (deprecated)
|
@@ -266,6 +266,16 @@ phased_release(true)
|
|
266
266
|
phased_release(false)
|
267
267
|
```
|
268
268
|
|
269
|
+
##### reset_ratings
|
270
|
+
|
271
|
+
Reset your app's summary rating for all territories. If set to `true`, it will reset rating when this version is released. Default behavior is to keep existing rating.
|
272
|
+
|
273
|
+
```ruby-skip-tests
|
274
|
+
reset_ratings(true)
|
275
|
+
# or
|
276
|
+
reset_ratings(false)
|
277
|
+
```
|
278
|
+
|
269
279
|
##### app_rating_config_path
|
270
280
|
You can set the app age ratings using _deliver_. You'll have to create and store a `JSON` configuration file. Copy the [template](https://github.com/fastlane/fastlane/blob/master/deliver/assets/example_rating_config.json) to your project folder and pass the path to the `JSON` file using the `app_rating_config_path` option.
|
271
281
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.117.0.beta.
|
2
|
+
VERSION = '2.117.0.beta.20190222200022'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.117.0.beta.
|
4
|
+
version: 2.117.0.beta.20190222200022
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jérôme Lacoste
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-02-
|
30
|
+
date: 2019-02-22 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1687,24 +1687,24 @@ metadata:
|
|
1687
1687
|
post_install_message:
|
1688
1688
|
rdoc_options: []
|
1689
1689
|
require_paths:
|
1690
|
-
-
|
1691
|
-
- gym/lib
|
1692
|
-
- fastlane_core/lib
|
1693
|
-
- supply/lib
|
1690
|
+
- credentials_manager/lib
|
1694
1691
|
- sigh/lib
|
1692
|
+
- snapshot/lib
|
1693
|
+
- cert/lib
|
1695
1694
|
- spaceship/lib
|
1696
|
-
-
|
1697
|
-
-
|
1698
|
-
- fastlane/lib
|
1699
|
-
- deliver/lib
|
1700
|
-
- scan/lib
|
1695
|
+
- pilot/lib
|
1696
|
+
- pem/lib
|
1701
1697
|
- match/lib
|
1702
1698
|
- screengrab/lib
|
1703
1699
|
- frameit/lib
|
1704
1700
|
- produce/lib
|
1705
|
-
-
|
1706
|
-
-
|
1707
|
-
-
|
1701
|
+
- fastlane/lib
|
1702
|
+
- fastlane_core/lib
|
1703
|
+
- deliver/lib
|
1704
|
+
- scan/lib
|
1705
|
+
- supply/lib
|
1706
|
+
- gym/lib
|
1707
|
+
- precheck/lib
|
1708
1708
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1709
1709
|
requirements:
|
1710
1710
|
- - ">="
|