fastlane 2.229.0 → 2.232.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +98 -92
  3. data/bin/fastlane +2 -2
  4. data/deliver/lib/assets/summary.html.erb +3 -3
  5. data/deliver/lib/deliver/app_screenshot.rb +215 -347
  6. data/deliver/lib/deliver/app_screenshot_iterator.rb +4 -1
  7. data/deliver/lib/deliver/app_screenshot_validator.rb +5 -21
  8. data/deliver/lib/deliver/loader.rb +2 -9
  9. data/deliver/lib/deliver/upload_metadata.rb +5 -0
  10. data/deliver/lib/deliver/upload_screenshots.rb +4 -2
  11. data/fastlane/lib/assets/completions/completion.bash +1 -1
  12. data/fastlane/lib/assets/completions/completion.sh +2 -2
  13. data/fastlane/lib/fastlane/actions/app_store_build_number.rb +19 -14
  14. data/fastlane/lib/fastlane/actions/appium.rb +1 -1
  15. data/fastlane/lib/fastlane/actions/docs/create_app_online.md +6 -3
  16. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +3 -1
  17. data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +34 -6
  18. data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +2 -0
  19. data/fastlane/lib/fastlane/actions/get_version_number.rb +1 -1
  20. data/fastlane/lib/fastlane/actions/import_certificate.rb +9 -1
  21. data/fastlane/lib/fastlane/actions/increment_build_number.rb +1 -1
  22. data/fastlane/lib/fastlane/actions/install_xcode_plugin.rb +3 -2
  23. data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +1 -1
  24. data/fastlane/lib/fastlane/actions/modify_services.rb +1 -0
  25. data/fastlane/lib/fastlane/actions/notarize.rb +1 -1
  26. data/fastlane/lib/fastlane/actions/upload_to_app_store.rb +1 -1
  27. data/fastlane/lib/fastlane/actions/xcov.rb +1 -7
  28. data/fastlane/lib/fastlane/cli_tools_distributor.rb +19 -1
  29. data/fastlane/lib/fastlane/console.rb +2 -2
  30. data/fastlane/lib/fastlane/documentation/markdown_docs_generator.rb +4 -4
  31. data/fastlane/lib/fastlane/erb_template_helper.rb +1 -7
  32. data/fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb +1 -1
  33. data/fastlane/lib/fastlane/plugins/template/.github/workflows/test.yml +20 -20
  34. data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +1 -1
  35. data/fastlane/lib/fastlane/version.rb +2 -1
  36. data/fastlane/swift/Actions.swift +1 -1
  37. data/fastlane/swift/Appfile.swift +13 -5
  38. data/fastlane/swift/ArgumentProcessor.swift +1 -1
  39. data/fastlane/swift/Atomic.swift +1 -1
  40. data/fastlane/swift/ControlCommand.swift +5 -4
  41. data/fastlane/swift/Deliverfile.swift +2 -2
  42. data/fastlane/swift/DeliverfileProtocol.swift +265 -68
  43. data/fastlane/swift/Fastlane.swift +140 -88
  44. data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +3 -1
  45. data/fastlane/swift/Gymfile.swift +2 -2
  46. data/fastlane/swift/GymfileProtocol.swift +227 -54
  47. data/fastlane/swift/LaneFileProtocol.swift +4 -2
  48. data/fastlane/swift/MainProcess.swift +1 -1
  49. data/fastlane/swift/Matchfile.swift +2 -2
  50. data/fastlane/swift/MatchfileProtocol.swift +225 -58
  51. data/fastlane/swift/OptionalConfigValue.swift +1 -1
  52. data/fastlane/swift/Plugins.swift +1 -1
  53. data/fastlane/swift/Precheckfile.swift +2 -2
  54. data/fastlane/swift/PrecheckfileProtocol.swift +45 -13
  55. data/fastlane/swift/RubyCommand.swift +6 -7
  56. data/fastlane/swift/RubyCommandable.swift +1 -1
  57. data/fastlane/swift/Runner.swift +2 -2
  58. data/fastlane/swift/RunnerArgument.swift +1 -1
  59. data/fastlane/swift/Scanfile.swift +2 -2
  60. data/fastlane/swift/ScanfileProtocol.swift +332 -82
  61. data/fastlane/swift/Screengrabfile.swift +2 -2
  62. data/fastlane/swift/ScreengrabfileProtocol.swift +89 -24
  63. data/fastlane/swift/Snapshotfile.swift +2 -2
  64. data/fastlane/swift/SnapshotfileProtocol.swift +216 -53
  65. data/fastlane/swift/SocketClient.swift +2 -2
  66. data/fastlane/swift/SocketClientDelegateProtocol.swift +1 -1
  67. data/fastlane/swift/SocketResponse.swift +1 -1
  68. data/fastlane/swift/main.swift +1 -1
  69. data/fastlane_core/lib/fastlane_core/cert_checker.rb +10 -0
  70. data/fastlane_core/lib/fastlane_core/fastlane_pty.rb +5 -1
  71. data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +14 -0
  72. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +38 -8
  73. data/fastlane_core/lib/fastlane_core/keychain_importer.rb +3 -1
  74. data/fastlane_core/lib/fastlane_core/project.rb +8 -0
  75. data/fastlane_core/lib/fastlane_core/provisioning_profile.rb +7 -1
  76. data/frameit/lib/frameit/device.rb +2 -2
  77. data/frameit/lib/frameit/device_types.rb +108 -70
  78. data/frameit/lib/frameit/template_finder.rb +1 -1
  79. data/gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh +1 -0
  80. data/gym/lib/gym/module.rb +9 -4
  81. data/gym/lib/gym/options.rb +20 -2
  82. data/gym/lib/gym/runner.rb +38 -3
  83. data/produce/lib/produce/commands_generator.rb +2 -0
  84. data/produce/lib/produce/developer_center.rb +1 -0
  85. data/produce/lib/produce/service.rb +6 -1
  86. data/scan/lib/scan/error_handler.rb +5 -0
  87. data/scan/lib/scan/options.rb +11 -1
  88. data/scan/lib/scan/test_command_generator.rb +8 -0
  89. data/sigh/lib/assets/resign.sh +6 -3
  90. data/sigh/lib/sigh/local_manage.rb +6 -4
  91. data/sigh/lib/sigh/runner.rb +18 -1
  92. data/snapshot/lib/snapshot/detect_values.rb +1 -1
  93. data/snapshot/lib/snapshot/options.rb +13 -1
  94. data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +4 -2
  95. data/spaceship/lib/spaceship/client.rb +32 -2
  96. data/spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb +62 -8
  97. data/spaceship/lib/spaceship/connect_api/models/app_info_localization.rb +4 -4
  98. data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +7 -1
  99. data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +16 -16
  100. data/spaceship/lib/spaceship/connect_api/models/build_upload.rb +42 -0
  101. data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +2 -0
  102. data/spaceship/lib/spaceship/connect_api/models/certificate.rb +32 -2
  103. data/spaceship/lib/spaceship/connect_api/models/webhook.rb +62 -0
  104. data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +0 -6
  105. data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +9 -0
  106. data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +38 -0
  107. data/spaceship/lib/spaceship/connect_api.rb +2 -0
  108. data/spaceship/lib/spaceship/errors.rb +8 -6
  109. data/spaceship/lib/spaceship/portal/key.rb +22 -3
  110. data/spaceship/lib/spaceship/portal/portal_client.rb +29 -2
  111. data/spaceship/lib/spaceship/spaceauth_runner.rb +5 -15
  112. data/supply/lib/supply/client.rb +18 -1
  113. data/trainer/lib/trainer/legacy_xcresult.rb +1 -1
  114. data/trainer/lib/trainer/test_parser.rb +1 -1
  115. data/trainer/lib/trainer/xcresult/helper.rb +11 -1
  116. metadata +116 -41
  117. data/fastlane/lib/fastlane/core_ext/bundler_monkey_patch.rb +0 -14
  118. data/fastlane/lib/fastlane/plugins/template/.circleci/config.yml +0 -43
  119. data/fastlane/lib/fastlane/plugins/template/.travis.yml +0 -4
@@ -116,9 +116,11 @@ module Spaceship
116
116
 
117
117
  # Base class for errors coming from App Store Connect locale changes
118
118
  class AppStoreLocaleError < BasicPreferredInfoError
119
- def initialize(msg)
120
- @message = (msg ? "An exception occurred for locale: #{msg}." : nil)
121
- super
119
+ def initialize(locale, error)
120
+ error_message = error.respond_to?(:message) ? error.message : error.to_s
121
+ locale_str = locale || "unknown"
122
+ @message = "An exception has occurred for locale: #{locale_str}.\nError: #{error_message}"
123
+ super(@message)
122
124
  end
123
125
 
124
126
  # no need to search github issues since the error is specific
@@ -130,21 +132,21 @@ module Spaceship
130
132
  # Raised for localized text errors from App Store Connect
131
133
  class AppStoreLocalizationError < AppStoreLocaleError
132
134
  def preferred_error_info
133
- "#{@message} Check the localization requirements here: https://help.apple.com/app-store-connect/en.lproj/static.html#dev354659071"
135
+ "#{@message}\nCheck the localization requirements here: https://developer.apple.com/help/app-store-connect/manage-app-information/localize-app-information"
134
136
  end
135
137
  end
136
138
 
137
139
  # Raised for localized screenshots errors from App Store Connect
138
140
  class AppStoreScreenshotError < AppStoreLocaleError
139
141
  def preferred_error_info
140
- "#{@message} Check the screenshot requirements here: https://help.apple.com/app-store-connect/en.lproj/static.html#devd274dd925"
142
+ "#{@message}\nCheck the screenshot requirements here: https://developer.apple.com/help/app-store-connect/reference/screenshot-specifications"
141
143
  end
142
144
  end
143
145
 
144
146
  # Raised for localized app preview errors from App Store Connect
145
147
  class AppStoreAppPreviewError < AppStoreLocaleError
146
148
  def preferred_error_info
147
- "#{@message} Check the app preview requirements here: https://help.apple.com/app-store-connect/en.lproj/static.html#dev4e413fcb8"
149
+ "#{@message}\nCheck the app preview requirements here: https://developer.apple.com/help/app-store-connect/reference/app-preview-specifications"
148
150
  end
149
151
  end
150
152
  end
@@ -42,9 +42,28 @@ module Spaceship
42
42
  # @param music_id [String] the Music Id id (the autogenerated id, not the user specified identifier "music.com.etc...")
43
43
  def self.create(name: nil, apns: nil, device_check: nil, music_id: nil)
44
44
  service_config = {}
45
- service_config[APNS_ID] = [] if apns
46
- service_config[DEVICE_CHECK_ID] = [] if device_check
47
- service_config[MUSIC_KIT_ID] = [music_id] if music_id
45
+
46
+ if apns
47
+ service_config[APNS_ID] = {
48
+ scope: 'team',
49
+ environment: 'all',
50
+ identifiers: {}
51
+ }
52
+ end
53
+
54
+ if device_check
55
+ service_config[DEVICE_CHECK_ID] = {
56
+ identifiers: {}
57
+ }
58
+ end
59
+
60
+ if music_id
61
+ service_config[MUSIC_KIT_ID] = {
62
+ identifiers: {
63
+ music: [music_id]
64
+ }
65
+ }
66
+ end
48
67
 
49
68
  key = client.create_key!(name: name, service_configs: service_config)
50
69
  new(key)
@@ -10,6 +10,7 @@ require_relative 'provisioning_profile'
10
10
  require_relative 'certificate'
11
11
  require_relative 'website_push'
12
12
  require_relative 'persons'
13
+ require_relative 'key'
13
14
 
14
15
  module Spaceship
15
16
  # rubocop:disable Metrics/ClassLength
@@ -780,13 +781,39 @@ module Spaceship
780
781
  def create_key!(name: nil, service_configs: nil)
781
782
  fetch_csrf_token_for_keys
782
783
 
784
+ service_configs_requests = (service_configs || {}).map do |service_id, configs|
785
+ if service_id == Spaceship::Portal::Key::MUSIC_KIT_ID
786
+ {
787
+ serviceId: service_id,
788
+ isNew: true,
789
+ identifiers: configs[:identifiers] || {}
790
+ }
791
+ elsif service_id == Spaceship::Portal::Key::DEVICE_CHECK_ID
792
+ {
793
+ serviceId: service_id,
794
+ isNew: true,
795
+ identifiers: configs[:identifiers] || {}
796
+ }
797
+ elsif service_id == Spaceship::Portal::Key::APNS_ID
798
+ {
799
+ serviceId: service_id,
800
+ isNew: true,
801
+ identifiers: configs[:identifiers] || {},
802
+ environment: configs[:environment] || "all",
803
+ scope: configs[:scope] || "team"
804
+ }
805
+ else
806
+ raise "Unknown service id: #{service_id}"
807
+ end
808
+ end
809
+
783
810
  params = {
784
811
  name: name,
785
- serviceConfigurations: service_configs,
812
+ serviceConfigurationsRequests: service_configs_requests,
786
813
  teamId: team_id
787
814
  }
788
815
 
789
- response = request(:post, 'account/auth/key/create') do |req|
816
+ response = request(:post, 'account/auth/key/v2/create') do |req|
790
817
  req.headers['Content-Type'] = 'application/json'
791
818
  req.body = params.to_json
792
819
  end
@@ -68,21 +68,11 @@ module Spaceship
68
68
  end
69
69
 
70
70
  def load_cookies(content)
71
- # When Ruby 2.5 support is dropped, we can safely get rid of the latter branch.
72
- if YAML.name == 'Psych' && Gem::Version.new(Psych::VERSION) >= Gem::Version.new('3.1')
73
- YAML.safe_load(
74
- content,
75
- permitted_classes: [HTTP::Cookie, Time],
76
- aliases: true
77
- )
78
- else
79
- YAML.safe_load(
80
- content,
81
- [HTTP::Cookie, Time], # classes allowlist
82
- [], # symbols allowlist
83
- true # allow YAML aliases
84
- )
85
- end
71
+ YAML.safe_load(
72
+ content,
73
+ permitted_classes: [HTTP::Cookie, Time],
74
+ aliases: true
75
+ )
86
76
  end
87
77
 
88
78
  def session_string
@@ -46,7 +46,24 @@ module Supply
46
46
  # Initializes the service and its auth_client using the specified information
47
47
  # @param service_account_json: The raw service account Json data
48
48
  def initialize(service_account_json: nil, params: nil)
49
- auth_client = Google::Auth::ServiceAccountCredentials.make_creds(json_key_io: service_account_json, scope: self.class::SCOPE)
49
+ # decode the json and check its type
50
+ begin
51
+ json_content = service_account_json.read
52
+ google_credentials = JSON.parse(json_content)
53
+ service_account_json.rewind
54
+ rescue JSON::ParserError
55
+ UI.user_error!("Invalid Google Credentials file provided - unable to parse json.")
56
+ end
57
+
58
+ # use correct credential class based on type
59
+ case google_credentials['type']
60
+ when "external_account"
61
+ auth_client = Google::Auth::ExternalAccount::Credentials.make_creds(json_key_io: service_account_json, scope: self.class::SCOPE)
62
+ when "service_account"
63
+ auth_client = Google::Auth::ServiceAccountCredentials.make_creds(json_key_io: service_account_json, scope: self.class::SCOPE)
64
+ else
65
+ UI.user_error!("Invalid Google Credentials file provided - no credential type found.")
66
+ end
50
67
 
51
68
  UI.verbose("Fetching a new access token from Google...")
52
69
 
@@ -570,7 +570,7 @@ module Trainer
570
570
  path
571
571
  ]
572
572
 
573
- xcresulttool_cmd << '--legacy' if Trainer::XCResult::Helper.supports_xcode16_xcresulttool?
573
+ xcresulttool_cmd << '--legacy' if Trainer::XCResult::Helper.supports_xcresulttool_version_23?
574
574
 
575
575
  xcresulttool_cmd
576
576
  end
@@ -101,7 +101,7 @@ module Trainer
101
101
  UI.user_error!("File not found at path '#{path}'") unless File.exist?(path)
102
102
 
103
103
  if File.directory?(path) && path.end_with?(".xcresult")
104
- parser = XCResult::Helper.supports_xcode16_xcresulttool? && !config[:force_legacy_xcresulttool] ? XCResult::Parser : LegacyXCResult::Parser
104
+ parser = XCResult::Helper.supports_xcresulttool_version_23? && !config[:force_legacy_xcresulttool] ? XCResult::Parser : LegacyXCResult::Parser
105
105
  self.data = parser.parse_xcresult(path: path, output_remove_retry_attempts: config[:output_remove_retry_attempts])
106
106
  else
107
107
  file_content = File.read(path)
@@ -38,7 +38,7 @@ module Trainer
38
38
  # and replaced it with `xcrun xcresulttool get test-results tests` instead.
39
39
  #
40
40
  # @return [Boolean] Whether the xcresulttool supports Xcode 16+ commands
41
- def self.supports_xcode16_xcresulttool?
41
+ def self.supports_xcresulttool_version_23?
42
42
  # e.g. DEVELOPER_DIR=/Applications/Xcode_16_beta_3.app
43
43
  # xcresulttool version 23021, format version 3.53 (current)
44
44
  match = `xcrun xcresulttool version`.match(/xcresulttool version (?<version>[\d.]+)/)
@@ -48,6 +48,16 @@ module Trainer
48
48
  rescue
49
49
  false
50
50
  end
51
+
52
+ def self.supports_xcresulttool_version_24?
53
+ # xcresulttool version 24408, schema version: 0.1.0 (legacy commands format version: 3.56)
54
+ match = `xcrun xcresulttool version`.match(/xcresulttool version (?<version>[\d.]+)/)
55
+ version = match[:version]
56
+
57
+ Gem::Version.new(version) >= Gem::Version.new(24_408)
58
+ rescue
59
+ false
60
+ end
51
61
  end
52
62
  end
53
63
  end
metadata CHANGED
@@ -1,39 +1,40 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.229.0
4
+ version: 2.232.2
5
5
  platform: ruby
6
6
  authors:
7
- - Felix Krause
8
- - Helmut Januschka
9
- - Andrew McBurney
10
- - Daniel Jankowski
11
- - Iulian Onofrei
7
+ - Jorge Revuelta H
12
8
  - Danielle Tomlinson
9
+ - Fumiya Nakamura
13
10
  - Jérôme Lacoste
11
+ - Roger Oba
14
12
  - Aaron Brager
15
13
  - Maksym Grebenets
16
- - Max Ott
17
- - Jorge Revuelta H
18
- - Łukasz Grabowski
19
- - Jimmy Dee
14
+ - Helmut Januschka
20
15
  - Manu Wallner
21
- - Kohki Miki
22
- - Josh Holtz
23
- - Satoshi Namai
24
16
  - Olivier Halligon
25
- - Luka Mirosevic
26
- - Matthew Ellis
27
- - Stefan Natchev
17
+ - Daniel Jankowski
18
+ - Satoshi Namai
19
+ - Connor Tumbleson
20
+ - Felix Krause
21
+ - Iulian Onofrei
22
+ - Josh Holtz
23
+ - Jan Piotrowski
28
24
  - Joshua Liebowitz
25
+ - Kohki Miki
26
+ - Łukasz Grabowski
27
+ - Andrew McBurney
28
+ - Stefan Natchev
29
29
  - Manish Rathi
30
- - Jan Piotrowski
31
- - Fumiya Nakamura
32
- - Roger Oba
30
+ - Jimmy Dee
31
+ - Max Ott
32
+ - Matthew Ellis
33
+ - Luka Mirosevic
33
34
  autorequire:
34
35
  bindir: bin
35
36
  cert_chain: []
36
- date: 2025-11-21 00:00:00.000000000 Z
37
+ date: 2026-02-27 00:00:00.000000000 Z
37
38
  dependencies:
38
39
  - !ruby/object:Gem::Dependency
39
40
  name: addressable
@@ -75,14 +76,14 @@ dependencies:
75
76
  requirements:
76
77
  - - "~>"
77
78
  - !ruby/object:Gem::Version
78
- version: '1.0'
79
+ version: '1.197'
79
80
  type: :runtime
80
81
  prerelease: false
81
82
  version_requirements: !ruby/object:Gem::Requirement
82
83
  requirements:
83
84
  - - "~>"
84
85
  - !ruby/object:Gem::Version
85
- version: '1.0'
86
+ version: '1.197'
86
87
  - !ruby/object:Gem::Dependency
87
88
  name: babosa
88
89
  requirement: !ruby/object:Gem::Requirement
@@ -109,20 +110,20 @@ dependencies:
109
110
  requirements:
110
111
  - - ">="
111
112
  - !ruby/object:Gem::Version
112
- version: 1.12.0
113
+ version: 1.17.3
113
114
  - - "<"
114
115
  - !ruby/object:Gem::Version
115
- version: 3.0.0
116
+ version: 5.0.0
116
117
  type: :runtime
117
118
  prerelease: false
118
119
  version_requirements: !ruby/object:Gem::Requirement
119
120
  requirements:
120
121
  - - ">="
121
122
  - !ruby/object:Gem::Version
122
- version: 1.12.0
123
+ version: 1.17.3
123
124
  - - "<"
124
125
  - !ruby/object:Gem::Version
125
- version: 3.0.0
126
+ version: 5.0.0
126
127
  - !ruby/object:Gem::Dependency
127
128
  name: CFPropertyList
128
129
  requirement: !ruby/object:Gem::Requirement
@@ -362,9 +363,9 @@ dependencies:
362
363
  - - ">="
363
364
  - !ruby/object:Gem::Version
364
365
  version: 1.6.0
365
- - - "<"
366
+ - - "<="
366
367
  - !ruby/object:Gem::Version
367
- version: 2.0.0
368
+ version: 2.1.1
368
369
  type: :runtime
369
370
  prerelease: false
370
371
  version_requirements: !ruby/object:Gem::Requirement
@@ -372,9 +373,9 @@ dependencies:
372
373
  - - ">="
373
374
  - !ruby/object:Gem::Version
374
375
  version: 1.6.0
375
- - - "<"
376
+ - - "<="
376
377
  - !ruby/object:Gem::Version
377
- version: 2.0.0
378
+ version: 2.1.1
378
379
  - !ruby/object:Gem::Dependency
379
380
  name: google-cloud-storage
380
381
  requirement: !ruby/object:Gem::Requirement
@@ -736,19 +737,33 @@ dependencies:
736
737
  - !ruby/object:Gem::Version
737
738
  version: 0.4.1
738
739
  - !ruby/object:Gem::Dependency
739
- name: mutex_m
740
+ name: abbrev
740
741
  requirement: !ruby/object:Gem::Requirement
741
742
  requirements:
742
743
  - - "~>"
743
744
  - !ruby/object:Gem::Version
744
- version: 0.3.0
745
+ version: 0.1.2
745
746
  type: :runtime
746
747
  prerelease: false
747
748
  version_requirements: !ruby/object:Gem::Requirement
748
749
  requirements:
749
750
  - - "~>"
750
751
  - !ruby/object:Gem::Version
751
- version: 0.3.0
752
+ version: 0.1.2
753
+ - !ruby/object:Gem::Dependency
754
+ name: base64
755
+ requirement: !ruby/object:Gem::Requirement
756
+ requirements:
757
+ - - "~>"
758
+ - !ruby/object:Gem::Version
759
+ version: 0.2.0
760
+ type: :runtime
761
+ prerelease: false
762
+ version_requirements: !ruby/object:Gem::Requirement
763
+ requirements:
764
+ - - "~>"
765
+ - !ruby/object:Gem::Version
766
+ version: 0.2.0
752
767
  - !ruby/object:Gem::Dependency
753
768
  name: csv
754
769
  requirement: !ruby/object:Gem::Requirement
@@ -764,26 +779,87 @@ dependencies:
764
779
  - !ruby/object:Gem::Version
765
780
  version: '3.3'
766
781
  - !ruby/object:Gem::Dependency
767
- name: abbrev
782
+ name: mutex_m
768
783
  requirement: !ruby/object:Gem::Requirement
769
784
  requirements:
770
785
  - - "~>"
771
786
  - !ruby/object:Gem::Version
772
- version: 0.1.2
787
+ version: 0.3.0
773
788
  type: :runtime
774
789
  prerelease: false
775
790
  version_requirements: !ruby/object:Gem::Requirement
776
791
  requirements:
777
792
  - - "~>"
778
793
  - !ruby/object:Gem::Version
779
- version: 0.1.2
794
+ version: 0.3.0
795
+ - !ruby/object:Gem::Dependency
796
+ name: nkf
797
+ requirement: !ruby/object:Gem::Requirement
798
+ requirements:
799
+ - - "~>"
800
+ - !ruby/object:Gem::Version
801
+ version: 0.2.0
802
+ type: :runtime
803
+ prerelease: false
804
+ version_requirements: !ruby/object:Gem::Requirement
805
+ requirements:
806
+ - - "~>"
807
+ - !ruby/object:Gem::Version
808
+ version: 0.2.0
809
+ - !ruby/object:Gem::Dependency
810
+ name: logger
811
+ requirement: !ruby/object:Gem::Requirement
812
+ requirements:
813
+ - - ">="
814
+ - !ruby/object:Gem::Version
815
+ version: '1.6'
816
+ - - "<"
817
+ - !ruby/object:Gem::Version
818
+ version: '2.0'
819
+ type: :runtime
820
+ prerelease: false
821
+ version_requirements: !ruby/object:Gem::Requirement
822
+ requirements:
823
+ - - ">="
824
+ - !ruby/object:Gem::Version
825
+ version: '1.6'
826
+ - - "<"
827
+ - !ruby/object:Gem::Version
828
+ version: '2.0'
829
+ - !ruby/object:Gem::Dependency
830
+ name: benchmark
831
+ requirement: !ruby/object:Gem::Requirement
832
+ requirements:
833
+ - - ">="
834
+ - !ruby/object:Gem::Version
835
+ version: 0.1.0
836
+ type: :runtime
837
+ prerelease: false
838
+ version_requirements: !ruby/object:Gem::Requirement
839
+ requirements:
840
+ - - ">="
841
+ - !ruby/object:Gem::Version
842
+ version: 0.1.0
843
+ - !ruby/object:Gem::Dependency
844
+ name: ostruct
845
+ requirement: !ruby/object:Gem::Requirement
846
+ requirements:
847
+ - - ">="
848
+ - !ruby/object:Gem::Version
849
+ version: 0.1.0
850
+ type: :runtime
851
+ prerelease: false
852
+ version_requirements: !ruby/object:Gem::Requirement
853
+ requirements:
854
+ - - ">="
855
+ - !ruby/object:Gem::Version
856
+ version: 0.1.0
780
857
  description: The easiest way to automate beta deployments and releases for your iOS
781
858
  and Android apps
782
859
  email:
783
860
  - fastlane@krausefx.com
784
861
  executables:
785
862
  - bin-proxy
786
- - console
787
863
  - fastlane
788
864
  - match_file
789
865
  extensions: []
@@ -1110,7 +1186,6 @@ files:
1110
1186
  - fastlane/lib/fastlane/commands_generator.rb
1111
1187
  - fastlane/lib/fastlane/configuration_helper.rb
1112
1188
  - fastlane/lib/fastlane/console.rb
1113
- - fastlane/lib/fastlane/core_ext/bundler_monkey_patch.rb
1114
1189
  - fastlane/lib/fastlane/documentation/actions_list.rb
1115
1190
  - fastlane/lib/fastlane/documentation/docs_generator.rb
1116
1191
  - fastlane/lib/fastlane/documentation/markdown_docs_generator.rb
@@ -1153,12 +1228,10 @@ files:
1153
1228
  - fastlane/lib/fastlane/plugins/plugin_update_manager.rb
1154
1229
  - fastlane/lib/fastlane/plugins/plugins.rb
1155
1230
  - fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb
1156
- - fastlane/lib/fastlane/plugins/template/.circleci/config.yml
1157
1231
  - fastlane/lib/fastlane/plugins/template/.github/workflows/test.yml
1158
1232
  - fastlane/lib/fastlane/plugins/template/.gitignore
1159
1233
  - fastlane/lib/fastlane/plugins/template/.rspec
1160
1234
  - fastlane/lib/fastlane/plugins/template/.rubocop.yml
1161
- - fastlane/lib/fastlane/plugins/template/.travis.yml
1162
1235
  - fastlane/lib/fastlane/plugins/template/Gemfile.erb
1163
1236
  - fastlane/lib/fastlane/plugins/template/LICENSE.erb
1164
1237
  - fastlane/lib/fastlane/plugins/template/README.md.erb
@@ -1550,6 +1623,7 @@ files:
1550
1623
  - spaceship/lib/spaceship/connect_api/models/build_bundle.rb
1551
1624
  - spaceship/lib/spaceship/connect_api/models/build_bundle_file_sizes.rb
1552
1625
  - spaceship/lib/spaceship/connect_api/models/build_delivery.rb
1626
+ - spaceship/lib/spaceship/connect_api/models/build_upload.rb
1553
1627
  - spaceship/lib/spaceship/connect_api/models/bundle_id.rb
1554
1628
  - spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb
1555
1629
  - spaceship/lib/spaceship/connect_api/models/capabilities.rb
@@ -1570,6 +1644,7 @@ files:
1570
1644
  - spaceship/lib/spaceship/connect_api/models/territory_availability.rb
1571
1645
  - spaceship/lib/spaceship/connect_api/models/user.rb
1572
1646
  - spaceship/lib/spaceship/connect_api/models/user_invitation.rb
1647
+ - spaceship/lib/spaceship/connect_api/models/webhook.rb
1573
1648
  - spaceship/lib/spaceship/connect_api/provisioning/client.rb
1574
1649
  - spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb
1575
1650
  - spaceship/lib/spaceship/connect_api/response.rb
@@ -1750,7 +1825,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
1750
1825
  requirements:
1751
1826
  - - ">="
1752
1827
  - !ruby/object:Gem::Version
1753
- version: '2.6'
1828
+ version: '2.7'
1754
1829
  required_rubygems_version: !ruby/object:Gem::Requirement
1755
1830
  requirements:
1756
1831
  - - ">="
@@ -1,14 +0,0 @@
1
- # https://github.com/bundler/bundler/issues/4368
2
- #
3
- # There is an issue with RubyGems 2.6.2 where it attempts to call Bundler::SpecSet#size, which doesn't exist.
4
- # If a gem is not installed, a `Gem::Specification.find_by_name` call will trigger this problem.
5
- if Object.const_defined?(:Bundler) &&
6
- Bundler.const_defined?(:SpecSet) &&
7
- Bundler::SpecSet.instance_methods.include?(:length) &&
8
- !Bundler::SpecSet.instance_methods.include?(:size)
9
- module Bundler
10
- class SpecSet
11
- alias size length
12
- end
13
- end
14
- end
@@ -1,43 +0,0 @@
1
- # Ruby CircleCI 2.0 configuration file
2
- #
3
- # Check https://circleci.com/docs/2.0/language-ruby/ for more details
4
- #
5
- version: 2
6
- jobs:
7
- build:
8
- docker:
9
- # specify the version you desire here
10
- - image: circleci/ruby:2.5
11
-
12
- working_directory: ~/repo
13
-
14
- steps:
15
- - checkout
16
-
17
- # Download and cache dependencies
18
- - restore_cache:
19
- keys:
20
- - v1-dependencies-{{ checksum "Gemfile" }}
21
- # fallback to using the latest cache if no exact match is found
22
- - v1-dependencies-
23
-
24
- - run:
25
- name: install dependencies
26
- command: bundle check || bundle install --jobs=4 --retry=3 --path vendor/bundle
27
-
28
- - save_cache:
29
- paths:
30
- - ./vendor
31
- key: v1-dependencies-{{ checksum "Gemfile" }}
32
-
33
- # run tests!
34
- - run:
35
- name: run tests
36
- command: bundle exec rake
37
-
38
- # collect reports
39
- - store_test_results:
40
- path: ~/repo/test-results
41
- - store_artifacts:
42
- path: ~/repo/test-results
43
- destination: test-results
@@ -1,4 +0,0 @@
1
- # os: osx # enable this if you need macOS support
2
- language: ruby
3
- rvm:
4
- - 2.2.4