fastlane 2.113.0.beta.20190104200013 → 2.113.0.beta.20190105200036

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e1643d80622d4e58e56e926983b22fdcba09a131
4
- data.tar.gz: 66b6fa2e37d4d2067881fadb82f97221e3909028
3
+ metadata.gz: e13593bf1999f09f372d98a8208f8133935dd524
4
+ data.tar.gz: c356f525b6b96c2f8ed97664d2755ab1b38dbbc5
5
5
  SHA512:
6
- metadata.gz: f43039f4feba6145110ae47b2401bf219e9045f414a101e383029301d824317ac87e342590a6fcc43874ac048b49760dcb9f99c3445e68c94fe2213e5d229a70
7
- data.tar.gz: 5d0b18a642e118c0629f986915273aaf90bb0531144996ef4988ec7be8d316471b6efe9d711f9fcc3a33174816c33af2a5b1603e11cc32ef4ccd777f57421ecf
6
+ metadata.gz: e0c0b0c5d2d3f7acc88ad9f634485da61ab087de43f045c40f5726c3ebdd5053cda8e81dc3c445d2a8eb2b5c9b65482304d7855a695ebfa3d36a57cbeace648d
7
+ data.tar.gz: bf78f30897742fb3a632a03d83e9587ccc4d1e8beff16c9a64fcf98ef382eed44be9dfefb7a817f68703141ebc23898b05ee63df2e04a1c80460d6b843134120
@@ -1,4 +1,5 @@
1
1
  require_relative 'module'
2
+ require 'open-uri'
2
3
 
3
4
  module Deliver
4
5
  class DownloadScreenshots
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.113.0.beta.20190104200013'.freeze
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
@@ -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
- sed -i .bak "s/$OLD_BUNDLE_ID/$NEW_BUNDLE_ID/g" "$PATCHED_ENTITLEMENTS"
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("https://127.0.0.1:8888")
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(ENV["SPACESHIP_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 Complicance. This checks for any section error
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 Complicance: #{export_error_keys}"
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.20190104200013
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-04 00:00:00.000000000 Z
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
- - cert/lib
1686
- - pilot/lib
1685
+ - produce/lib
1687
1686
  - snapshot/lib
1688
1687
  - fastlane/lib
1689
- - pem/lib
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
- - credentials_manager/lib
1698
+ - screengrab/lib
1694
1699
  - deliver/lib
1695
- - spaceship/lib
1696
- - gym/lib
1697
1700
  - scan/lib
1698
- - screengrab/lib
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: