Ember.js - formerly known as SproutCore 2.0
The administration framework for Ruby on Rails applications.
jbrown/active_model_serializers 1
ActiveModel::Serializer implementation and Rails hooks
A data persistence library for Ember.js.
Ember Documentation Tool
Ember for Rails 3.1+
Familiarizing myself with the new Cypress integration for AWS Amplify
A declarative JavaScript library for application development using cloud services.
Familiarizing myself with the multiple environments feature of AWS Amplify
jbrown/appsync-graphql-cities 0
A real time React Native application built using GraphQL & AWS AppSync,
issue closedfastlane/fastlane
AppStoreConnect api rate limit: Uploading screenshots - Waiting for all the screenshots processed
<!-- Thanks for helping fastlane! Before you submit your issue, please make sure you followed our checklist and check the appropriate boxes by putting an x in the [ ]: [x] -->
New Issue Checklist
- [2.178.0 currently, but not seeing any changes to screenshot upload] Updated fastlane to the latest version
- [x] I read the Contribution Guidelines
- [x] I read docs.fastlane.tools
- [x] I searched for existing GitHub issues
Issue Description
Hitting rate limit when uploading screenshots
Command executed
bundle exec fastlane deliver run --api_key_path <redacted> --app_identifier <redacted> --overwrite_screenshots true --run_precheck_before_submit false --skip_binary_upload true --app_version <redacted> --phased_release true --force true --submission_information <redacted>
Complete output when running fastlane, including the stack trace and command used
[13:54:30]: Waiting for all the screenshots processed...
#<Thread:0x00007f8c33955800 /<home_path>/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/fastlane-2.178.0/deliver/lib/deliver/app_screenshot_iterator.rb:24 run> terminated with exception (report_on_exception is true):
/<home_path>/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/fastlane-2.178.0/spaceship/lib/spaceship/connect_api/api_client.rb:199:in `handle_response': The request rate limit has been reached. - We’ve received too many API requests for this API key in the past 60 seconds. Please wait and try again. (Spaceship::UnexpectedResponse)
from /<home_path>/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/fastlane-2.178.0/spaceship/lib/spaceship/connect_api/api_client.rb:113:in `get'
from /<home_path>/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/fastlane-2.178.0/spaceship/lib/spaceship/connect_api/tunes/tunes.rb:481:in `get_app_screenshot_sets'
from /<home_path>/.rbenv/versions/2.7.1/lib/ruby/2.7.0/forwardable.rb:235:in `get_app_screenshot_sets'
from /<home_path>/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/fastlane-2.178.0/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb:117:in `all'
from /<home_path>/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/fastlane-2.178.0/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb:88:in `get_app_screenshot_sets'
from /<home_path>/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/fastlane-2.178.0/deliver/lib/deliver/app_screenshot_iterator.rb:25:in `block (3 levels) in each_app_screenshot_set'
I haven't dug into this yet, it looks like fastlane is making a call in a loop, maybe that can be batched. Also maybe it's hitting the api too often while waiting for the screenshots to be processed.
closed time in 2 minutes
cltnschlosserissue commentfastlane/fastlane
AppStoreConnect api rate limit: Uploading screenshots - Waiting for all the screenshots processed
This issue will be auto-closed because there hasn't been any activity for a few months. Feel free to open a new one if you still experience this problem :+1:
comment created time in 2 minutes
issue closedfastlane/fastlane
create_keychain unlock: true doesn't actually unlock the keychain.
<!-- Thanks for helping fastlane! Before you submit your issue, please make sure you followed our checklist and check the appropriate boxes by putting an x in the [ ]: [x] -->
New Issue Checklist
- [x] Updated fastlane to the latest version
- [x] I read the Contribution Guidelines
- [x] I read docs.fastlane.tools
- [x] I searched for existing GitHub issues
Issue Description
Few things I've noticed:
create_keychainis required for fully hands off automated build.create_keychain(unlock: true, name: 'cicd')doesn't actually unlock the keychain created.- even when unlocked manually by myself clicking around OSX, xcode still can't see the certs described in the profiles.
This is our "codesigning prep" step before our build step to ensure we have all the bits in place (we're also using ruby-config)...
desc "Fetch the codesigning assets for IOS
Match will handle the creation of the filenames, which we control
via the application_id.
"
lane :keystore_get do |options|
application_id = options[:application_id] || Settings.application.id
team_id = options[:team_id] || Settings.apple.team_id
git_branch = options[:git_branch] || Settings.codesigning.branch
git_url = options[:git_url] || Settings.codesigning.git_url
output_path = Settings.codesigning.store_path
keychain_name = Settings.codesigning.keychain_name
create_keychain(
name: keychain_name,
password: '',
default_keychain: true,
lock_when_sleeps: false,
add_to_search_list: true,
unlock: true,
timeout: 3600
)
match(
keychain_name: keychain_name,
keychain_password: '',
git_url: git_url,
git_branch: git_branch,
storage_mode: 'git',
type: 'appstore',
team_name: team_id,
readonly: true,
output_path: output_path,
app_identifier: application_id
)
end
Command executed
I ran the lane. bundle exec fastlane ios keystore_get
Complete output when running fastlane, including the stack trace and command used
<!--
You can use --capture_output as the last command line argument for many commands to get that collected for you. Otherwise, please do it manually.
Caution: The output of --capture_output could contain sensitive data such as application ids, certificate ids, or email addresses. Please make sure you double check the output and replace anything sensitive you don't wish to submit in the issue
-->
<details> <pre>
--- Step: create_keychain ---
Found keychain '~/Library/Keychains/cicd', creation skipped
If creating a new Keychain DB is required please set the require_create option true to cause the action to fail
$ security list-keychains -d user
"~/Library/Keychains/login.keychain-db"
"~/Library/Keychains/cicd-db"
Found keychain '~/Library/Keychains/cicd-db' in list-keychains, adding to search list skipped
</pre>
</details>
Environment
<!--
Please run fastlane env and copy the output below. This will help us help you.
If you used the --capture_output option, please remove this block as it is already included there.
-->
<details><summary>🚫 fastlane environment 🚫</summary>
Stack
| Key | Value |
|---|---|
| OS | 11.1 |
| Ruby | 2.5.8 |
| Bundler? | true |
| Git | git version 2.24.3 (Apple Git-128) |
| Installation Source | ~/Projects/foovendor/bundle/ruby/2.5.0/bin/fastlane |
| Host | macOS 11.1 (20C69) |
| Ruby Lib Dir | ~/.rbenv/versions/2.5.8/lib |
| OpenSSL Version | OpenSSL 1.1.1j 16 Feb 2021 |
| Is contained | false |
| Is homebrew | false |
| Is installed via Fabric.app | false |
| Xcode Path | /Applications/Xcode.app/Contents/Developer/ |
| Xcode Version | 12.4 |
System Locale
| Variable | Value | |
|---|---|---|
| LANG | en_AU.UTF-8 | ✅ |
| LC_ALL | ||
| LANGUAGE |
fastlane files:
<details><summary>./fastlane/Fastfile</summary>
$VERBOSE = nil
import '../../../tools/fastlane/Fastfile'
</details>
No Appfile found
fastlane gems
| Gem | Version | Update-Status |
|---|---|---|
| fastlane | 2.180.1 | ✅ Up-To-Date |
Loaded fastlane plugins:
| Plugin | Version | Update-Status |
|---|---|---|
| fastlane-plugin-cryptex | 0.1.6 | 🚫 Update available |
<details><summary><b>Loaded gems</b></summary>
| Gem | Version |
|---|---|
| did_you_mean | 1.2.0 |
| bundler | 2.2.14 |
| rake | 13.0.3 |
| CFPropertyList | 3.0.3 |
| concurrent-ruby | 1.1.8 |
| i18n | 1.8.9 |
| minitest | 5.14.4 |
| thread_safe | 0.3.6 |
| tzinfo | 1.2.9 |
| activesupport | 5.2.4.5 |
| public_suffix | 4.0.6 |
| addressable | 2.7.0 |
| httpclient | 2.8.3 |
| json | 2.5.1 |
| algoliasearch | 1.27.5 |
| artifactory | 3.0.15 |
| ast | 2.4.2 |
| atomos | 0.1.3 |
| awesome_print | 1.9.2 |
| aws-eventstream | 1.1.1 |
| aws-partitions | 1.444.0 |
| aws-sigv4 | 1.2.3 |
| jmespath | 1.4.0 |
| aws-sdk-core | 3.113.1 |
| aws-sdk-kms | 1.43.0 |
| aws-sdk-s3 | 1.93.1 |
| babosa | 1.0.4 |
| claide | 1.0.3 |
| fuzzy_match | 2.0.4 |
| nap | 1.1.0 |
| netrc | 0.11.0 |
| ffi | 1.15.0 |
| ethon | 0.12.0 |
| typhoeus | 1.4.0 |
| cocoapods-core | 1.10.1 |
| cocoapods-deintegrate | 1.0.4 |
| cocoapods-downloader | 1.4.0 |
| cocoapods-plugins | 1.0.0 |
| cocoapods-search | 1.0.0 |
| cocoapods-trunk | 1.5.0 |
| cocoapods-try | 1.2.0 |
| colored2 | 3.1.2 |
| escape | 0.0.4 |
| fourflusher | 2.3.1 |
| gh_inspector | 1.1.3 |
| molinillo | 0.6.6 |
| ruby-macho | 1.4.0 |
| nanaimo | 0.3.0 |
| xcodeproj | 1.19.0 |
| cocoapods | 1.10.1 |
| coderay | 1.1.3 |
| colored | 1.2 |
| highline | 1.7.10 |
| commander | 4.4.6 |
| commander-fastlane | 4.4.6 |
| deep_merge | 1.2.1 |
| dry-core | 0.5.0 |
| dry-configurable | 0.12.1 |
| dry-container | 0.7.2 |
| dry-equalizer | 0.3.0 |
| dry-initializer | 3.0.4 |
| dry-logic | 1.1.0 |
| dry-inflector | 0.2.0 |
| dry-types | 1.5.1 |
| dry-schema | 1.6.1 |
| dry-validation | 1.6.0 |
| config | 3.0.0 |
| declarative | 0.0.20 |
| digest-crc | 0.6.3 |
| unf_ext | 0.0.7.7 |
| unf | 0.1.4 |
| domain_name | 0.5.20190701 |
| dotenv | 2.7.6 |
| emoji_regex | 3.2.2 |
| excon | 0.79.0 |
| faraday-net_http | 1.0.1 |
| multipart-post | 2.0.0 |
| ruby2_keywords | 0.0.4 |
| faraday | 1.3.0 |
| http-cookie | 1.0.3 |
| faraday-cookie_jar | 0.0.7 |
| faraday_middleware | 1.0.0 |
| fastimage | 2.2.3 |
| jwt | 2.2.2 |
| memoist | 0.16.2 |
| multi_json | 1.15.0 |
| os | 1.1.1 |
| signet | 0.15.0 |
| googleauth | 0.16.1 |
| mini_mime | 1.1.0 |
| trailblazer-option | 0.1.0 |
| uber | 0.1.0 |
| representable | 3.1.0 |
| retriable | 3.1.2 |
| google-api-client | 0.38.0 |
| rexml | 3.2.4 |
| webrick | 1.7.0 |
| google-apis-core | 0.3.0 |
| google-apis-iamcredentials_v1 | 0.3.0 |
| google-apis-storage_v1 | 0.3.0 |
| google-cloud-env | 1.5.0 |
| google-cloud-errors | 1.1.0 |
| google-cloud-core | 1.6.0 |
| google-cloud-storage | 1.31.0 |
| mini_magick | 4.11.0 |
| naturally | 2.2.1 |
| plist | 3.6.0 |
| rubyzip | 2.3.0 |
| security | 0.1.3 |
| simctl | 1.6.8 |
| slack-notifier | 2.3.2 |
| terminal-notifier | 2.0.0 |
| unicode-display_width | 1.7.0 |
| terminal-table | 1.8.0 |
| tty-screen | 0.8.1 |
| tty-cursor | 0.7.1 |
| tty-spinner | 0.9.3 |
| word_wrap | 1.0.0 |
| rouge | 2.0.7 |
| xcpretty | 0.3.0 |
| xcpretty-travis-formatter | 1.0.1 |
| fastlane-plugin-cryptex | 0.1.6 |
| multi_xml | 0.6.0 |
| httparty | 0.14.0 |
| lastpass | 1.7.0 |
| method_source | 1.0.0 |
| parallel | 1.20.1 |
| parser | 3.0.0.0 |
| tty-color | 0.6.0 |
| pastel | 0.8.0 |
| pry | 0.14.0 |
| rainbow | 3.0.0 |
| regexp_parser | 2.1.1 |
| rodash | 3.0.0 |
| rubocop-ast | 1.4.1 |
| ruby-progressbar | 1.11.0 |
| rubocop | 1.11.0 |
| semantic | 1.6.1 |
| wisper | 2.0.1 |
| tty-reader | 0.9.0 |
| tty-prompt | 0.23.0 |
</details>
generated on: 2021-04-13 </details>
closed time in 2 minutes
airtonixissue commentfastlane/fastlane
create_keychain unlock: true doesn't actually unlock the keychain.
This issue will be auto-closed because there hasn't been any activity for a few months. Feel free to open a new one if you still experience this problem :+1:
comment created time in 2 minutes
issue closedfastlane/fastlane
upload_to_play_store_internal_app_sharing auto upload redundant apks
<!-- Thanks for helping fastlane! Before you submit your issue, please make sure you followed our checklist and check the appropriate boxes by putting an x in the [ ]: [x] -->
New Issue Checklist
- [x] Updated fastlane to the latest version
- [x] I read the Contribution Guidelines
- [x] I read docs.fastlane.tools
- [x] I searched for existing GitHub issues
Issue Description
As you can see in the fastfile, I just build an aab file and want to upload it to GG Internal app sharing, but action upload_to_play_store_internal_app_sharing auto fill all apk path and cause the error that the package name mismatch. After I take a look on the source code of upload_to_play_store_internal_app_sharing https://github.com/fastlane/fastlane/blob/master/fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb, it put all apks from fastlane context (attached below)
# If no APK params were provided, try to fill in the values from lane context, preferring
# the multiple APKs over the single APK if set.
if params[:apk_paths].nil? && params[:apk].nil?
all_apk_paths = Actions.lane_context[SharedValues::GRADLE_ALL_APK_OUTPUT_PATHS] || []
if all_apk_paths.size > 1
params[:apk_paths] = all_apk_paths
else
params[:apk] = Actions.lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH]
end
end
The workaround for me is just delete the android/app/builds folder before release a new build, but it's not a long term solution since I want to store the history of releases.
Command executed
fastlane qa_store
Environment
<details><summary>🚫 fastlane environment 🚫</summary>
Stack
| Key | Value |
|---|---|
| OS | 10.15.4 |
| Ruby | 2.6.3 |
| Bundler? | false |
| Git | git version 2.24.3 (Apple Git-128) |
| Installation Source | /usr/local/bin/fastlane |
| Host | Mac OS X 10.15.4 (19E2269) |
| Ruby Lib Dir | /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib |
| OpenSSL Version | LibreSSL 2.8.3 |
| Is contained | false |
| Is homebrew | false |
| Is installed via Fabric.app | false |
| Xcode Path | /Applications/Xcode.app/Contents/Developer/ |
| Xcode Version | 11.5 |
System Locale
| Error |
|---|
| No Locale with UTF8 found 🚫 |
fastlane files:
<details><summary>./fastlane/Fastfile</summary>
default_platform(:android)
platform :android do
desc "Submit a new Internal Build to Google PlayStore"
lane :qa_store do
gradle(task: "bundleQaRelease")
version = get_version_name(
gradle_file_path:"app/build.gradle",
ext_constant_name:"versionName"
)
build_number = get_version_name(
gradle_file_path:"app/build.gradle",
ext_constant_name:"versionCode"
)
fileName = "qa-v#{build_number}.aab"
sh("pwd")
destination = "../app/build/outputs/bundle/qaRelease/#{fileName}"
sh("mv", "../app/build/outputs/bundle/qaRelease/app-qa-release.aab", destination)
path = upload_to_play_store_internal_app_sharing(
package_name: '*******',
json_key: 'secret.json',
aab: "./app/build/outputs/bundle/qaRelease/#{fileName}",
)
slack(
message: "Successfully upload a new build to Google Play Store",
slack_url: '***,
payload: {
"Version" => "#{version}(#{build_number})",
"Commit" => "#{last_git_commit()[:abbreviated_commit_hash]}",
"Url" => path,
},
default_payloads: [],
)
end
end
</details>
No Appfile found
fastlane gems
| Gem | Version | Update-Status |
|---|---|---|
| fastlane | 2.179.0 | 🚫 Update available |
Loaded fastlane plugins:
| Plugin | Version | Update-Status |
|---|---|---|
| fastlane-plugin-get_version_name | 0.2.2 | ✅ Up-To-Date |
<details><summary><b>Loaded gems</b></summary>
| Gem | Version |
|---|---|
| did_you_mean | 1.3.0 |
| slack-notifier | 2.3.2 |
| rouge | 2.0.7 |
| xcpretty | 0.3.0 |
| terminal-notifier | 2.0.0 |
| unicode-display_width | 1.7.0 |
| terminal-table | 1.8.0 |
| addressable | 2.7.0 |
| multipart-post | 2.0.0 |
| word_wrap | 1.0.0 |
| tty-screen | 0.8.1 |
| tty-cursor | 0.7.1 |
| tty-spinner | 0.9.3 |
| artifactory | 3.0.15 |
| colored | 1.2 |
| highline | 1.7.10 |
| commander-fastlane | 4.4.6 |
| faraday_middleware | 1.0.0 |
| gh_inspector | 1.1.3 |
| rubyzip | 2.3.0 |
| security | 0.1.3 |
| dotenv | 2.7.6 |
| bundler | 1.17.2 |
| simctl | 1.6.8 |
| uber | 0.1.0 |
| declarative | 0.0.20 |
| declarative-option | 0.1.0 |
| representable | 3.0.4 |
| retriable | 3.1.2 |
| mini_mime | 1.0.2 |
| httpclient | 2.8.3 |
| google-api-client | 0.38.0 |
| nanaimo | 0.3.0 |
| colored2 | 3.1.2 |
| claide | 1.0.3 |
| CFPropertyList | 3.0.3 |
| atomos | 0.1.3 |
| xcodeproj | 1.19.0 |
| plist | 3.6.0 |
| public_suffix | 4.0.6 |
| babosa | 1.0.4 |
| excon | 0.79.0 |
| unf_ext | 0.0.7.7 |
| unf | 0.1.4 |
| domain_name | 0.5.20190701 |
| http-cookie | 1.0.3 |
| ruby2_keywords | 0.0.4 |
| faraday-net_http | 1.0.1 |
| faraday | 1.3.0 |
| faraday-cookie_jar | 0.0.7 |
| fastimage | 2.2.2 |
| json | 2.5.1 |
| mini_magick | 4.11.0 |
| naturally | 2.2.1 |
| xcpretty-travis-formatter | 1.0.1 |
| jwt | 2.2.2 |
| multi_json | 1.15.0 |
| signet | 0.14.1 |
| os | 1.1.1 |
| memoist | 0.16.2 |
| googleauth | 0.15.1 |
| rake | 13.0.3 |
| digest-crc | 0.6.3 |
| webrick | 1.7.0 |
| rexml | 3.2.4 |
| google-apis-core | 0.2.1 |
| google-apis-storage_v1 | 0.2.0 |
| google-apis-iamcredentials_v1 | 0.1.0 |
| google-cloud-errors | 1.0.1 |
| google-cloud-env | 1.4.0 |
| google-cloud-core | 1.5.0 |
| google-cloud-storage | 1.30.0 |
| emoji_regex | 3.2.2 |
| aws-eventstream | 1.1.0 |
| aws-sigv4 | 1.2.2 |
| aws-partitions | 1.428.0 |
| jmespath | 1.4.0 |
| aws-sdk-core | 3.112.0 |
| aws-sdk-kms | 1.42.0 |
| aws-sdk-s3 | 1.88.1 |
| forwardable | 1.2.0 |
| logger | 1.3.0 |
| date | 2.0.0 |
| stringio | 0.0.2 |
| zlib | 1.0.0 |
| ipaddr | 1.2.2 |
| openssl | 2.1.2 |
| ostruct | 0.1.0 |
| strscan | 1.0.0 |
| fileutils | 1.1.0 |
| etc | 1.0.1 |
| io-console | 0.4.7 |
| libxml-ruby | 3.1.0 |
| psych | 3.1.0 |
| mutex_m | 0.1.0 |
| fastlane-plugin-get_version_name | 0.2.2 |
</details>
generated on: 2021-04-15 </details>
closed time in 2 minutes
maphongba008issue commentfastlane/fastlane
upload_to_play_store_internal_app_sharing auto upload redundant apks
This issue will be auto-closed because there hasn't been any activity for a few months. Feel free to open a new one if you still experience this problem :+1:
comment created time in 2 minutes
issue commentfastlane/fastlane
fastlane deliver init fails with undefined method `get_app_info_localizations' for nil:NilClass
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates.
Please make sure to update to the latest fastlane version and check if that solves the issue. Let us know if that works for you by adding a comment :+1:
Friendly reminder: contributions are always welcome! Check out CONTRIBUTING.md for more information on how to help with fastlane and feel free to tackle this issue yourself :muscle:
This issue will be auto-closed if there is no reply within 1 month.
comment created time in 3 minutes
issue closedfastlane/fastlane
New Issue Checklist
- [x] Updated fastlane to the latest version
- [x] I read the Contribution Guidelines
- [x] I read docs.fastlane.tools
- [x] I searched for existing GitHub issues
Issue Description
Running upload_symbols_to_crashlytics fails with Shell command exited with exit status instead of 0..
We have four targets, and this command only fails against one of them. I've downloaded the latest GoogleService-Info.plist file and spent a couple of hours searching through the Fastlane GitHub issues and Stack Overflow. Others have experienced this same issue in the past, but none of the possible solutions laid out have resolved my issue.
Command executed
bundle exec fastlane debug_upload_symbols --verbose
Complete output when running fastlane, including the stack trace and command used
<details> <pre> ➜ xxxxx-ios git:(dev) ✗ bundle exec fastlane debug_upload_symbols --verbose [✔] 🚀 DEBUG [2021-04-17 12:04:08.67]: Checking if there are any plugins that should be loaded... INFO [2021-04-17 12:04:09.67]: ----------------------------- INFO [2021-04-17 12:04:09.67]: --- Step: update_fastlane --- INFO [2021-04-17 12:04:09.67]: ----------------------------- INFO [2021-04-17 12:04:09.67]: Looking for updates for fastlane... INFO [2021-04-17 12:04:11.68]: Nothing to update ✅ INFO [2021-04-17 12:04:11.68]: ------------------------------ INFO [2021-04-17 12:04:11.68]: --- Step: default_platform --- INFO [2021-04-17 12:04:11.68]: ------------------------------ INFO [2021-04-17 12:04:11.68]: Driving the lane 'ios debug_upload_symbols' 🚀 INFO [2021-04-17 12:04:12.05]: ------------------------------------------- INFO [2021-04-17 12:04:12.05]: --- Step: upload_symbols_to_crashlytics --- INFO [2021-04-17 12:04:12.05]: ------------------------------------------- INFO [2021-04-17 12:04:12.05]: Uploading '/xxxxx/xxxxx.app.dSYM.zip'... DEBUG [2021-04-17 12:04:12.05]: upload_dsym using command: /xxxxx/Pods/FirebaseCrashlytics/upload-symbols -gsp /xxxxx/GoogleService-Info.plist -p ios /xxxxx/xxxxx.app.dSYM.zip ERROR [2021-04-17 12:07:10.14]: Shell command exited with exit status instead of 0. INFO [2021-04-17 12:07:10.14]: Successfully uploaded dSYM files to Crashlytics 💯 INFO [2021-04-17 12:07:10.14]: Successfully generated documentation at path '/xxxxx/fastlane/README.md'
+------+-------------------------------+-------------+ | fastlane summary | +------+-------------------------------+-------------+ | Step | Action | Time (in s) | +------+-------------------------------+-------------+ | 1 | update_fastlane | 2 | | 2 | default_platform | 0 | | 3 | upload_symbols_to_crashlytics | 178 | +------+-------------------------------+-------------+
INFO [2021-04-17 12:07:10.15]: fastlane.tools finished successfully 🎉 </pre> </details>
Environment
<!--
Please run fastlane env and copy the output below. This will help us help you.
If you used the --capture_output option, please remove this block as it is already included there.
-->
<details> <pre> <details><summary>✅ fastlane environment ✅</summary>
Stack
| Key | Value |
|---|---|
| OS | 11.2.3 |
| Ruby | 2.6.0 |
| Bundler? | false |
| Git | git version 2.24.1 |
| Installation Source | ~/.rbenv/versions/2.6.0/bin/fastlane |
| Host | macOS 11.2.3 (20D91) |
| Ruby Lib Dir | ~/.rbenv/versions/2.6.0/lib |
| OpenSSL Version | OpenSSL 1.1.1d 10 Sep 2019 |
| Is contained | false |
| Is homebrew | false |
| Is installed via Fabric.app | false |
| Xcode Path | /Applications/Xcode.app/Contents/Developer/ |
| Xcode Version | 12.4 |
System Locale
| Variable | Value | |
|---|---|---|
| LANG | en_US.UTF-8 | ✅ |
| LC_ALL | ||
| LANGUAGE |
fastlane files:
<details><summary>./fastlane/Fastfile</summary>
update_fastlane
default_platform :ios
platform :ios do
lane :debug_upload_symbols do |options|
upload_symbols_to_crashlytics(
# api_token: "xxxxx",
dsym_path: "./xxxxx.app.dSYM.zip",
# dsym_worker_threads: 2,
gsp_path: "./xxxxx/GoogleService-Info.plist"
)
end
end
</details>
No Appfile found
fastlane gems
| Gem | Version | Update-Status |
|---|---|---|
| fastlane | 2.180.1 | ✅ Up-To-Date |
Loaded fastlane plugins:
No plugins Loaded
<details><summary><b>Loaded gems</b></summary>
| Gem | Version |
|---|---|
| did_you_mean | 1.3.0 |
| slack-notifier | 2.3.2 |
| rouge | 2.0.7 |
| xcpretty | 0.3.0 |
| terminal-notifier | 2.0.0 |
| terminal-table | 1.8.0 |
| addressable | 2.7.0 |
| multipart-post | 2.0.0 |
| word_wrap | 1.0.0 |
| artifactory | 3.0.15 |
| colored | 1.2 |
| highline | 1.7.10 |
| commander-fastlane | 4.4.6 |
| faraday_middleware | 1.0.0 |
| gh_inspector | 1.1.3 |
| rubyzip | 2.3.0 |
| security | 0.1.3 |
| retriable | 3.1.2 |
| httpclient | 2.8.3 |
| google-api-client | 0.38.0 |
| nanaimo | 0.3.0 |
| colored2 | 3.1.2 |
| claide | 1.0.3 |
| CFPropertyList | 3.0.3 |
| atomos | 0.1.3 |
| xcodeproj | 1.19.0 |
| unicode-display_width | 1.7.0 |
| plist | 3.6.0 |
| public_suffix | 4.0.6 |
| tty-screen | 0.8.1 |
| tty-cursor | 0.7.1 |
| tty-spinner | 0.9.3 |
| babosa | 1.0.4 |
| excon | 0.80.1 |
| unf_ext | 0.0.7.7 |
| unf | 0.1.4 |
| domain_name | 0.5.20190701 |
| http-cookie | 1.0.3 |
| ruby2_keywords | 0.0.4 |
| connection_pool | 2.2.5 |
| net-http-persistent | 4.0.1 |
| faraday-net_http_persistent | 1.0.3 |
| faraday-net_http | 1.0.1 |
| faraday-excon | 1.0.0 |
| faraday | 1.4.0 |
| faraday-cookie_jar | 0.0.7 |
| fastimage | 2.2.3 |
| json | 2.5.1 |
| mini_magick | 4.11.0 |
| naturally | 2.2.1 |
| xcpretty-travis-formatter | 1.0.1 |
| dotenv | 2.7.6 |
| bundler | 2.1.4 |
| simctl | 1.6.8 |
| jwt | 2.2.2 |
| trailblazer-option | 0.1.1 |
| declarative | 0.0.20 |
| uber | 0.1.0 |
| representable | 3.1.1 |
| mini_mime | 1.1.0 |
| multi_json | 1.15.0 |
| signet | 0.15.0 |
| os | 1.1.1 |
| memoist | 0.16.2 |
| googleauth | 0.16.1 |
| rake | 13.0.3 |
| digest-crc | 0.6.3 |
| webrick | 1.7.0 |
| rexml | 3.2.5 |
| google-apis-core | 0.3.0 |
| google-apis-storage_v1 | 0.3.0 |
| google-apis-iamcredentials_v1 | 0.3.0 |
| google-cloud-errors | 1.1.0 |
| google-cloud-env | 1.5.0 |
| google-cloud-core | 1.6.0 |
| google-cloud-storage | 1.31.0 |
| emoji_regex | 3.2.2 |
| aws-eventstream | 1.1.1 |
| aws-sigv4 | 1.2.3 |
| aws-partitions | 1.445.0 |
| jmespath | 1.4.0 |
| aws-sdk-core | 3.114.0 |
| aws-sdk-kms | 1.43.0 |
| aws-sdk-s3 | 1.93.1 |
| forwardable | 1.2.0 |
| logger | 1.3.0 |
| date | 1.0.0 |
| ipaddr | 1.2.2 |
| openssl | 2.1.2 |
| ostruct | 0.1.0 |
| fileutils | 1.1.0 |
| psych | 3.1.0 |
| mutex_m | 0.1.0 |
</details>
generated on: 2021-04-17 </details> </pre> </details>
closed time in 3 minutes
nateirwinissue commentfastlane/fastlane
This issue will be auto-closed because there hasn't been any activity for a few months. Feel free to open a new one if you still experience this problem :+1:
comment created time in 3 minutes
issue commentfastlane/fastlane
Deliver doesn't upload ios metadata to the Apple Store
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates.
Please make sure to update to the latest fastlane version and check if that solves the issue. Let us know if that works for you by adding a comment :+1:
Friendly reminder: contributions are always welcome! Check out CONTRIBUTING.md for more information on how to help with fastlane and feel free to tackle this issue yourself :muscle:
This issue will be auto-closed if there is no reply within 1 month.
comment created time in 3 minutes
Pull request review commentapollographql/apollo-client
Log non-fatal error when fields are missing from written results
describe('useQuery Hook', () => { let renderCount = 0; const Component = () => { const [mutate, { loading: mutationLoading }] = useMutation(mutation, {- optimisticResponse: carData,+ optimisticResponse: {+ addCar: carData,+ },
One of the most common mistakes surfaced by these errors is providing only the mutation field's value (carData), rather than the field itself ({ addCar: carData }), when providing an optimisticResponse.
comment created time in 14 minutes
issue commentreact-native-community/releases
Upcoming v0.64.3 cherrypicks discussion
@Attimo91 JCenter is actually not that important right now:
https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
UPDATE 4/27/2021: We listened to the community and will keep JCenter as a read-only repository indefinitely. Our customers and the community can continue to rely on JCenter as a reliable mirror for Java packages.
...slowly exhale on that one. It should be removed, but zero need for cherry-picking anywhere I think.
comment created time in 30 minutes
issue openedfacebook/react-native
how can i build a Simulator build for iOS ?
Description
i want to build a simulator build for sending to facebook review, but whatever i did , did not do the trick , how should i build a simulator build which will work ?
React Native version:
OS: macOS 11.4 CPU: (8) x64 Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz Memory: 707.47 MB / 16.00 GB Shell: 3.2.57 - /bin/bash Binaries: Node: 16.3.0 - /usr/local/bin/node Yarn: 1.22.10 - /usr/local/bin/yarn npm: 7.15.1 - /usr/local/bin/npm Watchman: 2021.06.07.00 - /usr/local/bin/watchman Managers: CocoaPods: 1.10.1 - /usr/local/bin/pod SDKs: iOS SDK: Platforms: iOS 14.5, DriverKit 20.4, macOS 11.3, tvOS 14.5, watchOS 7.4 Android SDK: API Levels: 23, 25, 26, 27, 28, 29, 30 Build Tools: 28.0.3, 29.0.2, 29.0.3, 30.0.2, 31.0.0 System Images: android-27 | Google APIs Intel x86 Atom, android-28 | Intel x86 Atom, android-28 | Google APIs Intel x86 Atom_64, android-30 | Google APIs Intel x86 Atom, android-30 | Google Play Intel x86 Atom Android NDK: 23.0.7272597-beta3 IDEs: Android Studio: 4.1 AI-201.8743.12.41.6953283 Xcode: 12.5/12E262 - /usr/bin/xcodebuild Languages: Java: 1.8.0_291 - /usr/bin/javac npmPackages:
Steps To Reproduce
Provide a detailed list of steps that reproduce the issue.
- go to schema and edit it to release then build
- go to the build folder and try run it through ios-sim launch /path/to/app.app
Expected Results
run smoothly on emulator
Description:
i tried to convert the plist to binary and still i got the same problem and app stopped on launch and got the same error:
An error was encountered processing the command (domain=FBSOpenApplicationServiceErrorDomain, code=1):
The request to open "app.app.co" failed.
The request was denied by service delegate (SBMainWorkspace) for reason: Unspecified ("null").
Underlying error (domain=FBSOpenApplicationErrorDomain, code=1):
The operation couldn’t be completed. (null)
(null)
app.app.co: -1
/usr/local/Cellar/ios-sim/9.0.0/libexec/lib/node_modules/ios-sim/node_modules/bplist-parser/bplistParser.js:55
throw new Error("Invalid binary plist. Expected 'bplist' at offset 0.");
^
Error: Invalid binary plist. Expected 'bplist' at offset 0.
at exports.parseBuffer (/usr/local/Cellar/ios-sim/9.0.0/libexec/lib/node_modules/ios-sim/node_modules/bplist-parser/bplistParser.js:55:11)
at tryParseBuffer (/usr/local/Cellar/ios-sim/9.0.0/libexec/lib/node_modules/ios-sim/node_modules/bplist-parser/bplistParser.js:28:18)
at /usr/local/Cellar/ios-sim/9.0.0/libexec/lib/node_modules/ios-sim/node_modules/bplist-parser/bplistParser.js:46:7
created time in 36 minutes
PR opened facebook/react-native
Few issues I saw when profiling RNTester:
- Repeatedly calling
-lowercaseStringduringweightOfFontcauses a TON of extra memory traffic, for no reason. NSCacheis thread-safe, so no need for a mutex.- Using
stringWithFormat:for the cache key is slow. UseNSValueto store the data directly instead.
From scrolling around on the TextView tester, before the change:

pr created time in an hour
push eventapollographql/apollo-client
commit sha 8c836176924ef5a1b55f39571c1d82cffdec7d6c
Mention PR #8416 in CHANGELOG.md.
push time in an hour
Pull request review commentfastlane/fastlane
[regression][create-keychain] allow `timeout: false` to specify "no time-out"
def self.available_options type: Boolean, default_value: false), FastlaneCore::ConfigItem.new(key: :timeout,- description: 'timeout interval in seconds',- type: Integer,+ description: 'timeout interval in seconds. Set `false` if you want to specify "no time-out"',+ skip_type_validation: true, # allow integers & Bool->`false` for "no timeout"
Thank you for your review! It will allow and it will not crash, please see this https://github.com/fastlane/fastlane/blob/master/fastlane/lib/fastlane/actions/create_keychain.rb#L50
timeout: "5000"&timeout: 5000both are equalivent and valid without any crash!timeout: falsethen it will ignore-tparam
comment created time in an hour
PR opened apollographql/apollo-client
Fixes #8331 and #6915 by relaxing an overzealous exception to be merely an invariant.error message, which should also help with the underlying cause of https://github.com/apollographql/apollo-client/issues/7436#issuecomment-860631219.
Although this change is likely to trigger a number of new missing field error messages for existing applications, these errors are almost always worth investigating, because they can hide gaps in the incoming data that manifest themselves as missing fields later, when the original cause of the error is much less obvious.
Because this error was an exception before, we had to be very careful about when we threw it, since it would abort the entire write. Unfortunately, this carefulness led to some dodgy decisions about when to hide exceptions that really should have been surfaced (see #8331 for one example, where merely using possibleTypes would enable the exception). Now that we're just logging an error message using invariant.log, those messages can be a little noisier without disrupting the overall work of the client/cache.
I hope developers find these error messages useful, though of course we can continue to refine the preconditions/frequency of the messages, and/or ways to capture/redirect errors for certain writes, where the errors are (hypothetically) known to be harmless, or need to be programmatically processed in some way.
pr created time in an hour
create barnchapollographql/apollo-client
branch : relax-writeToStore-missing-field-exception
created branch time in 2 hours
pull request commentapollographql/apollo-client
Do not forceUpdate if comsuming component is not mounted
I’m taking a look. The test suite is finicky. Thanks for the help!
comment created time in 2 hours
Pull request review commentfastlane/fastlane
[regression][create-keychain] allow `timeout: false` to specify "no time-out"
def self.available_options type: Boolean, default_value: false), FastlaneCore::ConfigItem.new(key: :timeout,- description: 'timeout interval in seconds',- type: Integer,+ description: 'timeout interval in seconds. Set `false` if you want to specify "no time-out"',+ skip_type_validation: true, # allow integers & Bool->`false` for "no timeout"
Would it allow String values that are converted into int values or it will crash unexpectedly?
comment created time in 2 hours
issue commentsoftware-mansion/react-native-reanimated
has anyone resolved this ??
I am getting this issue also
comment created time in 2 hours
push eventfacebook/react-native
commit sha fc9c326912d9b76f3db9390aaffbf4b1570c73a8
Use Animated.event implementation in AnimatedMock Summary: Changelog: [Internal] - Animated.event from my limited understanding attaches Animated.Values to native views. In terms of animation, Animated.Values are already handled by AnimatedMock to skip interpolation. Reviewed By: GijsWeterings Differential Revision: D29241590 fbshipit-source-id: 98650883dad53d6f77dbc398ba0cac903194deca
push time in 2 hours
Pull request review commentfastlane/fastlane
[screengrab] general improvements, removed deprecated and un-needed code
afterEvaluate { /* * Requires the following settings in ~/.gradle/gradle.properties+ * signing.enabled=true * signing.keyId=516466E9 # last 8 digits of signing key (can get with `gpg -K`) * signing.password= * signing.secretKeyRingFile=/Users/josh/.gnupg/secring.gpg # export with `gpg --keyring secring.gpg --export-secret-keys > ~/.gnupg/secring.gpg` */-signing {- sign publishing.publications+if (new Boolean(project.findProperty('signing.enabled'))) {+ signing {+ sign publishing.publications+ }
@penn5 This signing was added for the release process of the library to maven central. This doesn't effect anything with the users using this library, right? This will only get used when I'm building/releasing a new version of the lib? 😇
comment created time in 3 hours
issue commentfastlane/fastlane
Undisclosed breaking change in create_keychain in minor version 2.185.1
It happens. There are 2 ways of dealing with it for now:
- you could temporarily use an older version of Fastlane before a fix is released
- use a workaround described in comments of https://github.com/fastlane/fastlane/issues/18892 (It has a linked PR that is pending review with a fix for
create_keychain)
And please remember it's an open source project, people are improving the tool in their free time.
comment created time in 3 hours
issue commentfastlane/fastlane
fastlane init fails, missing company name, creating first app in app store connect
I've opened PRs to add this information in getting-started docs: https://github.com/fastlane/docs/pull/1066 and create_app_online action docs: https://github.com/fastlane/fastlane/pull/18934
comment created time in 3 hours
issue commentfacebook/react-native
[Android] Scroll appears in TextInput with custom fonts and multiline=true
I'm still facing the same problem( I'm using a custom font ). the issue happening when the text input has font size style when I removed the font size the scroll disappeared so I think the problem is related to the text input height which affected by the font size. I hope you can fix this issue soon.
comment created time in 3 hours
issue commentfastlane/fastlane
Fastlane install failing when using Xcode 13.0 beta 1
@crazymanish thanks for taking the time to walk me through that!
comment created time in 3 hours
issue openedapollographql/apollo-client
useQuery with 'cache-first' doesn't re-render when cache changes
Intended outcome: Component should be re-rendered when cache changes.
Actual outcome: Component is not re-rendered when cache changes.
How to reproduce the issue:
- has custom key for some entities (in my case it is "name" for ProductItem type) [not sure this is needed]
- use useQuery with fetchPolicy: 'cache-first'
- get some item updated with mutation (in my case updated ProductItem is returned) [not sure this is needed]
- additionally call query that returns udpated entities (in my case getUserProducts that returns [ProductItem!]!)
- component that uses useQuery is not re-rendered until you set 'cache-and-network'
Versions System: OS: macOS 11.4 Binaries: Node: 14.17.0 - /usr/local/bin/node Yarn: 1.19.1 - ~/.yarn/bin/yarn npm: 6.14.13 - /usr/local/bin/npm Browsers: Chrome: 91.0.4472.114 Firefox: 72.0.2 Safari: 14.1.1 npmPackages: @apollo/client: ^3.3.6 => 3.3.20 apollo-upload-client: ^14.1.3 => 14.1.3 apollo3-cache-persist: ^0.9.1 => 0.9.1 npmGlobalPackages: apollo: 2.33.4
created time in 4 hours