fastlane 2.229.0 → 2.230.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.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +100 -94
  3. data/deliver/lib/assets/summary.html.erb +3 -3
  4. data/deliver/lib/deliver/app_screenshot.rb +215 -347
  5. data/deliver/lib/deliver/app_screenshot_iterator.rb +4 -1
  6. data/deliver/lib/deliver/app_screenshot_validator.rb +5 -21
  7. data/deliver/lib/deliver/loader.rb +2 -9
  8. data/deliver/lib/deliver/upload_metadata.rb +5 -0
  9. data/deliver/lib/deliver/upload_screenshots.rb +4 -2
  10. data/fastlane/lib/fastlane/actions/docs/create_app_online.md +2 -1
  11. data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +3 -1
  12. data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +34 -6
  13. data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +2 -0
  14. data/fastlane/lib/fastlane/actions/install_xcode_plugin.rb +3 -2
  15. data/fastlane/lib/fastlane/actions/modify_services.rb +1 -0
  16. data/fastlane/lib/fastlane/actions/notarize.rb +1 -1
  17. data/fastlane/lib/fastlane/actions/xcov.rb +1 -7
  18. data/fastlane/lib/fastlane/documentation/markdown_docs_generator.rb +4 -4
  19. data/fastlane/lib/fastlane/plugins/template/.github/workflows/test.yml +20 -20
  20. data/fastlane/lib/fastlane/version.rb +1 -1
  21. data/fastlane/swift/Deliverfile.swift +1 -1
  22. data/fastlane/swift/DeliverfileProtocol.swift +1 -1
  23. data/fastlane/swift/Fastlane.swift +85 -13
  24. data/fastlane/swift/Gymfile.swift +1 -1
  25. data/fastlane/swift/GymfileProtocol.swift +9 -1
  26. data/fastlane/swift/Matchfile.swift +1 -1
  27. data/fastlane/swift/MatchfileProtocol.swift +1 -1
  28. data/fastlane/swift/Precheckfile.swift +1 -1
  29. data/fastlane/swift/PrecheckfileProtocol.swift +1 -1
  30. data/fastlane/swift/Scanfile.swift +1 -1
  31. data/fastlane/swift/ScanfileProtocol.swift +5 -1
  32. data/fastlane/swift/Screengrabfile.swift +1 -1
  33. data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
  34. data/fastlane/swift/Snapshotfile.swift +1 -1
  35. data/fastlane/swift/SnapshotfileProtocol.swift +5 -1
  36. data/fastlane_core/lib/fastlane_core/fastlane_pty.rb +5 -1
  37. data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +14 -0
  38. data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +38 -8
  39. data/fastlane_core/lib/fastlane_core/project.rb +4 -0
  40. data/fastlane_core/lib/fastlane_core/provisioning_profile.rb +7 -1
  41. data/frameit/lib/frameit/device.rb +2 -2
  42. data/frameit/lib/frameit/device_types.rb +108 -70
  43. data/frameit/lib/frameit/template_finder.rb +1 -1
  44. data/gym/lib/gym/module.rb +9 -4
  45. data/gym/lib/gym/options.rb +14 -1
  46. data/gym/lib/gym/runner.rb +38 -3
  47. data/produce/lib/produce/developer_center.rb +1 -0
  48. data/produce/lib/produce/service.rb +6 -1
  49. data/scan/lib/scan/options.rb +5 -0
  50. data/scan/lib/scan/test_command_generator.rb +8 -0
  51. data/sigh/lib/sigh/local_manage.rb +6 -4
  52. data/sigh/lib/sigh/runner.rb +18 -1
  53. data/snapshot/lib/snapshot/options.rb +5 -0
  54. data/spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb +62 -8
  55. data/spaceship/lib/spaceship/connect_api/models/app_info_localization.rb +4 -4
  56. data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +7 -1
  57. data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +16 -16
  58. data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +2 -0
  59. data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +0 -6
  60. data/spaceship/lib/spaceship/errors.rb +8 -6
  61. data/supply/lib/supply/client.rb +18 -1
  62. metadata +75 -29
  63. data/fastlane/lib/fastlane/core_ext/bundler_monkey_patch.rb +0 -14
  64. data/fastlane/lib/fastlane/plugins/template/.circleci/config.yml +0 -43
  65. data/fastlane/lib/fastlane/plugins/template/.travis.yml +0 -4
@@ -1,14 +0,0 @@
1
- # https://github.com/bundler/bundler/issues/4368
2
- #
3
- # There is an issue with RubyGems 2.6.2 where it attempts to call Bundler::SpecSet#size, which doesn't exist.
4
- # If a gem is not installed, a `Gem::Specification.find_by_name` call will trigger this problem.
5
- if Object.const_defined?(:Bundler) &&
6
- Bundler.const_defined?(:SpecSet) &&
7
- Bundler::SpecSet.instance_methods.include?(:length) &&
8
- !Bundler::SpecSet.instance_methods.include?(:size)
9
- module Bundler
10
- class SpecSet
11
- alias size length
12
- end
13
- end
14
- end
@@ -1,43 +0,0 @@
1
- # Ruby CircleCI 2.0 configuration file
2
- #
3
- # Check https://circleci.com/docs/2.0/language-ruby/ for more details
4
- #
5
- version: 2
6
- jobs:
7
- build:
8
- docker:
9
- # specify the version you desire here
10
- - image: circleci/ruby:2.5
11
-
12
- working_directory: ~/repo
13
-
14
- steps:
15
- - checkout
16
-
17
- # Download and cache dependencies
18
- - restore_cache:
19
- keys:
20
- - v1-dependencies-{{ checksum "Gemfile" }}
21
- # fallback to using the latest cache if no exact match is found
22
- - v1-dependencies-
23
-
24
- - run:
25
- name: install dependencies
26
- command: bundle check || bundle install --jobs=4 --retry=3 --path vendor/bundle
27
-
28
- - save_cache:
29
- paths:
30
- - ./vendor
31
- key: v1-dependencies-{{ checksum "Gemfile" }}
32
-
33
- # run tests!
34
- - run:
35
- name: run tests
36
- command: bundle exec rake
37
-
38
- # collect reports
39
- - store_test_results:
40
- path: ~/repo/test-results
41
- - store_artifacts:
42
- path: ~/repo/test-results
43
- destination: test-results
@@ -1,4 +0,0 @@
1
- # os: osx # enable this if you need macOS support
2
- language: ruby
3
- rvm:
4
- - 2.2.4