fastlane 2.113.0.beta.20190104200013 → 2.113.0.beta.20190105200036
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e13593bf1999f09f372d98a8208f8133935dd524
|
4
|
+
data.tar.gz: c356f525b6b96c2f8ed97664d2755ab1b38dbbc5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0c0b0c5d2d3f7acc88ad9f634485da61ab087de43f045c40f5726c3ebdd5053cda8e81dc3c445d2a8eb2b5c9b65482304d7855a695ebfa3d36a57cbeace648d
|
7
|
+
data.tar.gz: bf78f30897742fb3a632a03d83e9587ccc4d1e8beff16c9a64fcf98ef382eed44be9dfefb7a817f68703141ebc23898b05ee63df2e04a1c80460d6b843134120
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.113.0.beta.
|
2
|
+
VERSION = '2.113.0.beta.20190105200036'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
data/sigh/lib/assets/resign.sh
CHANGED
@@ -787,7 +787,13 @@ function resign {
|
|
787
787
|
OLD_BUNDLE_ID="$(PlistBuddy -c "Print :CFBundleIdentifier" "$TEMP_DIR/oldInfo.plist")"
|
788
788
|
NEW_BUNDLE_ID="$(bundle_id_for_provison "$NEW_PROVISION")"
|
789
789
|
log "Replacing old bundle ID '$OLD_BUNDLE_ID' with new bundle ID '$NEW_BUNDLE_ID' in patched entitlements"
|
790
|
-
|
790
|
+
# Note: ideally we'd match against the opening <string> tag too, but this isn't possible
|
791
|
+
# because $OLD_BUNDLE_ID and $NEW_BUNDLE_ID do not include the team ID prefix which is
|
792
|
+
# present in the entitlements file.
|
793
|
+
# e.g. <string>AB1GP98Q19.com.example.foo</string>
|
794
|
+
# vs
|
795
|
+
# com.example.foo
|
796
|
+
sed -i .bak "s!${OLD_BUNDLE_ID}</string>!${NEW_BUNDLE_ID}</string>!g" "$PATCHED_ENTITLEMENTS"
|
791
797
|
|
792
798
|
log "Resigning application using certificate: '$CERTIFICATE'"
|
793
799
|
log "and patched entitlements:"
|
@@ -212,10 +212,10 @@ module Spaceship
|
|
212
212
|
if ENV['SPACESHIP_DEBUG']
|
213
213
|
# for debugging only
|
214
214
|
# This enables tracking of networking requests using Charles Web Proxy
|
215
|
-
c.proxy
|
215
|
+
c.proxy = "https://127.0.0.1:8888"
|
216
216
|
c.ssl[:verify_mode] = OpenSSL::SSL::VERIFY_NONE
|
217
217
|
elsif ENV["SPACESHIP_PROXY"]
|
218
|
-
c.proxy
|
218
|
+
c.proxy = ENV["SPACESHIP_PROXY"]
|
219
219
|
c.ssl[:verify_mode] = OpenSSL::SSL::VERIFY_NONE if ENV["SPACESHIP_PROXY_SSL_VERIFY_NONE"]
|
220
220
|
end
|
221
221
|
|
@@ -1111,14 +1111,14 @@ module Spaceship
|
|
1111
1111
|
handle_itc_response(r.body)
|
1112
1112
|
|
1113
1113
|
# App Store Connect still returns a success status code even the submission
|
1114
|
-
# was failed because of Ad ID Info / Export
|
1114
|
+
# was failed because of Ad ID Info / Export Compliance. This checks for any section error
|
1115
1115
|
# keys in returned adIdInfo / exportCompliance and prints them out.
|
1116
1116
|
ad_id_error_keys = r.body.fetch('data').fetch('adIdInfo').fetch('sectionErrorKeys')
|
1117
1117
|
export_error_keys = r.body.fetch('data').fetch('exportCompliance').fetch('sectionErrorKeys')
|
1118
1118
|
if ad_id_error_keys.any?
|
1119
1119
|
raise "Something wrong with your Ad ID information: #{ad_id_error_keys}."
|
1120
1120
|
elsif export_error_keys.any?
|
1121
|
-
raise "Something wrong with your Export
|
1121
|
+
raise "Something wrong with your Export Compliance: #{export_error_keys}"
|
1122
1122
|
elsif r.body.fetch('messages').fetch('info').last == "Successful POST"
|
1123
1123
|
# success
|
1124
1124
|
else
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.113.0.beta.
|
4
|
+
version: 2.113.0.beta.20190105200036
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danielle Tomlinson
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-01-
|
30
|
+
date: 2019-01-05 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1682,23 +1682,23 @@ metadata:
|
|
1682
1682
|
post_install_message:
|
1683
1683
|
rdoc_options: []
|
1684
1684
|
require_paths:
|
1685
|
-
-
|
1686
|
-
- pilot/lib
|
1685
|
+
- produce/lib
|
1687
1686
|
- snapshot/lib
|
1688
1687
|
- fastlane/lib
|
1689
|
-
-
|
1688
|
+
- gym/lib
|
1689
|
+
- spaceship/lib
|
1690
1690
|
- sigh/lib
|
1691
|
+
- pilot/lib
|
1692
|
+
- credentials_manager/lib
|
1693
|
+
- frameit/lib
|
1691
1694
|
- precheck/lib
|
1695
|
+
- pem/lib
|
1696
|
+
- match/lib
|
1692
1697
|
- fastlane_core/lib
|
1693
|
-
-
|
1698
|
+
- screengrab/lib
|
1694
1699
|
- deliver/lib
|
1695
|
-
- spaceship/lib
|
1696
|
-
- gym/lib
|
1697
1700
|
- scan/lib
|
1698
|
-
-
|
1699
|
-
- produce/lib
|
1700
|
-
- frameit/lib
|
1701
|
-
- match/lib
|
1701
|
+
- cert/lib
|
1702
1702
|
- supply/lib
|
1703
1703
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1704
1704
|
requirements:
|