fastlane 2.196.0 → 2.199.0
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.
- checksums.yaml +4 -4
- data/README.md +94 -94
- data/cert/lib/cert/runner.rb +5 -2
- data/deliver/lib/assets/ScreenshotsHelp +29 -6
- data/deliver/lib/deliver/app_screenshot.rb +5 -4
- data/deliver/lib/deliver/app_screenshot_iterator.rb +1 -1
- data/deliver/lib/deliver/runner.rb +1 -1
- data/deliver/lib/deliver/upload_screenshots.rb +1 -1
- data/fastlane/lib/.DS_Store +0 -0
- data/fastlane/lib/fastlane/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +1 -1
- data/fastlane/lib/fastlane/actions/download_dsyms.rb +61 -45
- data/fastlane/lib/fastlane/actions/ensure_xcode_version.rb +1 -1
- data/fastlane/lib/fastlane/actions/get_push_certificate.rb +1 -1
- data/fastlane/lib/fastlane/actions/get_version_number.rb +6 -2
- data/fastlane/lib/fastlane/actions/notarize.rb +29 -11
- data/fastlane/lib/fastlane/actions/set_github_release.rb +11 -5
- data/fastlane/lib/fastlane/actions/update_code_signing_settings.rb +18 -1
- data/fastlane/lib/fastlane/actions/xcversion.rb +18 -3
- data/fastlane/lib/fastlane/documentation/docs_generator.rb +17 -12
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Deliverfile.swift +1 -1
- data/fastlane/swift/DeliverfileProtocol.swift +1 -1
- data/fastlane/swift/Fastlane.swift +66 -21
- data/fastlane/swift/Gymfile.swift +1 -1
- data/fastlane/swift/GymfileProtocol.swift +5 -1
- data/fastlane/swift/Matchfile.swift +1 -1
- data/fastlane/swift/MatchfileProtocol.swift +1 -1
- data/fastlane/swift/Precheckfile.swift +1 -1
- data/fastlane/swift/PrecheckfileProtocol.swift +1 -1
- data/fastlane/swift/Runner.swift +3 -7
- data/fastlane/swift/Scanfile.swift +1 -1
- data/fastlane/swift/ScanfileProtocol.swift +3 -3
- data/fastlane/swift/Screengrabfile.swift +1 -1
- data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
- data/fastlane/swift/Snapshotfile.swift +1 -1
- data/fastlane/swift/SnapshotfileProtocol.swift +1 -1
- data/fastlane/swift/formatting/Brewfile.lock.json +26 -21
- data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +38 -7
- data/frameit/lib/frameit/editor.rb +16 -18
- data/frameit/lib/frameit/trim_box.rb +6 -0
- data/gym/lib/gym/generators/build_command_generator.rb +1 -1
- data/gym/lib/gym/options.rb +6 -0
- data/match/lib/match/nuke.rb +79 -1
- data/match/lib/match/spaceship_ensure.rb +1 -0
- data/pem/lib/pem/manager.rb +29 -6
- data/pem/lib/pem/options.rb +9 -0
- data/pilot/lib/pilot/build_manager.rb +1 -1
- data/scan/lib/scan/options.rb +2 -2
- data/scan/lib/scan/runner.rb +1 -1
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +1 -1
- data/spaceship/lib/spaceship/client.rb +35 -15
- data/spaceship/lib/spaceship/commands_generator.rb +1 -1
- data/spaceship/lib/spaceship/connect_api/models/build.rb +4 -2
- data/spaceship/lib/spaceship/connect_api/models/build_bundle.rb +59 -0
- data/spaceship/lib/spaceship/connect_api/models/certificate.rb +3 -0
- data/spaceship/lib/spaceship/connect_api/response.rb +13 -0
- data/spaceship/lib/spaceship/connect_api.rb +1 -0
- data/spaceship/lib/spaceship/globals.rb +9 -0
- data/spaceship/lib/spaceship/spaceauth_runner.rb +1 -1
- data/trainer/lib/.DS_Store +0 -0
- metadata +24 -18
@@ -1,5 +1,9 @@
|
|
1
1
|
module Spaceship
|
2
2
|
class Globals
|
3
|
+
class << self
|
4
|
+
attr_writer(:check_session)
|
5
|
+
end
|
6
|
+
|
3
7
|
# if spaceship is run with a FastlaneCore available respect the global state there
|
4
8
|
# otherwise fallback to $verbose
|
5
9
|
def self.verbose?
|
@@ -8,5 +12,10 @@ module Spaceship
|
|
8
12
|
end
|
9
13
|
return $verbose
|
10
14
|
end
|
15
|
+
|
16
|
+
# if spaceship is run with the --check_session flag this value will be set to true
|
17
|
+
def self.check_session
|
18
|
+
return @check_session
|
19
|
+
end
|
11
20
|
end
|
12
21
|
end
|
@@ -16,7 +16,7 @@ module Spaceship
|
|
16
16
|
|
17
17
|
def run
|
18
18
|
begin
|
19
|
-
puts("Logging into to App Store Connect (#{@username})...")
|
19
|
+
puts("Logging into to App Store Connect (#{@username})...") unless Spaceship::Globals.check_session
|
20
20
|
Spaceship::Tunes.login(@username)
|
21
21
|
puts("Successfully logged in to App Store Connect".green)
|
22
22
|
puts("")
|
Binary file
|
metadata
CHANGED
@@ -1,38 +1,38 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.199.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
-
|
7
|
+
- Iulian Onofrei
|
8
|
+
- Fumiya Nakamura
|
9
|
+
- Aaron Brager
|
10
|
+
- Olivier Halligon
|
11
|
+
- Helmut Januschka
|
12
|
+
- Manu Wallner
|
9
13
|
- Luka Mirosevic
|
14
|
+
- Jérôme Lacoste
|
15
|
+
- Jimmy Dee
|
16
|
+
- Felix Krause
|
17
|
+
- Maksym Grebenets
|
10
18
|
- Daniel Jankowski
|
19
|
+
- Danielle Tomlinson
|
11
20
|
- Satoshi Namai
|
12
21
|
- Matthew Ellis
|
13
|
-
- Jan Piotrowski
|
14
|
-
- Andrew McBurney
|
15
|
-
- Iulian Onofrei
|
16
|
-
- Manish Rathi
|
17
|
-
- Kohki Miki
|
18
|
-
- Danielle Tomlinson
|
19
22
|
- Roger Oba
|
20
|
-
-
|
21
|
-
- Felix Krause
|
22
|
-
- Aaron Brager
|
23
|
-
- Jimmy Dee
|
24
|
-
- Helmut Januschka
|
23
|
+
- Manish Rathi
|
25
24
|
- Jorge Revuelta H
|
26
|
-
- Olivier Halligon
|
27
25
|
- Josh Holtz
|
28
|
-
- Manu Wallner
|
29
26
|
- Joshua Liebowitz
|
30
|
-
-
|
27
|
+
- Kohki Miki
|
28
|
+
- Max Ott
|
29
|
+
- Andrew McBurney
|
30
|
+
- Jan Piotrowski
|
31
31
|
- Stefan Natchev
|
32
32
|
autorequire:
|
33
33
|
bindir: bin
|
34
34
|
cert_chain: []
|
35
|
-
date: 2021-10
|
35
|
+
date: 2021-12-10 00:00:00.000000000 Z
|
36
36
|
dependencies:
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: xcodeproj
|
@@ -993,6 +993,7 @@ files:
|
|
993
993
|
- deliver/lib/deliver/upload_price_tier.rb
|
994
994
|
- deliver/lib/deliver/upload_screenshots.rb
|
995
995
|
- fastlane/README.md
|
996
|
+
- fastlane/lib/.DS_Store
|
996
997
|
- fastlane/lib/assets/ActionDetails.md.erb
|
997
998
|
- fastlane/lib/assets/Actions.md.erb
|
998
999
|
- fastlane/lib/assets/AppfileTemplate
|
@@ -1011,8 +1012,10 @@ files:
|
|
1011
1012
|
- fastlane/lib/assets/s3_plist_template.erb
|
1012
1013
|
- fastlane/lib/assets/s3_version_template.erb
|
1013
1014
|
- fastlane/lib/fastlane.rb
|
1015
|
+
- fastlane/lib/fastlane/.DS_Store
|
1014
1016
|
- fastlane/lib/fastlane/action.rb
|
1015
1017
|
- fastlane/lib/fastlane/action_collector.rb
|
1018
|
+
- fastlane/lib/fastlane/actions/.DS_Store
|
1016
1019
|
- fastlane/lib/fastlane/actions/README.md
|
1017
1020
|
- fastlane/lib/fastlane/actions/actions_helper.rb
|
1018
1021
|
- fastlane/lib/fastlane/actions/adb.rb
|
@@ -1691,6 +1694,7 @@ files:
|
|
1691
1694
|
- spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb
|
1692
1695
|
- spaceship/lib/spaceship/connect_api/models/build.rb
|
1693
1696
|
- spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
|
1697
|
+
- spaceship/lib/spaceship/connect_api/models/build_bundle.rb
|
1694
1698
|
- spaceship/lib/spaceship/connect_api/models/build_delivery.rb
|
1695
1699
|
- spaceship/lib/spaceship/connect_api/models/bundle_id.rb
|
1696
1700
|
- spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb
|
@@ -1835,6 +1839,7 @@ files:
|
|
1835
1839
|
- supply/lib/supply/release_listing.rb
|
1836
1840
|
- supply/lib/supply/setup.rb
|
1837
1841
|
- supply/lib/supply/uploader.rb
|
1842
|
+
- trainer/lib/.DS_Store
|
1838
1843
|
homepage: https://fastlane.tools
|
1839
1844
|
licenses:
|
1840
1845
|
- MIT
|
@@ -1865,6 +1870,7 @@ require_paths:
|
|
1865
1870
|
- snapshot/lib
|
1866
1871
|
- spaceship/lib
|
1867
1872
|
- supply/lib
|
1873
|
+
- trainer/lib
|
1868
1874
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1869
1875
|
requirements:
|
1870
1876
|
- - ">="
|