fastlane 2.150.3 → 2.151.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +86 -86
  3. data/deliver/lib/deliver/options.rb +7 -1
  4. data/deliver/lib/deliver/submit_for_review.rb +7 -7
  5. data/deliver/lib/deliver/upload_metadata.rb +2 -2
  6. data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +3 -0
  7. data/fastlane/lib/fastlane/actions/notarize.rb +13 -3
  8. data/fastlane/lib/fastlane/actions/pod_push.rb +10 -1
  9. data/fastlane/lib/fastlane/actions/resign.rb +1 -1
  10. data/fastlane/lib/fastlane/actions/setup_ci.rb +5 -0
  11. data/fastlane/lib/fastlane/actions/setup_circle_ci.rb +1 -1
  12. data/fastlane/lib/fastlane/actions/setup_travis.rb +1 -1
  13. data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +10 -2
  14. data/fastlane/lib/fastlane/documentation/docs_generator.rb +1 -1
  15. data/fastlane/lib/fastlane/helper/s3_client_helper.rb +28 -11
  16. data/fastlane/lib/fastlane/server/socket_server.rb +7 -1
  17. data/fastlane/lib/fastlane/swift_fastlane_function.rb +1 -1
  18. data/fastlane/lib/fastlane/version.rb +1 -1
  19. data/fastlane/swift/Actions.swift +1 -1
  20. data/fastlane/swift/ArgumentProcessor.swift +24 -24
  21. data/fastlane/swift/ControlCommand.swift +3 -3
  22. data/fastlane/swift/Deliverfile.swift +4 -8
  23. data/fastlane/swift/DeliverfileProtocol.swift +181 -182
  24. data/fastlane/swift/Fastlane.swift +2813 -2802
  25. data/fastlane/swift/Gymfile.swift +4 -8
  26. data/fastlane/swift/GymfileProtocol.swift +133 -134
  27. data/fastlane/swift/LaneFileProtocol.swift +17 -17
  28. data/fastlane/swift/Matchfile.swift +4 -8
  29. data/fastlane/swift/MatchfileProtocol.swift +115 -112
  30. data/fastlane/swift/Plugins.swift +1 -1
  31. data/fastlane/swift/Precheckfile.swift +4 -8
  32. data/fastlane/swift/PrecheckfileProtocol.swift +22 -23
  33. data/fastlane/swift/RubyCommand.swift +34 -37
  34. data/fastlane/swift/RubyCommandable.swift +3 -1
  35. data/fastlane/swift/Runner.swift +76 -69
  36. data/fastlane/swift/Scanfile.swift +4 -8
  37. data/fastlane/swift/ScanfileProtocol.swift +190 -191
  38. data/fastlane/swift/Screengrabfile.swift +4 -8
  39. data/fastlane/swift/ScreengrabfileProtocol.swift +67 -68
  40. data/fastlane/swift/Snapshotfile.swift +4 -8
  41. data/fastlane/swift/SnapshotfileProtocol.swift +127 -128
  42. data/fastlane/swift/SocketClient.swift +84 -90
  43. data/fastlane/swift/SocketResponse.swift +14 -14
  44. data/fastlane/swift/formatting/Brewfile +1 -0
  45. data/fastlane/swift/formatting/Brewfile.lock.json +39 -0
  46. data/fastlane/swift/formatting/Rakefile +18 -0
  47. data/fastlane/swift/main.swift +5 -6
  48. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +15 -7
  49. data/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb +1 -1
  50. data/match/lib/assets/READMETemplate.md +5 -2
  51. data/match/lib/match/options.rb +4 -0
  52. data/match/lib/match/runner.rb +1 -0
  53. data/match/lib/match/storage/git_storage.rb +1 -1
  54. data/match/lib/match/storage/s3_storage.rb +25 -7
  55. data/sigh/lib/assets/resign.sh +18 -0
  56. data/spaceship/lib/spaceship/client.rb +1 -2
  57. data/spaceship/lib/spaceship/connect_api/client.rb +0 -1
  58. data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +1 -1
  59. metadata +31 -38
  60. data/deliver/lib/deliver/.upload_metadata.rb.swp +0 -0
  61. data/spaceship/lib/spaceship/babosa_fix.rb +0 -30
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ task(default: %w[setup])
4
+
5
+ task(setup: [:brew, :lint])
6
+
7
+ task(:brew) do
8
+ raise '`brew` is required. Please install brew. https://brew.sh/' unless system('which brew')
9
+
10
+ puts('➡️ Brew')
11
+ sh('brew bundle')
12
+ end
13
+
14
+ task(:lint) do
15
+ Dir.chdir('..') do
16
+ sh("swiftformat . --config formatting/.swiftformat --verbose --selfrequired waitWithPolling --exclude Fastfile.swift --swiftversion 4.0")
17
+ end
18
+ end
@@ -20,18 +20,18 @@ let timeout = argumentProcessor.commandTimeout
20
20
  class MainProcess {
21
21
  var doneRunningLane = false
22
22
  var thread: Thread!
23
-
23
+
24
24
  @objc func connectToFastlaneAndRunLane() {
25
25
  runner.startSocketThread(port: argumentProcessor.port)
26
-
26
+
27
27
  let completedRun = Fastfile.runLane(named: argumentProcessor.currentLane, parameters: argumentProcessor.laneParameters())
28
28
  if completedRun {
29
29
  runner.disconnectFromFastlaneProcess()
30
30
  }
31
-
31
+
32
32
  doneRunningLane = true
33
33
  }
34
-
34
+
35
35
  func startFastlaneThread() {
36
36
  thread = Thread(target: self, selector: #selector(connectToFastlaneAndRunLane), object: nil)
37
37
  thread.name = "worker thread"
@@ -42,11 +42,10 @@ class MainProcess {
42
42
  let process: MainProcess = MainProcess()
43
43
  process.startFastlaneThread()
44
44
 
45
- while (!process.doneRunningLane && (RunLoop.current.run(mode: RunLoopMode.defaultRunLoopMode, before: Date(timeIntervalSinceNow: 2)))) {
45
+ while !process.doneRunningLane, RunLoop.current.run(mode: RunLoopMode.defaultRunLoopMode, before: Date(timeIntervalSinceNow: 2)) {
46
46
  // no op
47
47
  }
48
48
 
49
49
  // Please don't remove the lines below
50
50
  // They are used to detect outdated files
51
51
  // FastlaneRunnerAPIVersion [0.9.2]
52
-
@@ -149,14 +149,22 @@ module FastlaneCore
149
149
  end
150
150
 
151
151
  def additional_upload_parameters
152
- # Workaround because the traditional transporter broke on 1st March 2018
153
- # More information https://github.com/fastlane/fastlane/issues/11958
154
- # As there was no communication from Apple, we don't know if this is a temporary
155
- # server outage, or something they changed without giving a heads-up
156
- if ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"].to_s.length == 0
157
- ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"] = "-t DAV,Signiant"
152
+ # As Apple recommends in Transporter User Guide we shouldn't specify the -t transport parameter
153
+ # and instead allow Transporter to use automatic transport discovery
154
+ # to determine the best transport mode for packages.
155
+ # It became crucial after WWDC 2020 as it leaded to "Broken pipe (Write failed)" exception
156
+ # More information https://github.com/fastlane/fastlane/issues/16749
157
+ env_deliver_additional_params = ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"]
158
+ if env_deliver_additional_params.to_s.strip.empty?
159
+ return nil
160
+ end
161
+
162
+ deliver_additional_params = env_deliver_additional_params.to_s.strip
163
+ if !deliver_additional_params.include?("-t ")
164
+ UI.user_error!("Invalid transport parameter")
165
+ else
166
+ return deliver_additional_params
158
167
  end
159
- return ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"]
160
168
  end
161
169
  end
162
170
 
@@ -205,7 +205,7 @@ module Commander
205
205
  ui.error(" - Use Homebrew")
206
206
  ui.error(" - update brew with `brew update`")
207
207
  ui.error(" - install fastlane using:")
208
- ui.error(" - `brew cask install fastlane`")
208
+ ui.error(" - `brew install fastlane`")
209
209
  ui.error(" - Use One-Click-Installer:")
210
210
  ui.error(" - download fastlane at https://download.fastlane.tools")
211
211
  ui.error(" - extract the archive and double click the `install`")
@@ -20,7 +20,7 @@ Install _fastlane_ using
20
20
  [sudo] gem install fastlane -NV
21
21
  ```
22
22
 
23
- or alternatively using `brew cask install fastlane`
23
+ or alternatively using `brew install fastlane`
24
24
 
25
25
  ### Usage
26
26
 
@@ -29,12 +29,15 @@ Navigate to your project folder and run
29
29
  ```
30
30
  fastlane match appstore
31
31
  ```
32
+
32
33
  ```
33
34
  fastlane match adhoc
34
35
  ```
36
+
35
37
  ```
36
38
  fastlane match development
37
39
  ```
40
+
38
41
  ```
39
42
  fastlane match enterprise
40
43
  ```
@@ -51,6 +54,6 @@ This directory contains all your certificates with their private keys
51
54
 
52
55
  This directory contains all provisioning profiles
53
56
 
54
- ------------------------------------
57
+ ---
55
58
 
56
59
  For more information open [fastlane match git repo](https://docs.fastlane.tools/actions/match/)
@@ -186,6 +186,10 @@ module Match
186
186
  env_name: "MATCH_S3_BUCKET",
187
187
  description: "Name of the S3 bucket",
188
188
  optional: true),
189
+ FastlaneCore::ConfigItem.new(key: :s3_object_prefix,
190
+ env_name: "MATCH_S3_OBJECT_PREFIX",
191
+ description: "Prefix to be used on all objects uploaded to S3",
192
+ optional: true),
189
193
 
190
194
  # Keychain
191
195
  FastlaneCore::ConfigItem.new(key: :keychain_name,
@@ -50,6 +50,7 @@ module Match
50
50
  s3_access_key: params[:s3_access_key].to_s,
51
51
  s3_secret_access_key: params[:s3_secret_access_key].to_s,
52
52
  s3_bucket: params[:s3_bucket].to_s,
53
+ s3_object_prefix: params[:s3_object_prefix],
53
54
  readonly: params[:readonly],
54
55
  username: params[:readonly] ? nil : params[:username], # only pass username if not readonly
55
56
  team_id: params[:team_id],
@@ -113,7 +113,7 @@ module Match
113
113
  UI.user_error!("Error cloning repo, make sure you have access to it '#{self.git_url}'")
114
114
  end
115
115
 
116
- checkout_branch unless self.branch == "master"
116
+ checkout_branch
117
117
  end
118
118
 
119
119
  def human_readable_description
@@ -14,6 +14,7 @@ module Match
14
14
  attr_reader :s3_bucket
15
15
  attr_reader :s3_region
16
16
  attr_reader :s3_client
17
+ attr_reader :s3_object_prefix
17
18
  attr_reader :readonly
18
19
  attr_reader :username
19
20
  attr_reader :team_id
@@ -24,6 +25,7 @@ module Match
24
25
  s3_access_key = params[:s3_access_key]
25
26
  s3_secret_access_key = params[:s3_secret_access_key]
26
27
  s3_bucket = params[:s3_bucket]
28
+ s3_object_prefix = params[:s3_object_prefix]
27
29
 
28
30
  if params[:git_url].to_s.length > 0
29
31
  UI.important("Looks like you still define a `git_url` somewhere, even though")
@@ -37,6 +39,7 @@ module Match
37
39
  s3_access_key: s3_access_key,
38
40
  s3_secret_access_key: s3_secret_access_key,
39
41
  s3_bucket: s3_bucket,
42
+ s3_object_prefix: s3_object_prefix,
40
43
  readonly: params[:readonly],
41
44
  username: params[:username],
42
45
  team_id: params[:team_id],
@@ -48,6 +51,7 @@ module Match
48
51
  s3_access_key: nil,
49
52
  s3_secret_access_key: nil,
50
53
  s3_bucket: nil,
54
+ s3_object_prefix: nil,
51
55
  readonly: nil,
52
56
  username: nil,
53
57
  team_id: nil,
@@ -55,6 +59,7 @@ module Match
55
59
  @s3_bucket = s3_bucket
56
60
  @s3_region = s3_region
57
61
  @s3_client = Fastlane::Helper::S3ClientHelper.new(access_key: s3_access_key, secret_access_key: s3_secret_access_key, region: s3_region)
62
+ @s3_object_prefix = s3_object_prefix.to_s
58
63
  @readonly = readonly
59
64
  @username = username
60
65
  @team_id = team_id
@@ -88,8 +93,10 @@ module Match
88
93
  # No existing working directory, creating a new one now
89
94
  self.working_directory = Dir.mktmpdir
90
95
 
91
- s3_client.find_bucket!(s3_bucket).objects.each do |object|
92
- file_path = object.key # :team_id/path/to/file
96
+ s3_client.find_bucket!(s3_bucket).objects(prefix: s3_object_prefix).each do |object|
97
+ file_path = strip_s3_object_prefix(object.key) # :s3_object_prefix:team_id/path/to/file
98
+
99
+ # strip s3_prefix from file_path
93
100
  download_path = File.join(self.working_directory, file_path)
94
101
 
95
102
  FileUtils.mkdir_p(File.expand_path("..", download_path))
@@ -113,12 +120,11 @@ module Match
113
120
 
114
121
  files_to_upload.each do |file_name|
115
122
  # Go from
116
- # "/var/folders/px/bz2kts9n69g8crgv4jpjh6b40000gn/T/d20181026-96528-1av4gge/profiles/development/Development_me.mobileprovision"
123
+ # "/var/folders/px/bz2kts9n69g8crgv4jpjh6b40000gn/T/d20181026-96528-1av4gge/:team_id/profiles/development/Development_me.mobileprovision"
117
124
  # to
118
- # "profiles/development/Development_me.mobileprovision"
125
+ # ":s3_object_prefix:team_id/profiles/development/Development_me.mobileprovision"
119
126
  #
120
-
121
- target_path = sanitize_file_name(file_name)
127
+ target_path = s3_object_path(file_name)
122
128
  UI.verbose("Uploading '#{target_path}' to S3 Storage...")
123
129
 
124
130
  body = File.read(file_name)
@@ -130,7 +136,8 @@ module Match
130
136
 
131
137
  def delete_files(files_to_delete: [], custom_message: nil)
132
138
  files_to_delete.each do |file_name|
133
- target_path = sanitize_file_name(file_name)
139
+ target_path = s3_object_path(file_name)
140
+ UI.verbose("Deleting '#{target_path}' from S3 Storage...")
134
141
  s3_client.delete_file(s3_bucket, target_path)
135
142
  end
136
143
  end
@@ -152,6 +159,17 @@ module Match
152
159
 
153
160
  private
154
161
 
162
+ def s3_object_path(file_name)
163
+ santized = sanitize_file_name(file_name)
164
+ return santized if santized.start_with?(s3_object_prefix)
165
+
166
+ s3_object_prefix + santized
167
+ end
168
+
169
+ def strip_s3_object_prefix(object_path)
170
+ object_path.gsub(/^#{s3_object_prefix}/, "")
171
+ end
172
+
155
173
  def sanitize_file_name(file_name)
156
174
  file_name.gsub(self.working_directory + "/", "")
157
175
  end
@@ -69,6 +69,9 @@
69
69
  # new features March 2019
70
70
  # 1. two more fixes for only creating the archived-expanded-entitlements.xcent file if the version of Xcode < 9.3 as Xcode 10 does not create it.
71
71
  #
72
+ # new features June 2020
73
+ # 1. enable (re)signing of OnDemandResources when ipa has been built for the appstore
74
+ #
72
75
 
73
76
  # Logging functions
74
77
 
@@ -528,6 +531,21 @@ function resign {
528
531
  PlistBuddy -c "Set :CFBundleVersion $BUNDLE_VERSION" "$APP_PATH/Info.plist"
529
532
  fi
530
533
 
534
+ # Check for and resign OnDemandResource folders
535
+ ODR_DIR="$(dirname $APP_PATH)/OnDemandResources"
536
+ if [ -d "$ODR_DIR" ]; then
537
+ for assetpack in "$ODR_DIR"/*
538
+ do
539
+ if [[ "$assetpack" == *.assetpack ]]; then
540
+ rm -rf $assetpack/_CodeSignature
541
+ /usr/bin/codesign ${VERBOSE} ${KEYCHAIN_FLAG} -f -s "$CERTIFICATE" "$assetpack"
542
+ checkStatus
543
+ else
544
+ log "Ignoring non-assetpack: $assetpack"
545
+ fi
546
+ done
547
+ fi
548
+
531
549
  # Check for and resign any embedded frameworks (new feature for iOS 8 and above apps)
532
550
  FRAMEWORKS_DIR="$APP_PATH/Frameworks"
533
551
  if [ -d "$FRAMEWORKS_DIR" ]; then
@@ -1,3 +1,4 @@
1
+ require 'babosa'
1
2
  require 'faraday' # HTTP Client
2
3
  require 'faraday-cookie_jar'
3
4
  require 'faraday_middleware'
@@ -7,7 +8,6 @@ require 'cgi'
7
8
  require 'tempfile'
8
9
 
9
10
  require 'fastlane/version'
10
- require_relative 'babosa_fix'
11
11
  require_relative 'helper/net_http_generic_request'
12
12
  require_relative 'helper/plist_middleware'
13
13
  require_relative 'helper/rels_middleware'
@@ -206,7 +206,6 @@ module Spaceship
206
206
 
207
207
  @client = Faraday.new(self.class.hostname, options) do |c|
208
208
  c.response(:json, content_type: /\bjson$/)
209
- c.response(:xml, content_type: /\bxml$/)
210
209
  c.response(:plist, content_type: /\bplist$/)
211
210
  c.use(:cookie_jar, jar: @cookie)
212
211
  c.use(FaradayMiddleware::RelsMiddleware)
@@ -28,7 +28,6 @@ module Spaceship
28
28
 
29
29
  @client = Faraday.new(hostname, options) do |c|
30
30
  c.response(:json, content_type: /\bjson$/)
31
- c.response(:xml, content_type: /\bxml$/)
32
31
  c.response(:plist, content_type: /\bplist$/)
33
32
  c.use(FaradayMiddleware::RelsMiddleware)
34
33
  c.adapter(Faraday.default_adapter)
@@ -89,7 +89,7 @@ module Spaceship
89
89
  end
90
90
 
91
91
  #
92
- # Age Rating Delcaration
92
+ # Age Rating Declaration
93
93
  #
94
94
 
95
95
  def fetch_age_rating_declaration
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.150.3
4
+ version: 2.151.0
5
5
  platform: ruby
6
6
  authors:
7
- - Max Ott
8
- - Helmut Januschka
9
- - Aaron Brager
10
- - Felix Krause
11
- - Andrew McBurney
12
7
  - Matthew Ellis
13
- - Josh Holtz
14
- - Joshua Liebowitz
15
- - Maksym Grebenets
16
- - Jérôme Lacoste
17
- - Jorge Revuelta H
18
8
  - Iulian Onofrei
9
+ - Andrew McBurney
10
+ - Stefan Natchev
11
+ - Fumiya Nakamura
12
+ - Luka Mirosevic
19
13
  - Jimmy Dee
20
14
  - Manu Wallner
21
- - Fumiya Nakamura
22
15
  - Daniel Jankowski
23
- - Jan Piotrowski
16
+ - Aaron Brager
24
17
  - Danielle Tomlinson
18
+ - Maksym Grebenets
19
+ - Jan Piotrowski
20
+ - Josh Holtz
21
+ - Jérôme Lacoste
22
+ - Joshua Liebowitz
23
+ - Helmut Januschka
25
24
  - Olivier Halligon
26
25
  - Kohki Miki
27
- - Stefan Natchev
28
- - Luka Mirosevic
26
+ - Max Ott
27
+ - Jorge Revuelta H
28
+ - Felix Krause
29
29
  autorequire:
30
30
  bindir: bin
31
31
  cert_chain: []
32
- date: 2020-07-04 00:00:00.000000000 Z
32
+ date: 2020-07-07 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: slack-notifier
@@ -259,7 +259,7 @@ dependencies:
259
259
  requirements:
260
260
  - - ">="
261
261
  - !ruby/object:Gem::Version
262
- version: 1.0.2
262
+ version: 1.0.3
263
263
  - - "<"
264
264
  - !ruby/object:Gem::Version
265
265
  version: 2.0.0
@@ -269,7 +269,7 @@ dependencies:
269
269
  requirements:
270
270
  - - ">="
271
271
  - !ruby/object:Gem::Version
272
- version: 1.0.2
272
+ version: 1.0.3
273
273
  - - "<"
274
274
  - !ruby/object:Gem::Version
275
275
  version: 2.0.0
@@ -475,20 +475,6 @@ dependencies:
475
475
  - - "<"
476
476
  - !ruby/object:Gem::Version
477
477
  version: 5.0.0
478
- - !ruby/object:Gem::Dependency
479
- name: multi_xml
480
- requirement: !ruby/object:Gem::Requirement
481
- requirements:
482
- - - "~>"
483
- - !ruby/object:Gem::Version
484
- version: '0.5'
485
- type: :runtime
486
- prerelease: false
487
- version_requirements: !ruby/object:Gem::Requirement
488
- requirements:
489
- - - "~>"
490
- - !ruby/object:Gem::Version
491
- version: '0.5'
492
478
  - !ruby/object:Gem::Dependency
493
479
  name: rubyzip
494
480
  requirement: !ruby/object:Gem::Requirement
@@ -595,16 +581,22 @@ dependencies:
595
581
  name: jwt
596
582
  requirement: !ruby/object:Gem::Requirement
597
583
  requirements:
598
- - - "~>"
584
+ - - ">="
599
585
  - !ruby/object:Gem::Version
600
586
  version: 2.1.0
587
+ - - "<"
588
+ - !ruby/object:Gem::Version
589
+ version: '3'
601
590
  type: :runtime
602
591
  prerelease: false
603
592
  version_requirements: !ruby/object:Gem::Requirement
604
593
  requirements:
605
- - - "~>"
594
+ - - ">="
606
595
  - !ruby/object:Gem::Version
607
596
  version: 2.1.0
597
+ - - "<"
598
+ - !ruby/object:Gem::Version
599
+ version: '3'
608
600
  - !ruby/object:Gem::Dependency
609
601
  name: google-api-client
610
602
  requirement: !ruby/object:Gem::Requirement
@@ -909,14 +901,14 @@ dependencies:
909
901
  requirements:
910
902
  - - "~>"
911
903
  - !ruby/object:Gem::Version
912
- version: 1.4.8
904
+ version: 2.0.8
913
905
  type: :development
914
906
  prerelease: false
915
907
  version_requirements: !ruby/object:Gem::Requirement
916
908
  requirements:
917
909
  - - "~>"
918
910
  - !ruby/object:Gem::Version
919
- version: 1.4.8
911
+ version: 2.0.8
920
912
  - !ruby/object:Gem::Dependency
921
913
  name: xcov
922
914
  requirement: !ruby/object:Gem::Requirement
@@ -980,7 +972,6 @@ files:
980
972
  - deliver/lib/deliver/.commands_generator.rb.swp
981
973
  - deliver/lib/deliver/.download_screenshots.rb.swp
982
974
  - deliver/lib/deliver/.submit_for_review.rb.swp
983
- - deliver/lib/deliver/.upload_metadata.rb.swp
984
975
  - deliver/lib/deliver/.upload_screenshots.rb.swp
985
976
  - deliver/lib/deliver/app_screenshot.rb
986
977
  - deliver/lib/deliver/commands_generator.rb
@@ -1377,6 +1368,9 @@ files:
1377
1368
  - fastlane/swift/SocketClient.swift
1378
1369
  - fastlane/swift/SocketClientDelegateProtocol.swift
1379
1370
  - fastlane/swift/SocketResponse.swift
1371
+ - fastlane/swift/formatting/Brewfile
1372
+ - fastlane/swift/formatting/Brewfile.lock.json
1373
+ - fastlane/swift/formatting/Rakefile
1380
1374
  - fastlane/swift/main.swift
1381
1375
  - fastlane/swift/upgrade_manifest.json
1382
1376
  - fastlane_core/README.md
@@ -1639,7 +1633,6 @@ files:
1639
1633
  - spaceship/lib/assets/languageMappingReadable.json
1640
1634
  - spaceship/lib/spaceship.rb
1641
1635
  - spaceship/lib/spaceship/.DS_Store
1642
- - spaceship/lib/spaceship/babosa_fix.rb
1643
1636
  - spaceship/lib/spaceship/base.rb
1644
1637
  - spaceship/lib/spaceship/client.rb
1645
1638
  - spaceship/lib/spaceship/commands_generator.rb