fastlane 2.69.1 → 2.69.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: caa6ba6abd091494d252122833a11014933f41bb
4
- data.tar.gz: 7a32a5e01beaa117767e1201b1f22fbeda0d599b
3
+ metadata.gz: 563075abcdbdef3f7a44d4d18b05e2c03ea6bb7c
4
+ data.tar.gz: 87758c6d41993b420c7cb787f4f7b093db2e60df
5
5
  SHA512:
6
- metadata.gz: 2486591552f091203188ccc295b31c449c657961c94c3fb96c32d63d604ca3d23a42c3bb26b7402002032b6cac1865f23eac0ba796d6057a7db45971fb097fd8
7
- data.tar.gz: 12992fee1408c78dc19b26351741f757764da984e618d003198ff77a8fb637329f242084de4a089b82f2d1bfa1e0f1bde5bffa1d3281677bab782e9bb2482d1f
6
+ metadata.gz: acb913a57e121443f1f7ae5bc8ef5842698e99f80eeede77fb4f992c7e3567b73b7edaa212f5fb3a0d724f32ef1983834a42e138989efa21f87fb4cf078a86ae
7
+ data.tar.gz: ca7b335342ed381b42c4ce2966f448935f1cee8cc32284dc18b0abb1c3b3c6c005999c0651efd1fc40dbe31ac30a8a4802effcd06a7cbae38c3abd2db336a665
@@ -84,7 +84,7 @@ module Fastlane
84
84
 
85
85
  def self.example_code
86
86
  [
87
- 'sync_code_signing(type: "appstore", app_identifier: ["tools.fastlane.app"])',
87
+ 'sync_code_signing(type: "appstore", app_identifier: "tools.fastlane.app")',
88
88
  'sync_code_signing(type: "development", readonly: true)',
89
89
  'sync_code_signing(app_identifier: ["tools.fastlane.app", "tools.fastlane.sleepy"])',
90
90
  'match # alias for "sync_code_signing"'
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.69.1'.freeze
2
+ VERSION = '2.69.2'.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
@@ -33,7 +33,8 @@ module Match
33
33
  env_name: "MATCH_APP_IDENTIFIER",
34
34
  description: "The bundle identifier(s) of your app (comma-separated)",
35
35
  is_string: false,
36
- type: Array,
36
+ type: Array, # we actually allow String and Array here
37
+ skip_type_validation: true,
37
38
  default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)),
38
39
  FastlaneCore::ConfigItem.new(key: :username,
39
40
  short_option: "-u",
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.69.1
4
+ version: 2.69.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -829,7 +829,6 @@ files:
829
829
  - deliver/lib/deliver/upload_price_tier.rb
830
830
  - deliver/lib/deliver/upload_screenshots.rb
831
831
  - fastlane/README.md
832
- - fastlane/lib/.DS_Store
833
832
  - fastlane/lib/assets/ActionDetails.md.erb
834
833
  - fastlane/lib/assets/Actions.md.erb
835
834
  - fastlane/lib/assets/AppfileTemplate
@@ -852,7 +851,6 @@ files:
852
851
  - fastlane/lib/fastlane/.DS_Store
853
852
  - fastlane/lib/fastlane/action.rb
854
853
  - fastlane/lib/fastlane/action_collector.rb
855
- - fastlane/lib/fastlane/actions/.DS_Store
856
854
  - fastlane/lib/fastlane/actions/README.md
857
855
  - fastlane/lib/fastlane/actions/actions_helper.rb
858
856
  - fastlane/lib/fastlane/actions/adb.rb
@@ -1134,7 +1132,6 @@ files:
1134
1132
  - fastlane/lib/fastlane/fast_file.rb
1135
1133
  - fastlane/lib/fastlane/fastlane_require.rb
1136
1134
  - fastlane/lib/fastlane/features.rb
1137
- - fastlane/lib/fastlane/helper/.DS_Store
1138
1135
  - fastlane/lib/fastlane/helper/README.md
1139
1136
  - fastlane/lib/fastlane/helper/adb_helper.rb
1140
1137
  - fastlane/lib/fastlane/helper/cocoapod_helper.rb
@@ -1204,10 +1201,8 @@ files:
1204
1201
  - fastlane/lib/fastlane/tools.rb
1205
1202
  - fastlane/lib/fastlane/version.rb
1206
1203
  - fastlane_core/README.md
1207
- - fastlane_core/lib/.DS_Store
1208
1204
  - fastlane_core/lib/assets/XMLTemplate.xml.erb
1209
1205
  - fastlane_core/lib/fastlane_core.rb
1210
- - fastlane_core/lib/fastlane_core/.DS_Store
1211
1206
  - fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb
1212
1207
  - fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb
1213
1208
  - fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb
@@ -1334,6 +1329,7 @@ files:
1334
1329
  - pilot/lib/pilot/tester_manager.rb
1335
1330
  - pilot/lib/pilot/tester_util.rb
1336
1331
  - precheck/README.md
1332
+ - precheck/lib/.DS_Store
1337
1333
  - precheck/lib/assets/PrecheckfileTemplate
1338
1334
  - precheck/lib/assets/PrecheckfileTemplate.swift
1339
1335
  - precheck/lib/precheck.rb
@@ -1579,7 +1575,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1579
1575
  version: '0'
1580
1576
  requirements: []
1581
1577
  rubyforge_project:
1582
- rubygems_version: 2.6.8
1578
+ rubygems_version: 2.2.5
1583
1579
  signing_key:
1584
1580
  specification_version: 4
1585
1581
  summary: The easiest way to automate beta deployments and releases for your iOS and
Binary file
Binary file