fastlane 2.147.0 → 2.150.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (141) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +82 -82
  3. data/cert/lib/cert/commands_generator.rb +1 -0
  4. data/credentials_manager/lib/credentials_manager/cli.rb +2 -0
  5. data/deliver/lib/deliver.rb +0 -1
  6. data/deliver/lib/deliver/app_screenshot.rb +28 -27
  7. data/deliver/lib/deliver/commands_generator.rb +1 -0
  8. data/deliver/lib/deliver/html_generator.rb +2 -2
  9. data/deliver/lib/deliver/options.rb +6 -11
  10. data/deliver/lib/deliver/runner.rb +7 -4
  11. data/deliver/lib/deliver/setup.rb +5 -30
  12. data/deliver/lib/deliver/submit_for_review.rb +124 -83
  13. data/deliver/lib/deliver/upload_metadata.rb +284 -143
  14. data/deliver/lib/deliver/upload_price_tier.rb +15 -8
  15. data/deliver/lib/deliver/upload_screenshots.rb +86 -37
  16. data/fastlane/lib/assets/s3_html_template.erb +1 -1
  17. data/fastlane/lib/fastlane/actions/crashlytics.rb +0 -4
  18. data/fastlane/lib/fastlane/actions/docs/build_app.md +1 -1
  19. data/fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md +42 -2
  20. data/fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md +1 -1
  21. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +2 -2
  22. data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +3 -11
  23. data/fastlane/lib/fastlane/actions/docs/upload_to_play_store.md +15 -2
  24. data/fastlane/lib/fastlane/actions/download_dsyms.rb +7 -1
  25. data/fastlane/lib/fastlane/actions/get_managed_play_store_publishing_rights.rb +1 -1
  26. data/fastlane/lib/fastlane/actions/google_play_track_release_names.rb +74 -0
  27. data/fastlane/lib/fastlane/actions/hipchat.rb +1 -1
  28. data/fastlane/lib/fastlane/actions/push_to_git_remote.rb +1 -1
  29. data/fastlane/lib/fastlane/actions/slack.rb +2 -2
  30. data/fastlane/lib/fastlane/actions/slather.rb +8 -1
  31. data/fastlane/lib/fastlane/actions/spm.rb +7 -0
  32. data/fastlane/lib/fastlane/actions/swiftlint.rb +14 -0
  33. data/fastlane/lib/fastlane/actions/sync_code_signing.rb +1 -1
  34. data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +3 -34
  35. data/fastlane/lib/fastlane/actions/xcodebuild.rb +4 -4
  36. data/fastlane/lib/fastlane/cli_tools_distributor.rb +28 -6
  37. data/fastlane/lib/fastlane/commands_generator.rb +1 -1
  38. data/fastlane/lib/fastlane/documentation/actions_list.rb +1 -1
  39. data/fastlane/lib/fastlane/lane.rb +3 -3
  40. data/fastlane/lib/fastlane/lane_manager.rb +0 -10
  41. data/fastlane/lib/fastlane/plugins/plugin_manager.rb +3 -3
  42. data/fastlane/lib/fastlane/plugins/template/.github/workflows/test.yml +29 -0
  43. data/fastlane/lib/fastlane/swift_fastlane_function.rb +22 -5
  44. data/fastlane/lib/fastlane/swift_lane_manager.rb +0 -8
  45. data/fastlane/lib/fastlane/version.rb +1 -1
  46. data/fastlane/swift/ControlCommand.swift +1 -0
  47. data/fastlane/swift/Deliverfile.swift +1 -1
  48. data/fastlane/swift/Fastlane.swift +140 -30
  49. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme +3 -9
  50. data/fastlane/swift/Gymfile.swift +1 -1
  51. data/fastlane/swift/GymfileProtocol.swift +1 -1
  52. data/fastlane/swift/Matchfile.swift +1 -1
  53. data/fastlane/swift/MatchfileProtocol.swift +5 -1
  54. data/fastlane/swift/Precheckfile.swift +1 -1
  55. data/fastlane/swift/RubyCommand.swift +29 -6
  56. data/fastlane/swift/RubyCommandable.swift +1 -0
  57. data/fastlane/swift/Runner.swift +85 -13
  58. data/fastlane/swift/Scanfile.swift +1 -1
  59. data/fastlane/swift/ScanfileProtocol.swift +10 -2
  60. data/fastlane/swift/Screengrabfile.swift +1 -1
  61. data/fastlane/swift/Snapshotfile.swift +1 -1
  62. data/fastlane/swift/SnapshotfileProtocol.swift +17 -1
  63. data/fastlane/swift/SocketClient.swift +76 -45
  64. data/fastlane/swift/SocketClientDelegateProtocol.swift +1 -1
  65. data/fastlane/swift/SocketResponse.swift +1 -0
  66. data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +1 -3
  67. data/fastlane_core/lib/fastlane_core/pkg_file_analyser.rb +7 -0
  68. data/frameit/lib/frameit/commands_generator.rb +1 -0
  69. data/frameit/lib/frameit/device_types.rb +100 -100
  70. data/gym/lib/gym/generators/package_command_generator.rb +4 -0
  71. data/gym/lib/gym/generators/package_command_generator_xcode7.rb +4 -0
  72. data/gym/lib/gym/options.rb +1 -1
  73. data/gym/lib/gym/runner.rb +14 -0
  74. data/match/lib/match/commands_generator.rb +1 -0
  75. data/match/lib/match/generator.rb +2 -1
  76. data/match/lib/match/nuke.rb +21 -16
  77. data/match/lib/match/options.rb +18 -1
  78. data/match/lib/match/storage/git_storage.rb +4 -0
  79. data/match/lib/match/storage/google_cloud_storage.rb +4 -0
  80. data/match/lib/match/storage/interface.rb +4 -0
  81. data/match/lib/match/storage/s3_storage.rb +4 -0
  82. data/pem/lib/pem/commands_generator.rb +1 -0
  83. data/pilot/lib/pilot/build_manager.rb +23 -7
  84. data/pilot/lib/pilot/options.rb +5 -0
  85. data/produce/lib/produce/commands_generator.rb +1 -0
  86. data/produce/lib/produce/itunes_connect.rb +20 -20
  87. data/produce/lib/produce/options.rb +3 -3
  88. data/scan/lib/scan/detect_values.rb +3 -0
  89. data/scan/lib/scan/options.rb +20 -2
  90. data/scan/lib/scan/test_command_generator.rb +6 -1
  91. data/scan/lib/scan/test_result_parser.rb +9 -2
  92. data/screengrab/lib/screengrab/runner.rb +10 -9
  93. data/sigh/lib/assets/resign.sh +7 -7
  94. data/sigh/lib/sigh/commands_generator.rb +1 -0
  95. data/sigh/lib/sigh/options.rb +7 -1
  96. data/sigh/lib/sigh/runner.rb +2 -1
  97. data/snapshot/lib/assets/SnapshotHelper.swift +16 -37
  98. data/snapshot/lib/assets/SnapshotHelperXcode8.swift +3 -3
  99. data/snapshot/lib/snapshot/detect_values.rb +15 -0
  100. data/snapshot/lib/snapshot/options.rb +31 -0
  101. data/snapshot/lib/snapshot/reports_generator.rb +8 -1
  102. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +3 -1
  103. data/snapshot/lib/snapshot/test_command_generator.rb +8 -3
  104. data/snapshot/lib/snapshot/test_command_generator_base.rb +7 -1
  105. data/spaceship/lib/spaceship/.DS_Store +0 -0
  106. data/spaceship/lib/spaceship/client.rb +9 -1
  107. data/spaceship/lib/spaceship/commands_generator.rb +1 -0
  108. data/spaceship/lib/spaceship/connect_api.rb +21 -2
  109. data/spaceship/lib/spaceship/connect_api/client.rb +47 -11
  110. data/spaceship/lib/spaceship/connect_api/model.rb +1 -1
  111. data/spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb +109 -0
  112. data/spaceship/lib/spaceship/connect_api/models/app.rb +113 -3
  113. data/spaceship/lib/spaceship/connect_api/models/app_category.rb +94 -0
  114. data/spaceship/lib/spaceship/connect_api/models/app_info.rb +74 -0
  115. data/spaceship/lib/spaceship/connect_api/models/app_info_localization.rb +38 -0
  116. data/spaceship/lib/spaceship/connect_api/models/app_price.rb +22 -0
  117. data/spaceship/lib/spaceship/connect_api/models/app_price_tier.rb +12 -0
  118. data/spaceship/lib/spaceship/connect_api/models/app_review_attachment.rb +81 -0
  119. data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +117 -0
  120. data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +101 -0
  121. data/spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb +51 -0
  122. data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +182 -0
  123. data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +70 -0
  124. data/spaceship/lib/spaceship/connect_api/models/app_store_version_phased_release.rb +36 -0
  125. data/spaceship/lib/spaceship/connect_api/models/app_store_version_submission.rb +26 -0
  126. data/spaceship/lib/spaceship/connect_api/models/build.rb +8 -0
  127. data/spaceship/lib/spaceship/connect_api/models/idfa_declaration.rb +40 -0
  128. data/spaceship/lib/spaceship/connect_api/models/reset_ratings_request.rb +26 -0
  129. data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +10 -3
  130. data/spaceship/lib/spaceship/connect_api/tunes/client.rb +33 -0
  131. data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +703 -0
  132. data/spaceship/lib/spaceship/errors.rb +3 -0
  133. data/spaceship/lib/spaceship/spaceauth_runner.rb +2 -2
  134. data/supply/lib/supply/client.rb +19 -0
  135. data/supply/lib/supply/commands_generator.rb +1 -0
  136. data/supply/lib/supply/options.rb +9 -0
  137. data/supply/lib/supply/reader.rb +16 -0
  138. data/supply/lib/supply/uploader.rb +4 -0
  139. metadata +52 -47
  140. data/deliver/lib/deliver/upload_assets.rb +0 -27
  141. data/supply/lib/supply/.client.rb.swp +0 -0
@@ -76,4 +76,7 @@ module Spaceship
76
76
 
77
77
  # Raised when 504 is received from App Store Connect
78
78
  class GatewayTimeoutError < BasicPreferredInfoError; end
79
+
80
+ # Raised when 403 is received from portal request
81
+ class AccessForbiddenError < BasicPreferredInfoError; end
79
82
  end
@@ -39,8 +39,8 @@ module Spaceship
39
39
  # value: HSARMTKNSRVTWFlaF/ek8asaa9lymMA0dN8JQ6pY7B3F5kdqTxJvMT19EVEFX8EQudB/uNwBHOHzaa30KYTU/eCP/UF7vGTgxs6PAnlVWKscWssOVHfP2IKWUPaa4Dn+I6ilA7eAFQsiaaVT
40
40
  cookies = YAML.safe_load(
41
41
  itc_cookie_content,
42
- [HTTP::Cookie, Time], # classes whitelist
43
- [], # symbols whitelist
42
+ [HTTP::Cookie, Time], # classes allowlist
43
+ [], # symbols allowlist
44
44
  true # allow YAML aliases
45
45
  )
46
46
 
@@ -4,6 +4,7 @@ AndroidPublisher = Google::Apis::AndroidpublisherV3
4
4
 
5
5
  require 'net/http'
6
6
 
7
+ # rubocop:disable Metrics/ClassLength
7
8
  module Supply
8
9
  class AbstractGoogleServiceClient
9
10
  SCOPE = nil
@@ -410,6 +411,23 @@ module Supply
410
411
  end
411
412
  end
412
413
 
414
+ # Get list of release names for track
415
+ def track_releases(track)
416
+ ensure_active_edit!
417
+
418
+ begin
419
+ result = client.get_edit_track(
420
+ current_package_name,
421
+ current_edit.id,
422
+ track
423
+ )
424
+ return result.releases || []
425
+ rescue Google::Apis::ClientError => e
426
+ return [] if e.status_code == 404 && e.to_s.include?("trackEmpty")
427
+ raise
428
+ end
429
+ end
430
+
413
431
  def upload_changelogs(track, track_name)
414
432
  ensure_active_edit!
415
433
 
@@ -529,3 +547,4 @@ module Supply
529
547
  end
530
548
  end
531
549
  end
550
+ # rubocop:enable Metrics/ClassLength
@@ -24,6 +24,7 @@ module Supply
24
24
  always_trace!
25
25
 
26
26
  global_option('--verbose') { FastlaneCore::Globals.verbose = true }
27
+ global_option('--env STRING[,STRING2]', String, 'Add environment(s) to use with `dotenv`')
27
28
 
28
29
  command :run do |c|
29
30
  c.syntax = 'fastlane supply'
@@ -281,6 +281,15 @@ module Supply
281
281
  UI.user_error!("Version code '#{version_code}' is not an integer") if version_code == 0
282
282
  end
283
283
  end),
284
+ FastlaneCore::ConfigItem.new(key: :in_app_update_priority,
285
+ env_name: "SUPPLY_IN_APP_UPDATE_PRIORITY",
286
+ optional: true,
287
+ type: Integer,
288
+ description: "In-app update priority for all the newly added apks in the release. Can take values between [0,5]",
289
+ verify_block: proc do |in_app_update_priority|
290
+ in_app_update_priority = in_app_update_priority.to_i
291
+ UI.user_error!("Invalid in_app_update_priority value '#{in_app_update_priority}'. Values must be between [0,5]") unless (0..5).member?(in_app_update_priority)
292
+ end),
284
293
  FastlaneCore::ConfigItem.new(key: :obb_main_references_version,
285
294
  env_name: "SUPPLY_OBB_MAIN_REFERENCES_VERSION",
286
295
  description: "References version of 'main' expansion file",
@@ -16,6 +16,22 @@ module Supply
16
16
  version_codes
17
17
  end
18
18
 
19
+ def track_release_names
20
+ track = Supply.config[:track]
21
+
22
+ client.begin_edit(package_name: Supply.config[:package_name])
23
+ release_names = client.track_releases(track).map(&:name)
24
+ client.abort_current_edit
25
+
26
+ if release_names.empty?
27
+ UI.important("No release names found in track '#{track}'")
28
+ else
29
+ UI.success("Found '#{release_names.join(', ')}' release names in track '#{track}'")
30
+ end
31
+
32
+ release_names
33
+ end
34
+
19
35
  private
20
36
 
21
37
  def client
@@ -391,6 +391,10 @@ module Supply
391
391
  end
392
392
  end
393
393
 
394
+ if Supply.config[:in_app_update_priority]
395
+ track_release.in_app_update_priority = Supply.config[:in_app_update_priority].to_i
396
+ end
397
+
394
398
  tracks = client.tracks(Supply.config[:track])
395
399
  track = tracks.first
396
400
  if track
metadata CHANGED
@@ -1,35 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.147.0
4
+ version: 2.150.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
- - Josh Holtz
8
- - Joshua Liebowitz
9
- - Felix Krause
10
- - Iulian Onofrei
11
- - Stefan Natchev
12
- - Fumiya Nakamura
13
- - Jorge Revuelta H
14
- - Helmut Januschka
15
7
  - Manu Wallner
16
- - Olivier Halligon
17
8
  - Danielle Tomlinson
18
- - Jérôme Lacoste
19
9
  - Matthew Ellis
10
+ - Stefan Natchev
11
+ - Jimmy Dee
12
+ - Kohki Miki
13
+ - Jorge Revuelta H
14
+ - Daniel Jankowski
15
+ - Jérôme Lacoste
16
+ - Andrew McBurney
20
17
  - Max Ott
21
- - Aaron Brager
18
+ - Iulian Onofrei
19
+ - Helmut Januschka
20
+ - Jan Piotrowski
22
21
  - Luka Mirosevic
23
- - Andrew McBurney
22
+ - Felix Krause
23
+ - Fumiya Nakamura
24
+ - Olivier Halligon
24
25
  - Maksym Grebenets
25
- - Daniel Jankowski
26
- - Jan Piotrowski
27
- - Kohki Miki
28
- - Jimmy Dee
29
- autorequire:
26
+ - Aaron Brager
27
+ - Josh Holtz
28
+ - Joshua Liebowitz
29
+ autorequire:
30
30
  bindir: bin
31
31
  cert_chain: []
32
- date: 2020-05-12 00:00:00.000000000 Z
32
+ date: 2020-06-21 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: slack-notifier
@@ -213,20 +213,6 @@ dependencies:
213
213
  - - "~>"
214
214
  - !ruby/object:Gem::Version
215
215
  version: 1.0.0
216
- - !ruby/object:Gem::Dependency
217
- name: public_suffix
218
- requirement: !ruby/object:Gem::Requirement
219
- requirements:
220
- - - "~>"
221
- - !ruby/object:Gem::Version
222
- version: 2.0.0
223
- type: :runtime
224
- prerelease: false
225
- version_requirements: !ruby/object:Gem::Requirement
226
- requirements:
227
- - - "~>"
228
- - !ruby/object:Gem::Version
229
- version: 2.0.0
230
216
  - !ruby/object:Gem::Dependency
231
217
  name: tty-screen
232
218
  requirement: !ruby/object:Gem::Requirement
@@ -625,20 +611,20 @@ dependencies:
625
611
  requirements:
626
612
  - - ">="
627
613
  - !ruby/object:Gem::Version
628
- version: 0.29.2
614
+ version: 0.37.0
629
615
  - - "<"
630
616
  - !ruby/object:Gem::Version
631
- version: 0.37.0
617
+ version: 0.39.0
632
618
  type: :runtime
633
619
  prerelease: false
634
620
  version_requirements: !ruby/object:Gem::Requirement
635
621
  requirements:
636
622
  - - ">="
637
623
  - !ruby/object:Gem::Version
638
- version: 0.29.2
624
+ version: 0.37.0
639
625
  - - "<"
640
626
  - !ruby/object:Gem::Version
641
- version: 0.37.0
627
+ version: 0.39.0
642
628
  - !ruby/object:Gem::Dependency
643
629
  name: google-cloud-storage
644
630
  requirement: !ruby/object:Gem::Requirement
@@ -697,16 +683,16 @@ dependencies:
697
683
  name: rake
698
684
  requirement: !ruby/object:Gem::Requirement
699
685
  requirements:
700
- - - "<"
686
+ - - ">="
701
687
  - !ruby/object:Gem::Version
702
- version: '12'
688
+ version: '0'
703
689
  type: :development
704
690
  prerelease: false
705
691
  version_requirements: !ruby/object:Gem::Requirement
706
692
  requirements:
707
- - - "<"
693
+ - - ">="
708
694
  - !ruby/object:Gem::Version
709
- version: '12'
695
+ version: '0'
710
696
  - !ruby/object:Gem::Dependency
711
697
  name: rspec
712
698
  requirement: !ruby/object:Gem::Requirement
@@ -1003,7 +989,6 @@ files:
1003
989
  - deliver/lib/deliver/runner.rb
1004
990
  - deliver/lib/deliver/setup.rb
1005
991
  - deliver/lib/deliver/submit_for_review.rb
1006
- - deliver/lib/deliver/upload_assets.rb
1007
992
  - deliver/lib/deliver/upload_metadata.rb
1008
993
  - deliver/lib/deliver/upload_price_tier.rb
1009
994
  - deliver/lib/deliver/upload_screenshots.rb
@@ -1132,6 +1117,7 @@ files:
1132
1117
  - fastlane/lib/fastlane/actions/git_submodule_update.rb
1133
1118
  - fastlane/lib/fastlane/actions/git_tag_exists.rb
1134
1119
  - fastlane/lib/fastlane/actions/github_api.rb
1120
+ - fastlane/lib/fastlane/actions/google_play_track_release_names.rb
1135
1121
  - fastlane/lib/fastlane/actions/google_play_track_version_codes.rb
1136
1122
  - fastlane/lib/fastlane/actions/gradle.rb
1137
1123
  - fastlane/lib/fastlane/actions/gym.rb
@@ -1315,6 +1301,7 @@ files:
1315
1301
  - fastlane/lib/fastlane/plugins/plugins.rb
1316
1302
  - fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb
1317
1303
  - fastlane/lib/fastlane/plugins/template/.circleci/config.yml
1304
+ - fastlane/lib/fastlane/plugins/template/.github/workflows/test.yml
1318
1305
  - fastlane/lib/fastlane/plugins/template/.gitignore
1319
1306
  - fastlane/lib/fastlane/plugins/template/.rspec
1320
1307
  - fastlane/lib/fastlane/plugins/template/.rubocop.yml
@@ -1645,6 +1632,7 @@ files:
1645
1632
  - spaceship/lib/assets/languageMapping.json
1646
1633
  - spaceship/lib/assets/languageMappingReadable.json
1647
1634
  - spaceship/lib/spaceship.rb
1635
+ - spaceship/lib/spaceship/.DS_Store
1648
1636
  - spaceship/lib/spaceship/babosa_fix.rb
1649
1637
  - spaceship/lib/spaceship/base.rb
1650
1638
  - spaceship/lib/spaceship/client.rb
@@ -1652,7 +1640,21 @@ files:
1652
1640
  - spaceship/lib/spaceship/connect_api.rb
1653
1641
  - spaceship/lib/spaceship/connect_api/client.rb
1654
1642
  - spaceship/lib/spaceship/connect_api/model.rb
1643
+ - spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb
1655
1644
  - spaceship/lib/spaceship/connect_api/models/app.rb
1645
+ - spaceship/lib/spaceship/connect_api/models/app_category.rb
1646
+ - spaceship/lib/spaceship/connect_api/models/app_info.rb
1647
+ - spaceship/lib/spaceship/connect_api/models/app_info_localization.rb
1648
+ - spaceship/lib/spaceship/connect_api/models/app_price.rb
1649
+ - spaceship/lib/spaceship/connect_api/models/app_price_tier.rb
1650
+ - spaceship/lib/spaceship/connect_api/models/app_review_attachment.rb
1651
+ - spaceship/lib/spaceship/connect_api/models/app_screenshot.rb
1652
+ - spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb
1653
+ - spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb
1654
+ - spaceship/lib/spaceship/connect_api/models/app_store_version.rb
1655
+ - spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb
1656
+ - spaceship/lib/spaceship/connect_api/models/app_store_version_phased_release.rb
1657
+ - spaceship/lib/spaceship/connect_api/models/app_store_version_submission.rb
1656
1658
  - spaceship/lib/spaceship/connect_api/models/beta_app_localization.rb
1657
1659
  - spaceship/lib/spaceship/connect_api/models/beta_app_review_detail.rb
1658
1660
  - spaceship/lib/spaceship/connect_api/models/beta_app_review_submission.rb
@@ -1670,8 +1672,10 @@ files:
1670
1672
  - spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb
1671
1673
  - spaceship/lib/spaceship/connect_api/models/certificate.rb
1672
1674
  - spaceship/lib/spaceship/connect_api/models/device.rb
1675
+ - spaceship/lib/spaceship/connect_api/models/idfa_declaration.rb
1673
1676
  - spaceship/lib/spaceship/connect_api/models/pre_release_version.rb
1674
1677
  - spaceship/lib/spaceship/connect_api/models/profile.rb
1678
+ - spaceship/lib/spaceship/connect_api/models/reset_ratings_request.rb
1675
1679
  - spaceship/lib/spaceship/connect_api/models/user.rb
1676
1680
  - spaceship/lib/spaceship/connect_api/provisioning/client.rb
1677
1681
  - spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb
@@ -1679,6 +1683,8 @@ files:
1679
1683
  - spaceship/lib/spaceship/connect_api/testflight/client.rb
1680
1684
  - spaceship/lib/spaceship/connect_api/testflight/testflight.rb
1681
1685
  - spaceship/lib/spaceship/connect_api/token.rb
1686
+ - spaceship/lib/spaceship/connect_api/tunes/client.rb
1687
+ - spaceship/lib/spaceship/connect_api/tunes/tunes.rb
1682
1688
  - spaceship/lib/spaceship/connect_api/users/client.rb
1683
1689
  - spaceship/lib/spaceship/connect_api/users/users.rb
1684
1690
  - spaceship/lib/spaceship/du/du_client.rb
@@ -1784,7 +1790,6 @@ files:
1784
1790
  - spaceship/lib/spaceship/ui.rb
1785
1791
  - supply/README.md
1786
1792
  - supply/lib/supply.rb
1787
- - supply/lib/supply/.client.rb.swp
1788
1793
  - supply/lib/supply/apk_listing.rb
1789
1794
  - supply/lib/supply/client.rb
1790
1795
  - supply/lib/supply/commands_generator.rb
@@ -1800,7 +1805,7 @@ licenses:
1800
1805
  - MIT
1801
1806
  metadata:
1802
1807
  docs_url: https://docs.fastlane.tools
1803
- post_install_message:
1808
+ post_install_message:
1804
1809
  rdoc_options: []
1805
1810
  require_paths:
1806
1811
  - credentials_manager/lib
@@ -1828,12 +1833,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
1828
1833
  version: '2.4'
1829
1834
  required_rubygems_version: !ruby/object:Gem::Requirement
1830
1835
  requirements:
1831
- - - ">="
1836
+ - - ">"
1832
1837
  - !ruby/object:Gem::Version
1833
- version: '0'
1838
+ version: 1.3.1
1834
1839
  requirements: []
1835
1840
  rubygems_version: 3.0.6
1836
- signing_key:
1841
+ signing_key:
1837
1842
  specification_version: 4
1838
1843
  summary: The easiest way to automate beta deployments and releases for your iOS and
1839
1844
  Android apps
@@ -1,27 +0,0 @@
1
- require_relative 'module'
2
-
3
- module Deliver
4
- class UploadAssets
5
- SUPPORTED_ICON_EXTENSIONS = [".png", ".jpg", ".jpeg"]
6
- def upload(options)
7
- return unless options[:app_icon] || options[:apple_watch_app_icon]
8
- return if options[:edit_live]
9
- app = options[:app]
10
-
11
- v = app.edit_version(platform: options[:platform])
12
- UI.user_error!("Could not find a version to edit for app '#{app.name}'") unless v
13
-
14
- if options[:app_icon]
15
- UI.message("Uploading app icon...")
16
- v.upload_large_icon!(options[:app_icon])
17
- end
18
-
19
- if options[:apple_watch_app_icon]
20
- UI.message("Uploading apple watchapp icon...")
21
- v.upload_watch_icon!(options[:apple_watch_app_icon])
22
- end
23
-
24
- v.save!
25
- end
26
- end
27
- end