fastlane 2.179.0 → 2.183.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +82 -82
  3. data/cert/lib/cert/commands_generator.rb +2 -1
  4. data/deliver/lib/assets/summary.html.erb +10 -10
  5. data/deliver/lib/deliver/commands_generator.rb +2 -1
  6. data/deliver/lib/deliver/languages.rb +1 -1
  7. data/deliver/lib/deliver/options.rb +2 -2
  8. data/deliver/lib/deliver/submit_for_review.rb +3 -3
  9. data/deliver/lib/deliver/upload_metadata.rb +1 -1
  10. data/fastlane/lib/fastlane/actions/actions_helper.rb +2 -2
  11. data/fastlane/lib/fastlane/actions/app_store_connect_api_key.rb +1 -1
  12. data/fastlane/lib/fastlane/actions/backup_xcarchive.rb +1 -1
  13. data/fastlane/lib/fastlane/actions/clipboard.rb +3 -6
  14. data/fastlane/lib/fastlane/actions/danger.rb +7 -1
  15. data/fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md +1 -1
  16. data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +18 -1
  17. data/fastlane/lib/fastlane/actions/ensure_env_vars.rb +2 -6
  18. data/fastlane/lib/fastlane/actions/get_managed_play_store_publishing_rights.rb +3 -1
  19. data/fastlane/lib/fastlane/actions/git_branch.rb +1 -1
  20. data/fastlane/lib/fastlane/actions/git_commit.rb +3 -1
  21. data/fastlane/lib/fastlane/actions/git_pull.rb +4 -10
  22. data/fastlane/lib/fastlane/actions/git_submodule_update.rb +16 -8
  23. data/fastlane/lib/fastlane/actions/hipchat.rb +2 -1
  24. data/fastlane/lib/fastlane/actions/import_from_git.rb +5 -5
  25. data/fastlane/lib/fastlane/actions/jira.rb +61 -14
  26. data/fastlane/lib/fastlane/actions/notarize.rb +98 -51
  27. data/fastlane/lib/fastlane/actions/notification.rb +1 -1
  28. data/fastlane/lib/fastlane/actions/slack.rb +155 -133
  29. data/fastlane/lib/fastlane/actions/sourcedocs.rb +164 -0
  30. data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +4 -2
  31. data/fastlane/lib/fastlane/actions/xcodebuild.rb +5 -5
  32. data/fastlane/lib/fastlane/cli_tools_distributor.rb +1 -1
  33. data/fastlane/lib/fastlane/commands_generator.rb +2 -1
  34. data/fastlane/lib/fastlane/fast_file.rb +10 -2
  35. data/fastlane/lib/fastlane/fastlane_require.rb +7 -1
  36. data/fastlane/lib/fastlane/helper/git_helper.rb +9 -1
  37. data/fastlane/lib/fastlane/lane_manager.rb +3 -2
  38. data/fastlane/lib/fastlane/notification/slack.rb +56 -0
  39. data/fastlane/lib/fastlane/plugins/plugin_info.rb +2 -2
  40. data/fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb +7 -6
  41. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +30 -35
  42. data/fastlane/lib/fastlane/plugins/template/spec/spec_helper.rb.erb +1 -1
  43. data/fastlane/lib/fastlane/setup/setup.rb +23 -10
  44. data/fastlane/lib/fastlane/swift_fastlane_function.rb +35 -14
  45. data/fastlane/lib/fastlane/swift_runner_upgrader.rb +2 -0
  46. data/fastlane/lib/fastlane/version.rb +2 -2
  47. data/fastlane/swift/Deliverfile.swift +1 -1
  48. data/fastlane/swift/DeliverfileProtocol.swift +1 -1
  49. data/fastlane/swift/Fastlane.swift +6672 -3787
  50. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +4 -0
  51. data/fastlane/swift/Gymfile.swift +1 -1
  52. data/fastlane/swift/GymfileProtocol.swift +1 -1
  53. data/fastlane/swift/LaneFileProtocol.swift +9 -3
  54. data/fastlane/swift/Matchfile.swift +1 -1
  55. data/fastlane/swift/MatchfileProtocol.swift +1 -1
  56. data/fastlane/swift/OptionalConfigValue.swift +131 -0
  57. data/fastlane/swift/Precheckfile.swift +1 -1
  58. data/fastlane/swift/PrecheckfileProtocol.swift +1 -1
  59. data/fastlane/swift/RubyCommand.swift +1 -1
  60. data/fastlane/swift/Scanfile.swift +1 -1
  61. data/fastlane/swift/ScanfileProtocol.swift +5 -1
  62. data/fastlane/swift/Screengrabfile.swift +1 -1
  63. data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
  64. data/fastlane/swift/Snapshotfile.swift +1 -1
  65. data/fastlane/swift/SnapshotfileProtocol.swift +5 -1
  66. data/fastlane/swift/SocketClient.swift +2 -1
  67. data/fastlane/swift/SocketResponse.swift +4 -2
  68. data/fastlane/swift/formatting/Brewfile.lock.json +18 -16
  69. data/fastlane/swift/upgrade_manifest.json +1 -1
  70. data/fastlane_core/lib/fastlane_core.rb +22 -21
  71. data/fastlane_core/lib/fastlane_core/build_watcher.rb +65 -11
  72. data/fastlane_core/lib/fastlane_core/clipboard.rb +20 -0
  73. data/fastlane_core/lib/fastlane_core/device_manager.rb +1 -1
  74. data/fastlane_core/lib/fastlane_core/helper.rb +4 -4
  75. data/fastlane_core/lib/fastlane_core/languages.rb +2 -2
  76. data/fastlane_core/lib/fastlane_core/queue_worker.rb +2 -2
  77. data/fastlane_core/lib/fastlane_core/swag.rb +1 -1
  78. data/fastlane_core/lib/fastlane_core/ui/help.erb +35 -0
  79. data/fastlane_core/lib/fastlane_core/ui/help_formatter.rb +16 -0
  80. data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +16 -2
  81. data/frameit/lib/frameit/commands_generator.rb +2 -1
  82. data/frameit/lib/frameit/config_parser.rb +2 -2
  83. data/frameit/lib/frameit/frame_downloader.rb +2 -1
  84. data/gym/lib/gym/code_signing_mapping.rb +2 -2
  85. data/gym/lib/gym/commands_generator.rb +2 -1
  86. data/gym/lib/gym/generators/package_command_generator_xcode7.rb +6 -5
  87. data/gym/lib/gym/runner.rb +5 -1
  88. data/match/lib/match/change_password.rb +1 -1
  89. data/match/lib/match/commands_generator.rb +2 -1
  90. data/pem/lib/pem/commands_generator.rb +2 -1
  91. data/pilot/lib/pilot/build_manager.rb +3 -3
  92. data/pilot/lib/pilot/commands_generator.rb +2 -1
  93. data/pilot/lib/pilot/options.rb +2 -2
  94. data/pilot/lib/pilot/tester_exporter.rb +0 -1
  95. data/pilot/lib/pilot/tester_manager.rb +0 -1
  96. data/precheck/lib/precheck/commands_generator.rb +2 -1
  97. data/produce/lib/produce/commands_generator.rb +2 -1
  98. data/scan/lib/scan/commands_generator.rb +2 -1
  99. data/scan/lib/scan/options.rb +10 -5
  100. data/scan/lib/scan/runner.rb +54 -1
  101. data/scan/lib/scan/test_command_generator.rb +10 -8
  102. data/screengrab/lib/screengrab/commands_generator.rb +2 -1
  103. data/sigh/lib/sigh/commands_generator.rb +2 -1
  104. data/snapshot/lib/assets/SnapfileTemplate +1 -1
  105. data/snapshot/lib/assets/SnapshotHelper.swift +1 -1
  106. data/snapshot/lib/snapshot/commands_generator.rb +3 -1
  107. data/snapshot/lib/snapshot/options.rb +5 -0
  108. data/snapshot/lib/snapshot/reports_generator.rb +4 -0
  109. data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +2 -0
  110. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +1 -1
  111. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +8 -4
  112. data/spaceship/README.md +2 -12
  113. data/spaceship/lib/spaceship/base.rb +2 -2
  114. data/spaceship/lib/spaceship/commands_generator.rb +4 -2
  115. data/spaceship/lib/spaceship/connect_api/model.rb +1 -1
  116. data/{gym/lib/gym/.runner.rb.swp → spaceship/lib/spaceship/connect_api/models/.app.rb.swp} +0 -0
  117. data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +1 -1
  118. data/spaceship/lib/spaceship/connect_api/models/profile.rb +6 -0
  119. data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +6 -2
  120. data/spaceship/lib/spaceship/connect_api/token.rb +7 -1
  121. data/spaceship/lib/spaceship/spaceauth_runner.rb +19 -9
  122. data/spaceship/lib/spaceship/tunes/members.rb +1 -1
  123. data/spaceship/lib/spaceship/ui.rb +2 -2
  124. data/supply/lib/supply/client.rb +3 -1
  125. data/supply/lib/supply/commands_generator.rb +2 -1
  126. data/supply/lib/supply/options.rb +2 -2
  127. data/supply/lib/supply/uploader.rb +1 -0
  128. metadata +75 -86
  129. data/pilot/lib/pilot/tester_util.rb +0 -0
@@ -3,6 +3,7 @@ require 'highline'
3
3
  HighLine.track_eof = false
4
4
 
5
5
  require 'fastlane/version'
6
+ require 'fastlane_core/ui/help_formatter'
6
7
  require_relative 'playground'
7
8
  require_relative 'spaceauth_runner'
8
9
 
@@ -21,7 +22,7 @@ module Spaceship
21
22
  program :help, 'Author', 'Felix Krause <spaceship@krausefx.com>'
22
23
  program :help, 'Website', 'https://fastlane.tools'
23
24
  program :help, 'GitHub', 'https://github.com/fastlane/fastlane/tree/master/spaceship'
24
- program :help_formatter, :compact
25
+ program :help_formatter, FastlaneCore::HelpFormatter
25
26
 
26
27
  global_option('-u', '--user USERNAME', 'Specify the Apple ID you want to log in with')
27
28
  global_option('--verbose') { FastlaneCore::Globals.verbose = true }
@@ -39,9 +40,10 @@ module Spaceship
39
40
  command :spaceauth do |c|
40
41
  c.syntax = 'fastlane spaceship spaceauth'
41
42
  c.description = 'Authentication helper for spaceship/fastlane to work with Apple 2-Step/2FA'
43
+ c.option('--copy_to_clipboard', 'Whether the session string should be copied to clipboard. For more info see https://docs.fastlane.tools/best-practices/continuous-integration/#storing-a-manually-verified-session-using-spaceauth`')
42
44
 
43
45
  c.action do |args, options|
44
- Spaceship::SpaceauthRunner.new(username: options.user).run
46
+ Spaceship::SpaceauthRunner.new(username: options.user, copy_to_clipboard: options.copy_to_clipboard).run
45
47
  end
46
48
  end
47
49
 
@@ -30,7 +30,7 @@ module Spaceship
30
30
  # Creates alias for :minOsVersion to :min_os_version
31
31
  #
32
32
  def attr_mapping(attr_map)
33
- self.reverse_attr_map ||= attr_map.invert.each_with_object({}) { |(k, v), memo| memo[k.to_sym] = v; }
33
+ self.reverse_attr_map ||= attr_map.invert.transform_keys(&:to_sym)
34
34
  attr_map.each do |key, value|
35
35
  # Actual
36
36
  reader = value.to_sym
@@ -112,7 +112,7 @@ module Spaceship
112
112
  timeout_minutes = (ENV["SPACESHIP_SCREENSHOT_UPLOAD_TIMEOUT"] || 20).to_i
113
113
 
114
114
  loop do
115
- # This error handling needs to be revised since any error occured can reach here.
115
+ # This error handling needs to be revised since any error occurred can reach here.
116
116
  # It should handle errors based on what status code is.
117
117
  puts("Waiting for screenshots to appear before uploading. This is unlikely to be recovered unless it's 503 error. error=\"#{error}\"")
118
118
  sleep(30)
@@ -92,6 +92,12 @@ module Spaceship
92
92
  return resps.flat_map(&:to_models)
93
93
  end
94
94
 
95
+ def fetch_all_certificates(client: nil, filter: {}, includes: nil, sort: nil)
96
+ client ||= Spaceship::ConnectAPI
97
+ resps = client.get_certificates(profile_id: id, filter: filter, includes: includes).all_pages
98
+ return resps.flat_map(&:to_models)
99
+ end
100
+
95
101
  def delete!(client: nil)
96
102
  client ||= Spaceship::ConnectAPI
97
103
  return client.delete_profile(profile_id: id)
@@ -84,9 +84,13 @@ module Spaceship
84
84
  # certificates
85
85
  #
86
86
 
87
- def get_certificates(filter: {}, includes: nil, limit: nil, sort: nil)
87
+ def get_certificates(profile_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
88
88
  params = provisioning_request_client.build_params(filter: filter, includes: includes, limit: limit, sort: sort)
89
- provisioning_request_client.get("certificates", params)
89
+ if profile_id.nil?
90
+ provisioning_request_client.get("certificates", params)
91
+ else
92
+ provisioning_request_client.get("profiles/#{profile_id}/certificates", params)
93
+ end
90
94
  end
91
95
 
92
96
  def get_certificate(certificate_id: nil, includes: nil)
@@ -60,14 +60,16 @@ module Spaceship
60
60
  key_id: key_id,
61
61
  issuer_id: issuer_id,
62
62
  key: OpenSSL::PKey::EC.new(key),
63
+ key_raw: key,
63
64
  duration: duration,
64
65
  in_house: in_house
65
66
  )
66
67
  end
67
68
 
68
- def initialize(key_id: nil, issuer_id: nil, key: nil, duration: nil, in_house: nil)
69
+ def initialize(key_id: nil, issuer_id: nil, key: nil, key_raw: nil, duration: nil, in_house: nil)
69
70
  @key_id = key_id
70
71
  @key = key
72
+ @key_raw = key_raw
71
73
  @issuer_id = issuer_id
72
74
  @duration = duration
73
75
  @in_house = in_house
@@ -97,6 +99,10 @@ module Spaceship
97
99
  def expired?
98
100
  @expiration < Time.now
99
101
  end
102
+
103
+ def write_key_to_file(path)
104
+ File.open(path, 'w') { |f| f.write(@key_raw) }
105
+ end
100
106
  end
101
107
  end
102
108
  end
@@ -1,15 +1,17 @@
1
1
  require 'colored'
2
2
  require 'credentials_manager/appfile_config'
3
3
  require 'yaml'
4
+ require 'fastlane_core'
4
5
 
5
6
  require_relative 'tunes/tunes_client'
6
7
 
7
8
  module Spaceship
8
9
  class SpaceauthRunner
9
- def initialize(username: nil)
10
+ def initialize(username: nil, copy_to_clipboard: nil)
10
11
  @username = username
11
12
  @username ||= CredentialsManager::AppfileConfig.try_fetch_value(:apple_id)
12
13
  @username ||= ask("Username: ")
14
+ @copy_to_clipboard = copy_to_clipboard
13
15
  end
14
16
 
15
17
  def run
@@ -22,7 +24,7 @@ module Spaceship
22
24
  puts("Could not login to App Store Connect".red)
23
25
  puts("Please check your credentials and try again.".yellow)
24
26
  puts("This could be an issue with App Store Connect,".yellow)
25
- puts("Please try unsetting the FASTLANE_SESSION environment variable".yellow)
27
+ puts("Please try unsetting the FASTLANE_SESSION environment variable by calling 'unset FASTLANE_SESSION'".yellow)
26
28
  puts("(if it is set) and re-run `fastlane spaceauth`".yellow)
27
29
  puts("")
28
30
  puts("Exception type: #{ex.class}")
@@ -49,22 +51,30 @@ module Spaceship
49
51
  cookie.name.start_with?("myacinfo") || cookie.name == "dqsid" || cookie.name.start_with?("DES")
50
52
  end
51
53
 
52
- yaml = cookies.to_yaml.gsub("\n", "\\n")
54
+ @yaml = cookies.to_yaml.gsub("\n", "\\n")
53
55
 
54
56
  puts("---")
55
57
  puts("")
56
58
  puts("Pass the following via the FASTLANE_SESSION environment variable:")
57
- puts(yaml.cyan.underline)
59
+ puts(@yaml.cyan.underline)
58
60
  puts("")
59
61
  puts("")
60
62
  puts("Example:")
61
- puts("export FASTLANE_SESSION='#{yaml}'".cyan.underline)
63
+ puts("export FASTLANE_SESSION='#{@yaml}'".cyan.underline)
62
64
 
63
- if mac? && Spaceship::Client::UserInterface.interactive? && agree("🙄 Should fastlane copy the cookie into your clipboard, so you can easily paste it? (y/n)", true)
64
- require 'open3'
65
- Open3.popen3('pbcopy') { |input, _, _| input << yaml }
66
- puts("Successfully copied text into your clipboard 🎨".green)
65
+ if @copy_to_clipboard == false
66
+ puts("Skipped asking to copy the session string into your clipboard ⏭️".green)
67
+ elsif @copy_to_clipboard || (mac? && Spaceship::Client::UserInterface.interactive? && agree("🙄 Should fastlane copy the cookie into your clipboard, so you can easily paste it? (y/n)", true))
68
+ FastlaneCore::Clipboard.copy(content: @yaml)
69
+ puts("Successfully copied the session string into your clipboard 🎨".green)
67
70
  end
71
+
72
+ return self
73
+ end
74
+
75
+ def session_string
76
+ FastlaneCore::UI.user_error!("`#{__method__}` method called before calling `run` in `SpaceauthRunner`") unless @yaml
77
+ @yaml
68
78
  end
69
79
 
70
80
  def mac?
@@ -15,7 +15,7 @@ module Spaceship
15
15
 
16
16
  def find(email)
17
17
  all.each do |member|
18
- if member.email_address == email
18
+ if member.email_address.casecmp?(email)
19
19
  return member
20
20
  end
21
21
  end
@@ -18,10 +18,10 @@ module Spaceship
18
18
  end
19
19
 
20
20
  # Public getter for all UI related code
21
- # rubocop:disable Style/MethodName
21
+ # rubocop:disable Naming/MethodName
22
22
  def UI
23
23
  UserInterface.new(self)
24
24
  end
25
- # rubocop:enable Style/MethodName
25
+ # rubocop:enable Naming/MethodName
26
26
  end
27
27
  end
@@ -327,12 +327,14 @@ module Supply
327
327
  def upload_mapping(path_to_mapping, apk_version_code)
328
328
  ensure_active_edit!
329
329
 
330
+ extension = File.extname(path_to_mapping).downcase
331
+
330
332
  call_google_api do
331
333
  client.upload_edit_deobfuscationfile(
332
334
  current_package_name,
333
335
  current_edit.id,
334
336
  apk_version_code,
335
- "proguard",
337
+ extension == ".zip" ? "nativeCode" : "proguard",
336
338
  upload_source: path_to_mapping,
337
339
  content_type: "application/octet-stream"
338
340
  )
@@ -1,5 +1,6 @@
1
1
  require "commander"
2
2
  require "fastlane_core"
3
+ require 'fastlane_core/ui/help_formatter'
3
4
  require "supply"
4
5
 
5
6
  HighLine.track_eof = false
@@ -19,7 +20,7 @@ module Supply
19
20
  program :help, 'Author', 'Felix Krause <supply@krausefx.com>'
20
21
  program :help, 'Website', 'https://fastlane.tools'
21
22
  program :help, 'Documentation', 'https://docs.fastlane.tools/actions/supply/'
22
- program :help_formatter, :compact
23
+ program :help_formatter, FastlaneCore::HelpFormatter
23
24
 
24
25
  always_trace!
25
26
 
@@ -223,7 +223,7 @@ module Supply
223
223
  default_value: false),
224
224
  FastlaneCore::ConfigItem.new(key: :mapping,
225
225
  env_name: "SUPPLY_MAPPING",
226
- description: "Path to the mapping file to upload",
226
+ description: "Path to the mapping file to upload (mapping.txt or native-debug-symbols.zip alike)",
227
227
  short_option: "-d",
228
228
  conflicting_options: [:mapping_paths],
229
229
  optional: true,
@@ -235,7 +235,7 @@ module Supply
235
235
  conflicting_options: [:mapping],
236
236
  optional: true,
237
237
  type: Array,
238
- description: "An array of paths to mapping files to upload",
238
+ description: "An array of paths to mapping files to upload (mapping.txt or native-debug-symbols.zip alike)",
239
239
  short_option: "-s",
240
240
  verify_block: proc do |value|
241
241
  UI.user_error!("Could not evaluate array from '#{value}'") unless value.kind_of?(Array)
@@ -304,6 +304,7 @@ module Supply
304
304
  mapping_paths = [Supply.config[:mapping]] unless (mapping_paths = Supply.config[:mapping_paths])
305
305
  mapping_paths.zip(apk_version_codes).each do |mapping_path, version_code|
306
306
  if mapping_path
307
+ UI.message("Preparing mapping at path '#{mapping_path}', version code #{version_code} for upload...")
307
308
  client.upload_mapping(mapping_path, version_code)
308
309
  end
309
310
  end
metadata CHANGED
@@ -1,58 +1,38 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.179.0
4
+ version: 2.183.0
5
5
  platform: ruby
6
6
  authors:
7
- - Luka Mirosevic
8
7
  - Max Ott
9
8
  - Joshua Liebowitz
10
- - Jérôme Lacoste
11
- - Manu Wallner
12
- - Stefan Natchev
9
+ - Helmut Januschka
10
+ - Aaron Brager
13
11
  - Andrew McBurney
12
+ - Josh Holtz
13
+ - Fumiya Nakamura
14
+ - Iulian Onofrei
15
+ - Olivier Halligon
14
16
  - Roger Oba
15
- - Daniel Jankowski
16
- - Satoshi Namai
17
+ - Manu Wallner
18
+ - Danielle Tomlinson
19
+ - Maksym Grebenets
17
20
  - Jimmy Dee
18
- - Kohki Miki
19
- - Iulian Onofrei
20
- - Fumiya Nakamura
21
- - Josh Holtz
22
- - Helmut Januschka
21
+ - Matthew Ellis
23
22
  - Felix Krause
24
23
  - Jan Piotrowski
25
- - Aaron Brager
26
- - Maksym Grebenets
24
+ - Satoshi Namai
25
+ - Luka Mirosevic
26
+ - Kohki Miki
27
27
  - Jorge Revuelta H
28
- - Danielle Tomlinson
29
- - Matthew Ellis
30
- - Olivier Halligon
28
+ - Daniel Jankowski
29
+ - Stefan Natchev
30
+ - Jérôme Lacoste
31
31
  autorequire:
32
32
  bindir: bin
33
33
  cert_chain: []
34
- date: 2021-03-26 00:00:00.000000000 Z
34
+ date: 2021-05-14 00:00:00.000000000 Z
35
35
  dependencies:
36
- - !ruby/object:Gem::Dependency
37
- name: slack-notifier
38
- requirement: !ruby/object:Gem::Requirement
39
- requirements:
40
- - - ">="
41
- - !ruby/object:Gem::Version
42
- version: 2.0.0
43
- - - "<"
44
- - !ruby/object:Gem::Version
45
- version: 3.0.0
46
- type: :runtime
47
- prerelease: false
48
- version_requirements: !ruby/object:Gem::Requirement
49
- requirements:
50
- - - ">="
51
- - !ruby/object:Gem::Version
52
- version: 2.0.0
53
- - - "<"
54
- - !ruby/object:Gem::Version
55
- version: 3.0.0
56
36
  - !ruby/object:Gem::Dependency
57
37
  name: xcodeproj
58
38
  requirement: !ruby/object:Gem::Requirement
@@ -304,25 +284,19 @@ dependencies:
304
284
  - !ruby/object:Gem::Version
305
285
  version: '0'
306
286
  - !ruby/object:Gem::Dependency
307
- name: commander-fastlane
287
+ name: commander
308
288
  requirement: !ruby/object:Gem::Requirement
309
289
  requirements:
310
- - - ">="
311
- - !ruby/object:Gem::Version
312
- version: 4.4.6
313
- - - "<"
290
+ - - "~>"
314
291
  - !ruby/object:Gem::Version
315
- version: 5.0.0
292
+ version: '4.6'
316
293
  type: :runtime
317
294
  prerelease: false
318
295
  version_requirements: !ruby/object:Gem::Requirement
319
296
  requirements:
320
- - - ">="
321
- - !ruby/object:Gem::Version
322
- version: 4.4.6
323
- - - "<"
297
+ - - "~>"
324
298
  - !ruby/object:Gem::Version
325
- version: 5.0.0
299
+ version: '4.6'
326
300
  - !ruby/object:Gem::Dependency
327
301
  name: excon
328
302
  requirement: !ruby/object:Gem::Requirement
@@ -429,22 +403,16 @@ dependencies:
429
403
  name: highline
430
404
  requirement: !ruby/object:Gem::Requirement
431
405
  requirements:
432
- - - ">="
433
- - !ruby/object:Gem::Version
434
- version: 1.7.2
435
- - - "<"
406
+ - - "~>"
436
407
  - !ruby/object:Gem::Version
437
- version: 2.0.0
408
+ version: '2.0'
438
409
  type: :runtime
439
410
  prerelease: false
440
411
  version_requirements: !ruby/object:Gem::Requirement
441
412
  requirements:
442
- - - ">="
443
- - !ruby/object:Gem::Version
444
- version: 1.7.2
445
- - - "<"
413
+ - - "~>"
446
414
  - !ruby/object:Gem::Version
447
- version: 2.0.0
415
+ version: '2.0'
448
416
  - !ruby/object:Gem::Dependency
449
417
  name: json
450
418
  requirement: !ruby/object:Gem::Requirement
@@ -616,45 +584,47 @@ dependencies:
616
584
  - !ruby/object:Gem::Version
617
585
  version: '3'
618
586
  - !ruby/object:Gem::Dependency
619
- name: google-api-client
587
+ name: google-apis-playcustomapp_v1
620
588
  requirement: !ruby/object:Gem::Requirement
621
589
  requirements:
622
- - - ">="
623
- - !ruby/object:Gem::Version
624
- version: 0.37.0
625
- - - "<"
590
+ - - "~>"
626
591
  - !ruby/object:Gem::Version
627
- version: 0.39.0
592
+ version: '0.1'
628
593
  type: :runtime
629
594
  prerelease: false
630
595
  version_requirements: !ruby/object:Gem::Requirement
631
596
  requirements:
632
- - - ">="
597
+ - - "~>"
633
598
  - !ruby/object:Gem::Version
634
- version: 0.37.0
635
- - - "<"
599
+ version: '0.1'
600
+ - !ruby/object:Gem::Dependency
601
+ name: google-apis-androidpublisher_v3
602
+ requirement: !ruby/object:Gem::Requirement
603
+ requirements:
604
+ - - "~>"
605
+ - !ruby/object:Gem::Version
606
+ version: '0.1'
607
+ type: :runtime
608
+ prerelease: false
609
+ version_requirements: !ruby/object:Gem::Requirement
610
+ requirements:
611
+ - - "~>"
636
612
  - !ruby/object:Gem::Version
637
- version: 0.39.0
613
+ version: '0.1'
638
614
  - !ruby/object:Gem::Dependency
639
615
  name: google-cloud-storage
640
616
  requirement: !ruby/object:Gem::Requirement
641
617
  requirements:
642
- - - ">="
643
- - !ruby/object:Gem::Version
644
- version: 1.15.0
645
- - - "<"
618
+ - - "~>"
646
619
  - !ruby/object:Gem::Version
647
- version: 2.0.0
620
+ version: '1.31'
648
621
  type: :runtime
649
622
  prerelease: false
650
623
  version_requirements: !ruby/object:Gem::Requirement
651
624
  requirements:
652
- - - ">="
653
- - !ruby/object:Gem::Version
654
- version: 1.15.0
655
- - - "<"
625
+ - - "~>"
656
626
  - !ruby/object:Gem::Version
657
- version: 2.0.0
627
+ version: '1.31'
658
628
  - !ruby/object:Gem::Dependency
659
629
  name: emoji_regex
660
630
  requirement: !ruby/object:Gem::Requirement
@@ -835,28 +805,42 @@ dependencies:
835
805
  requirements:
836
806
  - - '='
837
807
  - !ruby/object:Gem::Version
838
- version: 0.49.1
808
+ version: 1.12.1
839
809
  type: :development
840
810
  prerelease: false
841
811
  version_requirements: !ruby/object:Gem::Requirement
842
812
  requirements:
843
813
  - - '='
844
814
  - !ruby/object:Gem::Version
845
- version: 0.49.1
815
+ version: 1.12.1
816
+ - !ruby/object:Gem::Dependency
817
+ name: rubocop-performance
818
+ requirement: !ruby/object:Gem::Requirement
819
+ requirements:
820
+ - - ">="
821
+ - !ruby/object:Gem::Version
822
+ version: '0'
823
+ type: :development
824
+ prerelease: false
825
+ version_requirements: !ruby/object:Gem::Requirement
826
+ requirements:
827
+ - - ">="
828
+ - !ruby/object:Gem::Version
829
+ version: '0'
846
830
  - !ruby/object:Gem::Dependency
847
831
  name: rubocop-require_tools
848
832
  requirement: !ruby/object:Gem::Requirement
849
833
  requirements:
850
834
  - - ">="
851
835
  - !ruby/object:Gem::Version
852
- version: 0.1.2
836
+ version: '0'
853
837
  type: :development
854
838
  prerelease: false
855
839
  version_requirements: !ruby/object:Gem::Requirement
856
840
  requirements:
857
841
  - - ">="
858
842
  - !ruby/object:Gem::Version
859
- version: 0.1.2
843
+ version: '0'
860
844
  - !ruby/object:Gem::Dependency
861
845
  name: rb-readline
862
846
  requirement: !ruby/object:Gem::Requirement
@@ -1210,6 +1194,7 @@ files:
1210
1194
  - fastlane/lib/fastlane/actions/slather.rb
1211
1195
  - fastlane/lib/fastlane/actions/snapshot.rb
1212
1196
  - fastlane/lib/fastlane/actions/sonar.rb
1197
+ - fastlane/lib/fastlane/actions/sourcedocs.rb
1213
1198
  - fastlane/lib/fastlane/actions/spaceship_logs.rb
1214
1199
  - fastlane/lib/fastlane/actions/spaceship_stats.rb
1215
1200
  - fastlane/lib/fastlane/actions/splunkmint.rb
@@ -1295,6 +1280,7 @@ files:
1295
1280
  - fastlane/lib/fastlane/lane_manager_base.rb
1296
1281
  - fastlane/lib/fastlane/markdown_table_formatter.rb
1297
1282
  - fastlane/lib/fastlane/new_action.rb
1283
+ - fastlane/lib/fastlane/notification/slack.rb
1298
1284
  - fastlane/lib/fastlane/one_off.rb
1299
1285
  - fastlane/lib/fastlane/other_action.rb
1300
1286
  - fastlane/lib/fastlane/plugins/plugin_fetcher.rb
@@ -1364,6 +1350,7 @@ files:
1364
1350
  - fastlane/swift/MainProcess.swift
1365
1351
  - fastlane/swift/Matchfile.swift
1366
1352
  - fastlane/swift/MatchfileProtocol.swift
1353
+ - fastlane/swift/OptionalConfigValue.swift
1367
1354
  - fastlane/swift/Plugins.swift
1368
1355
  - fastlane/swift/Precheckfile.swift
1369
1356
  - fastlane/swift/PrecheckfileProtocol.swift
@@ -1397,6 +1384,7 @@ files:
1397
1384
  - fastlane_core/lib/fastlane_core/android_package_name_guesser.rb
1398
1385
  - fastlane_core/lib/fastlane_core/build_watcher.rb
1399
1386
  - fastlane_core/lib/fastlane_core/cert_checker.rb
1387
+ - fastlane_core/lib/fastlane_core/clipboard.rb
1400
1388
  - fastlane_core/lib/fastlane_core/command_executor.rb
1401
1389
  - fastlane_core/lib/fastlane_core/configuration/commander_generator.rb
1402
1390
  - fastlane_core/lib/fastlane_core/configuration/config_item.rb
@@ -1439,6 +1427,8 @@ files:
1439
1427
  - fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb
1440
1428
  - fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb
1441
1429
  - fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb
1430
+ - fastlane_core/lib/fastlane_core/ui/help.erb
1431
+ - fastlane_core/lib/fastlane_core/ui/help_formatter.rb
1442
1432
  - fastlane_core/lib/fastlane_core/ui/implementations/shell.rb
1443
1433
  - fastlane_core/lib/fastlane_core/ui/interface.rb
1444
1434
  - fastlane_core/lib/fastlane_core/ui/ui.rb
@@ -1468,7 +1458,6 @@ files:
1468
1458
  - gym/lib/assets/GymfileTemplate.swift
1469
1459
  - gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh
1470
1460
  - gym/lib/gym.rb
1471
- - gym/lib/gym/.runner.rb.swp
1472
1461
  - gym/lib/gym/code_signing_mapping.rb
1473
1462
  - gym/lib/gym/commands_generator.rb
1474
1463
  - gym/lib/gym/detect_values.rb
@@ -1528,7 +1517,6 @@ files:
1528
1517
  - pilot/lib/pilot/tester_exporter.rb
1529
1518
  - pilot/lib/pilot/tester_importer.rb
1530
1519
  - pilot/lib/pilot/tester_manager.rb
1531
- - pilot/lib/pilot/tester_util.rb
1532
1520
  - precheck/README.md
1533
1521
  - precheck/lib/assets/PrecheckfileTemplate
1534
1522
  - precheck/lib/assets/PrecheckfileTemplate.swift
@@ -1655,6 +1643,7 @@ files:
1655
1643
  - spaceship/lib/spaceship/connect_api/client.rb
1656
1644
  - spaceship/lib/spaceship/connect_api/file_uploader.rb
1657
1645
  - spaceship/lib/spaceship/connect_api/model.rb
1646
+ - spaceship/lib/spaceship/connect_api/models/.app.rb.swp
1658
1647
  - spaceship/lib/spaceship/connect_api/models/.app_store_version_submission.rb.swp
1659
1648
  - spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb
1660
1649
  - spaceship/lib/spaceship/connect_api/models/app.rb
@@ -1865,7 +1854,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
1865
1854
  requirements:
1866
1855
  - - ">="
1867
1856
  - !ruby/object:Gem::Version
1868
- version: '2.4'
1857
+ version: '2.5'
1869
1858
  required_rubygems_version: !ruby/object:Gem::Requirement
1870
1859
  requirements:
1871
1860
  - - ">="